/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #d4af37;
    --text-color: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --success-color: #38a169;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch Optimization */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .phone-button,
    .floating-btn,
    .back-to-top,
    .faq-question,
    .notice-item {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    }
    
    .btn:active,
    .phone-button:active,
    .floating-btn:active {
        transform: scale(0.95);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo .sub-title {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.phone-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background: #c19d2d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(44, 82, 130, 0.92) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 54, 93, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 20px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c19d2d;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-large {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 18px;
}

/* Section Common Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

/* Lawyer Profile Section */
.lawyer-profile {
    background: var(--bg-light);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.profile-content:last-child {
    margin-bottom: 0;
}

.profile-content.profile-secondary {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 3px solid var(--accent-color);
    position: relative;
}

.profile-content.profile-secondary::before {
    content: '⚖️';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-light);
    padding: 0 20px;
    font-size: 32px;
}

.profile-image-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-image {
    position: relative;
}

.profile-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
}

.profile-certificate {
    background: var(--white);
    padding: 15px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--accent-color);
}

.certificate-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.profile-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.profile-placeholder i {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.3);
}

.profile-info {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.profile-name {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.profile-title {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.profile-divider {
    height: 3px;
    width: 60px;
    background: var(--accent-color);
    margin-bottom: 25px;
}

.profile-credentials {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid var(--accent-color);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-color);
    font-weight: 500;
}

.credential-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.credential-item i {
    color: var(--accent-color);
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.credential-item span {
    flex: 1;
}

.profile-description {
    margin-bottom: 30px;
}

.profile-description p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

.profile-specialties h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.profile-specialties ul {
    list-style: none;
}

.profile-specialties li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    font-weight: 500;
}

.profile-specialties li i {
    color: var(--accent-color);
    font-size: 12px;
}

/* Success Cases - Premium Card Design */
.profile-success-cases {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 3px solid var(--accent-color);
    position: relative;
}

.profile-success-cases::before {
    content: '🏆';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 0 15px;
    font-size: 28px;
}

.profile-success-cases h4 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.profile-success-cases h4::before {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
}

.profile-success-cases h4::after {
    content: '';
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.success-cases-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.success-case-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.success-case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.success-case-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
    transform: translateY(-5px);
}

.case-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.case-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.case-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-color), #e8c45f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.case-content {
    flex: 1;
}

.case-content h5 {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-content h5::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.case-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    word-break: keep-all;
}

.case-result {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fef3e2, #fce8c5);
    border-radius: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
}

.case-result i {
    color: var(--accent-color);
    font-size: 16px;
}

/* Services Section */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
    font-size: 14px;
}

.service-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
}

/* Process Section */
.process {
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:not(:last-child):before {
    content: "";
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 40px);
    background: var(--border-color);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.step-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-color);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.reason-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 36px;
    color: var(--white);
}

.reason-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.reason-description {
    color: var(--text-color);
    line-height: 1.8;
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-color);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Map Section */
.map-container {
    margin: 50px 0 0 0;
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-title i {
    color: var(--accent-color);
    font-size: 28px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.map-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.map-info-item i {
    font-size: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.map-info-item span {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.map-info-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    min-height: 600px;
}

/* Google Form Container */
.google-form-container {
    width: 100%;
    min-height: 1200px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.google-form-container iframe {
    width: 100%;
    min-height: 1200px;
    border: none;
}

/* Form Guide */
.form-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.guide-item {
    background: linear-gradient(135deg, var(--primary-color), #2d4a7c);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.guide-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.guide-item i {
    color: var(--accent-color);
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 3px;
}

.guide-item p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.guide-item strong {
    color: var(--accent-color);
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group span {
    font-weight: 400;
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-address {
    font-weight: 500;
}

.footer-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
}

.footer-lawyer {
    font-weight: 500;
}

.footer-notice {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-notice p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.admin-link {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 16px;
    text-decoration: none;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.admin-link:hover {
    opacity: 0.7;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-form-btn {
    background: var(--primary-color);
}

.floating-form-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.floating-kakao-btn {
    background: #FEE500;
    color: #3C1E1E;
}

.floating-kakao-btn:hover {
    background: #FFEB00;
    transform: scale(1.1);
}

.floating-call-btn {
    background: var(--accent-color);
}

.floating-call-btn:hover {
    background: #c19d2d;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Statistics Section - Updated */
.statistics {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="rgba(255,255,255,0.03)" width="1200" height="600"/></svg>');
    opacity: 0.5;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.statistics .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.statistics .stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.statistics .stat-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.statistics .stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.statistics .stat-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.statistics .stat-unit {
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
}

.statistics .stat-period {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Testimonials Section - Updated */
/* Testimonials Section - Grid Layout */
.testimonials {
    background: var(--bg-light);
    padding: 80px 0;
    position: relative;
}

.testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials .testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.testimonials .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
}

.testimonials .testimonial-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 8px 24px rgba(26, 54, 93, 0.15);
    transform: translateY(-5px);
}

.testimonials .testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonials .testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonials .testimonial-stars i {
    color: var(--accent-color);
    font-size: 16px;
}

.testimonials .testimonial-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.testimonials .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 24px;
    flex: 1;
    word-break: keep-all;
}

.testimonials .testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.testimonials .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.testimonials .author-details {
    flex: 1;
}

.testimonials .author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.testimonials .author-info {
    font-size: 13px;
    color: var(--text-light);
}

/* Pricing Section - Image Style Design */
.pricing {
    background: var(--bg-light);
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 0;
    max-width: 1000px;
    margin: 0 auto 50px;
    border-radius: 0;
    overflow: hidden;
}

.pricing-card {
    background: var(--white);
    padding: 50px 40px;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:first-child {
    border-radius: 0;
}

.pricing-card:last-child {
    border-radius: 0;
}

.pricing-card:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: var(--white);
    transform: scale(1);
}

.pricing-card.featured:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(26, 54, 93, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), #e8c45f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.pricing-card.featured .pricing-icon {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.pricing-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-card.featured .pricing-title {
    color: var(--white);
}

.pricing-subtitle {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin: 30px 0;
}

.pricing-card.featured .pricing-divider {
    background: rgba(255, 255, 255, 0.3);
}

.pricing-amount {
    text-align: center;
    margin: 0;
}

.pricing-amount .price {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent-color);
    display: inline-block;
    line-height: 1;
}

.pricing-card.featured .pricing-amount .price {
    color: var(--white);
}

.pricing-amount .price-unit {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-left: 8px;
}

.pricing-card.featured .pricing-amount .price-unit {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.pricing-features li {
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-color);
    text-align: left;
}

.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-features i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

.pricing-notes {
    max-width: 900px;
    margin: 0 auto 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.pricing-note-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
    margin-bottom: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.pricing-note-item:last-child {
    margin-bottom: 0;
}

.pricing-note-item i {
    color: var(--accent-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.note-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.note-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cta-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.btn-large {
    font-size: 18px;
    padding: 18px 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

/* Notices Section */
.notices {
    background: var(--white);
}

.notices-list {
    display: grid;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.notices-loading,
.notices-empty,
.notices-error {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.notices-loading i,
.notices-empty i,
.notices-error i {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.notices-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.notice-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notice-item:hover {
    background: var(--white);
    border-left-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.notice-item.important {
    border-left-color: var(--accent-color);
    background: #fffbf0;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.notice-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.notice-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.notice-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.notice-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-meta i {
    color: var(--accent-color);
}

/* Notice Modal */
.notice-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.notice-modal.show {
    opacity: 1;
}

.notice-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.notice-modal-content {
    position: relative;
    background: var(--white);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notice-modal-header {
    padding: 30px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.notice-modal-header h2 {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 10px 0 0 0;
    padding-right: 40px;
}

.notice-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notice-modal-close:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.notice-modal-meta {
    padding: 20px 30px;
    background: var(--bg-light);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.notice-modal-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-modal-meta i {
    color: var(--accent-color);
}

.notice-modal-body {
    padding: 30px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 16px;
}

.notice-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid var(--border-color);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .profile-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .profile-content.profile-secondary {
        margin-top: 60px;
        padding-top: 60px;
    }

    .profile-content.profile-secondary::before {
        font-size: 28px;
        top: -22px;
    }

    .profile-image-section {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .testimonials .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 15px 0;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo h1 {
        font-size: 20px;
        text-align: center;
    }

    .logo .sub-title {
        text-align: center;
    }

    .phone-button {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 60px 0;
        background-attachment: scroll; /* Fixed background doesn't work well on mobile */
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.6;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .profile-name {
        font-size: 26px;
    }

    .profile-info {
        padding: 30px 20px;
    }

    .profile-certificate {
        padding: 12px;
    }

    .profile-credentials {
        padding: 15px;
    }

    .credential-item {
        padding: 8px 0;
        font-size: 15px;
    }

    .credential-item i {
        font-size: 16px;
        width: 20px;
    }

    .success-case-item {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .case-badge {
        align-self: flex-start;
    }

    .case-content h5 {
        font-size: 15px;
    }

    .case-content p {
        font-size: 13px;
    }

    /* Success Cases - Mobile */
    .profile-success-cases {
        padding-top: 30px;
        margin-top: 30px;
    }

    .profile-success-cases h4 {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .profile-success-cases h4::before,
    .profile-success-cases h4::after {
        width: 40px;
        height: 2px;
    }

    .success-cases-list {
        gap: 16px;
    }

    .success-case-item {
        padding: 20px;
        border-radius: 12px;
    }

    .success-case-item::before {
        width: 4px;
    }

    .case-header {
        flex-direction: row;
        padding-bottom: 12px;
    }

    .case-badge {
        padding: 6px 14px;
        font-size: 12px;
    }

    .case-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .case-content h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .case-content h5::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .case-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .case-result {
        padding: 6px 12px;
        font-size: 13px;
        margin-top: 10px;
    }

    .case-result i {
        font-size: 14px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 22px;
    }

    .service-description {
        font-size: 15px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .process-step:not(:last-child):before {
        left: 30px;
        top: 60px;
    }

    .step-content {
        padding: 20px 15px;
    }

    .step-title {
        font-size: 18px;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .faq-question h3 {
        font-size: 16px;
        line-height: 1.5;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    .notice-item {
        padding: 20px;
    }

    .notice-title {
        font-size: 16px;
        line-height: 1.5;
    }

    .notice-meta {
        gap: 15px;
        flex-wrap: wrap;
    }

    .notice-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .notice-modal-header {
        padding: 20px;
    }

    .notice-modal-header h2 {
        font-size: 20px;
        padding-right: 35px;
    }

    .notice-modal-body {
        padding: 20px;
        font-size: 15px;
    }

    .testimonials .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials .testimonial-card {
        padding: 24px 20px;
    }

    .testimonials .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonials .testimonial-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }

    .pricing-card {
        padding: 40px 30px;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }

    .pricing-card:last-child {
        border-bottom: none;
    }

    .pricing-card.featured {
        transform: scale(1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .pricing-card:hover {
        transform: scale(1.01);
    }

    .pricing-card.featured:hover {
        transform: scale(1.01);
    }

    .pricing-icon {
        width: 90px;
        height: 90px;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-subtitle {
        font-size: 14px;
    }

    .pricing-divider {
        margin: 25px 0;
    }

    .pricing-amount .price {
        font-size: 48px;
    }

    .pricing-amount .price-unit {
        font-size: 28px;
    }

    .pricing-features li {
        font-size: 15px;
        padding: 12px 0;
    }

    .pricing-notes {
        padding: 20px;
    }

    .pricing-note-item {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .pricing-cta {
        padding: 30px 20px;
    }

    .cta-text {
        font-size: 18px;
    }

    .btn-large {
        font-size: 16px;
        padding: 16px 32px;
        width: 100%;
        justify-content: center;
    }

    .contact-content {
        gap: 30px;
    }

    .map-container {
        padding: 30px 20px;
        margin: 40px 0 0 0;
        border-radius: 12px;
    }

    .map-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .map-wrapper {
        border-radius: 8px;
    }

    .map-wrapper iframe {
        height: 350px;
        border-radius: 8px;
    }

    .map-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .map-info-item {
        padding: 16px;
        flex-direction: row;
        align-items: flex-start;
    }

    .map-info-item i {
        font-size: 22px;
        margin-top: 2px;
    }

    .map-info-item span {
        font-size: 14px;
        line-height: 1.6;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
        min-height: 550px;
    }

    .google-form-container {
        min-height: 1000px;
        border-radius: 8px;
    }

    .google-form-container iframe {
        min-height: 1000px;
    }

    .form-guide {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .guide-item {
        padding: 20px;
        gap: 12px;
    }

    .guide-item i {
        font-size: 24px;
    }

    .guide-item p {
        font-size: 13px;
    }

    .info-card {
        padding: 25px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-info h3 {
        font-size: 20px;
    }

    .footer-phone {
        font-size: 18px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .back-to-top {
        bottom: 220px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-icon {
        font-size: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-unit {
        font-size: 20px;
    }

    .testimonials-slider {
        padding: 0 50px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo h1 {
        font-size: 18px;
        word-break: keep-all;
    }

    .logo .sub-title {
        font-size: 13px;
    }

    .phone-button {
        padding: 12px 20px;
        font-size: 16px;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.4;
        word-break: keep-all;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
    }

    .hero-feature {
        font-size: 14px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        line-height: 1.5;
        word-break: keep-all;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .profile-name {
        font-size: 24px;
    }

    .profile-title {
        font-size: 16px;
    }

    .profile-info {
        padding: 25px 15px;
    }

    .profile-description p {
        font-size: 15px;
    }

    .profile-credentials {
        padding: 15px 12px;
    }

    .credential-item {
        padding: 8px 0;
        font-size: 14px;
        gap: 10px;
    }

    .credential-item i {
        font-size: 15px;
        width: 18px;
    }

    /* Success Cases - Small Mobile */
    .profile-success-cases {
        padding-top: 25px;
        margin-top: 25px;
    }

    .profile-success-cases::before {
        font-size: 24px;
        top: -18px;
    }

    .profile-success-cases h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .profile-success-cases h4::before,
    .profile-success-cases h4::after {
        width: 30px;
    }

    .success-cases-list {
        gap: 14px;
    }

    .success-case-item {
        padding: 18px 15px;
        border-radius: 12px;
    }

    .case-header {
        gap: 10px;
        padding-bottom: 10px;
    }

    .case-badge {
        padding: 5px 12px;
        font-size: 11px;
    }

    .case-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .case-content h5 {
        font-size: 15px;
        margin-bottom: 8px;
        gap: 8px;
    }

    .case-content h5::before {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .case-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .case-result {
        padding: 6px 10px;
        font-size: 12px;
        margin-top: 8px;
    }

    .case-result i {
        font-size: 13px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .process-step {
        grid-template-columns: 50px 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .process-step:not(:last-child):before {
        left: 25px;
        top: 50px;
    }

    .step-content {
        padding: 15px;
    }

    .step-title {
        font-size: 17px;
    }

    .step-description {
        font-size: 14px;
    }

    .reason-icon {
        width: 70px;
        height: 70px;
    }

    .reason-icon i {
        font-size: 32px;
    }

    .reason-title {
        font-size: 18px;
    }

    .reason-description {
        font-size: 14px;
    }

    .faq-question {
        padding: 18px 15px;
    }

    .faq-question h3 {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 14px;
    }

    .notice-item {
        padding: 18px 15px;
    }

    .notice-item:hover {
        transform: none;
    }

    .notice-item:active {
        transform: scale(0.98);
    }

    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .notice-title {
        font-size: 15px;
        word-break: keep-all;
    }

    .notice-meta {
        gap: 12px;
        font-size: 13px;
    }

    .notice-modal-header {
        padding: 18px 15px;
    }

    .notice-modal-header h2 {
        font-size: 18px;
    }

    .notice-modal-meta {
        padding: 15px;
        font-size: 13px;
        gap: 15px;
    }

    .notice-modal-body {
        padding: 18px 15px;
        font-size: 14px;
    }

    .notice-modal-footer {
        padding: 15px;
    }

    .contact-form-wrapper {
        padding: 35px 20px;
        min-height: 500px;
    }

    .google-form-container {
        min-height: 900px;
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .google-form-container iframe {
        min-height: 900px;
    }

    .form-guide {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .guide-item {
        padding: 18px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .guide-item i {
        font-size: 32px;
        margin: 0 auto;
    }

    .guide-item p {
        font-size: 13px;
        line-height: 1.5;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }

    .info-card {
        padding: 20px 15px;
    }

    .info-card h3 {
        font-size: 16px;
    }

    .info-value {
        font-size: 18px;
    }

    .info-desc {
        font-size: 13px;
    }

    .map-container {
        padding: 25px 15px;
        margin: 30px 0 0 0;
        border-radius: 12px;
    }

    .map-title {
        font-size: 18px;
        margin-bottom: 18px;
        gap: 10px;
    }

    .map-title i {
        font-size: 24px;
    }

    .map-wrapper {
        border-radius: 8px;
        margin-bottom: 20px;
    }

    .map-wrapper iframe {
        height: 280px;
    }

    .map-info {
        gap: 12px;
    }

    .map-info-item {
        padding: 14px 12px;
    }

    .map-info-item i {
        font-size: 20px;
    }

    .map-info-item span {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Pricing Section - Mobile Image Style */
    .pricing {
        padding: 50px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 100%;
    }

    .pricing-card {
        padding: 40px 25px;
        border-right: none !important;
        border-bottom: 1px solid var(--border-color);
    }

    .pricing-card:last-child {
        border-bottom: none;
    }

    .pricing-card.featured {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .pricing-card:hover,
    .pricing-card.featured:hover {
        transform: scale(1);
    }

    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 6px 16px;
        font-size: 11px;
    }

    .pricing-icon {
        width: 85px;
        height: 85px;
        font-size: 40px;
        margin-bottom: 20px;
    }

    .pricing-title {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .pricing-subtitle {
        font-size: 14px;
        margin-bottom: 0;
    }

    .pricing-divider {
        margin: 25px 0;
    }

    .pricing-amount .price {
        font-size: 46px;
    }

    .pricing-amount .price-unit {
        font-size: 26px;
    }

    .pricing-features {
        margin: 0;
        padding: 0;
    }

    .pricing-features li {
        padding: 12px 0;
        font-size: 14px;
        gap: 10px;
    }

    .pricing-features i {
        font-size: 15px;
    }

    .pricing-notes {
        padding: 25px 20px;
        margin: 0 0 25px;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .pricing-note-item {
        padding: 15px;
        gap: 12px;
        background: var(--bg-light);
        border-radius: 12px;
        margin-bottom: 12px;
        border-left: 4px solid var(--accent-color);
    }

    .pricing-note-item:last-child {
        margin-bottom: 0;
    }

    .pricing-note-item i {
        font-size: 24px;
        color: var(--accent-color);
    }

    .note-content {
        font-size: 14px;
        line-height: 1.6;
    }

    .note-content strong {
        display: block;
        margin-bottom: 5px;
        font-size: 15px;
        color: var(--primary-color);
    }

    .pricing-cta {
        padding: 30px 20px;
        margin: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(26, 54, 93, 0.25);
    }

    .cta-text {
        font-size: 18px;
        margin-bottom: 20px;
        color: var(--white);
        font-weight: 700;
    }

    .pricing-cta .btn-large {
        background: var(--accent-color);
        color: var(--white);
        box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    }

    .pricing-cta .btn-large:active {
        transform: scale(0.98);
    }

    .footer {
        padding: 50px 0 25px;
    }

    .footer-info h3 {
        font-size: 18px;
    }

    .footer-info p {
        font-size: 14px;
    }

    .footer-phone {
        font-size: 17px;
    }

    .footer-notice p {
        font-size: 12px;
    }

    .footer-bottom p {
        font-size: 12px;
        padding-right: 30px;
    }

    .admin-link {
        font-size: 14px;
    }

    .floating-buttons {
        bottom: 15px;
        right: 12px;
        gap: 10px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .back-to-top {
        bottom: 200px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .statistics {
        padding: 60px 0;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 25px 15px;
    }

    .stat-icon {
        font-size: 36px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 15px;
    }

    .stat-unit {
        font-size: 18px;
    }

    .testimonials {
        padding: 50px 0;
    }

    .testimonials-slider {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 25px 15px;
    }

    .testimonial-stars i {
        font-size: 16px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .testimonial-author {
        padding-top: 15px;
    }

    .author-icon {
        font-size: 40px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-case {
        font-size: 13px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-dots {
        margin-top: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 24px;
    }
}