* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #1f2a44;
    background: linear-gradient(180deg,
        #f1f8ff 0%,
        rgba(241, 248, 255, 0.98) 22%,
        rgba(230, 247, 245, 0.92) 48%,
        rgba(241, 248, 255, 0.96) 75%,
        #f1f8ff 100%);
    line-height: 1.78;
    overflow-x: hidden;
}

.container {
    width: min(1000px, 95vw);
    margin: 0 auto;
}

.header {
    width: 100%;
    min-height: 84px;
    background: rgba(10, 42, 79, 0.94);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 34px;
    box-shadow: 0 20px 40px rgba(15, 47, 82, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    transition: all 0.3s ease;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    font-family: Georgia, serif;
    background: linear-gradient(135deg, #00dbc4 0%, #00bfa6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.badge {
    background: linear-gradient(135deg, #00bfa6 0%, #00dbc4 100%);
    color: white;
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 191, 166, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(0, 191, 166, 0.5); }
}

.nav {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-link {
    color: #dae9ff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #00bfa6, #00dbc4);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(0, 191, 166, 0.16);
    color: #00bfa6;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image-wrapper,
.hero-bg-img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(32%) saturate(1.2);
    animation: zoom-in-subtle 12s ease-in-out infinite;
}

@keyframes zoom-in-subtle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-overlay {
    background: linear-gradient(180deg,
        rgba(1, 180, 160, 0.4) 0%,
        rgba(7, 25, 92, 0.8) 30%,
        rgba(7, 25, 92, 0.6) 60%,
        rgba(7, 25, 92, 0.4) 80%,
        rgba(241, 248, 255, 0.2) 100%);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 48px 28px;
    color: #f8fbff;
    font-family: Georgia, serif;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(24px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    z-index: -1;
}

.hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    margin-bottom: 18px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.26);
    animation: slide-in-down 0.8s ease-out;
}

.hero p {
    font-size: clamp(1.05rem, 2vw, 1.6rem);
    margin-bottom: 30px;
    color: #eef7ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    animation: slide-in-up 0.8s ease-out 0.2s both;
}

@keyframes slide-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    padding: 12px 28px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #00bfa6 0%, #00dbc4 100%);
    color: #1f2a44;
    box-shadow: 0 8px 20px rgba(0, 191, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00dbc4 0%, #00f5d9 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 191, 166, 0.5);
}

.btn-primary:hover::before {
    animation: ripple 0.6s ease-out;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #f8fbff;
    border-color: rgba(248, 251, 255, 0.45);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 300px;
        height: 300px;
    }
}

.section {
    padding: 80px 0;
    animation: fade-in-up 0.8s ease-out;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about .container,
.services-list .container,
.testimonials .container,
.contact .container {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.about h2,
.services-list h2,
.testimonials h2,
.contact h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #0f2d64;
    background: linear-gradient(135deg, #0f2d64 0%, #00796b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    letter-spacing: -0.03em;
}

.about p,
.services-list p,
.testimonials p,
.contact p {
    color: #42506a;
    max-width: 820px;
    margin: 0 auto 38px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
    margin-top: 40px;
}

.stat {
    background: linear-gradient(135deg, #ffffff 0%, #f5feff 100%);
    border: 1px solid #dce6f1;
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(16, 48, 96, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00bfa6, #007285);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 122, 133, 0.2);
}

.stat:hover::before {
    transform: translateX(0);
}

.stat h3 {
    font-size: 2.4rem;
    background: linear-gradient(135deg, #007285 0%, #00bfa6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat p {
    color: #62738c;
    font-weight: 500;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.photo-gallery .gallery-copy {
    color: #42506a;
    max-width: 760px;
    margin-top: 8px;
    line-height: 1.8;
}

.photo-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 18px 0 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-left: -10px;
    padding-left: 10px;
}

.photo-scroller::-webkit-scrollbar {
    height: 10px;
}

.photo-scroller::-webkit-scrollbar-thumb {
    background: rgba(15, 45, 100, 0.25);
    border-radius: 999px;
}

.photo-card {
        flex: 0 0 min(64vw, 300px);
        scroll-snap-align: start;
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
        border: 1px solid #dce8f5;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 24px 60px rgba(16, 48, 96, 0.16);
    }

    .photo-card img {
        width: auto;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        object-fit: contain;
        image-rendering: auto;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
    }

    .photo-card {
        min-height: 240px;
    }

    .photo-card figcaption {
        padding: 16px 18px 20px;
        color: #0f2d64;
        font-weight: 600;
        background: #ffffff;
    }

    .photo-gallery-inner {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .scroller-btn {
        border: none;
        background: rgba(255, 255, 255, 0.95);
        color: #0f2d64;
        width: 54px;
        height: 54px;
        border-radius: 999px;
        box-shadow: 0 18px 32px rgba(16, 48, 96, 0.18);
        font-size: 1.5rem;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.photo-scroller-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 45, 100, 0.18);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.photo-scroller-dots button.active,
.photo-scroller-dots button:hover {
    background: #00bfa6;
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .photo-gallery-inner {
        gap: 8px;
    }

    .scroller-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 700px) {
    .photo-card {
        min-width: 260px;
    }
}

.service-card,
.service-detail,
.benefit {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dce8f5;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(16, 48, 96, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.service-detail::before,
.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before,
.service-detail:hover::before,
.benefit:hover::before {
    left: 100%;
}

.service-card h3,
.service-detail h2,
.benefit h3 {
    color: #0f2d64;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.service-card p,
.service-detail > p,
.benefit p {
    color: #556b88;
    position: relative;
    z-index: 1;
}

.service-card:hover,
.service-detail:hover,
.benefit:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 122, 133, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: #00bfa6;
}

.service-detail {
    border-left: 4px solid #00bfa6;
}

.service-icon {
    font-size: 44px;
    margin-bottom: 16px;
}

.detailed-services .service-detail ul,
.service-detail ul {
    list-style: none;
    margin-top: 16px;
    margin-bottom: 20px;
}

.detailed-services .service-detail li,
.service-detail li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #52657c;
}

.detailed-services .service-detail li:before,
.service-detail li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    color: #00bfa6;
    font-weight: 700;
}

.price {
    font-size: 1.4rem;
    color: #00796b;
    font-weight: 800;
}

.book-btn {
    margin-top: 14px;
    background-color: #00796b;
    color: white;
    border-radius: 999px;
    border: none;
    padding: 12px 28px;
}

.book-btn:hover {
    background-color: #009688;
    transform: translateY(-2px);
}

.testimonials-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonials blockquote {
    background: linear-gradient(135deg, #ffffff 0%, #f5feff 100%);
    border: 1px solid #dbeaf3;
    border-radius: 12px;
    padding: 28px;
    color: #31425c;
    box-shadow: 0 8px 24px rgba(16, 48, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    border-left: 4px solid #00bfa6;
}

.testimonials blockquote::before {
    content: '\201C';
    position: absolute;
    top: 10px;
    left: 18px;
    font-size: 2.4rem;
    color: #00bfa6;
    opacity: 0.3;
}

.testimonials blockquote:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 122, 133, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.testimonials cite {
    display: block;
    margin-top: 12px;
    color: #556b88;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: flex-start;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f7fcff 100%);
    border: 1px solid #d6e6f1;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 16px 38px rgba(16, 48, 96, 0.08);
}

.contact-card h3 {
    margin-bottom: 16px;
    color: #0f2d64;
}

.contact-card p {
    color: #42506a;
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-card .btn {
    width: 100%;
}

.contact-card .btn + .btn {
    margin-top: 14px;
}

.contact-info ul {
    list-style: none;
    margin-top: 24px;
    color: #2b3a53;
}

.contact-info li {
    margin-bottom: 14px;
    line-height: 1.75;
}

.contact-info strong {
    color: #007285;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #b6c8db;
    border-radius: 8px;
    color: #1a2a45;
    background: #ffffff;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(16, 48, 96, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00bfa6;
    background: #f8fbff;
    box-shadow: 0 0 0 3px rgba(0, 191, 166, 0.1), inset 0 0 0 1px rgba(0, 191, 166, 0.2);
    transform: translateY(-2px);
}

.contact-form label {
    font-weight: 600;
    color: #223553;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.contact-form input:focus ~ label,
.contact-form textarea:focus ~ label {
    color: #00bfa6;
}

.footer {
    background: linear-gradient(135deg, #0a1f3d 0%, #0d2f52 100%);
    color: #e2f6ff;
    padding: 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 191, 166, 0.3), transparent);
    pointer-events: none;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    width: min(1100px, 90vw);
    margin: 0 auto;
    flex-wrap: wrap;
}

.social-links a {
    color: #b3dcff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00bfa6, #00dbc4);
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.social-links a:hover::after {
    width: 100%;
}

@media (max-width: 900px) {
    .header {
        padding: 0 24px;
    }

    .nav {
        gap: 12px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content::before {
        inset: -20px;
        backdrop-filter: blur(20px);
    }

    .services-header div[style*="position: relative"] > div[style*="position: absolute"] {
        inset: -20px !important;
        backdrop-filter: blur(20px) !important;
    }

    .contact-container,
    .stats-grid,
    .service-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
    animation: slide-in-up 0.4s ease-out;
}

.form-message:not(:empty) {
    display: block;
}

.form-message[style*="color: rgb(0, 191, 166)"],
.form-message[style*="color: #00bfa6"] {
    background: linear-gradient(135deg, #e6f7f5 0%, #f0fffe 100%);
    border: 1.5px solid #00bfa6;
    color: #00796b !important;
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.15);
}

.form-message[style*="color: rgb(231, 76, 60)"],
.form-message[style*="color: #e74c3c"] {
    background: linear-gradient(135deg, #fadbd8 0%, #fef5f5 100%);
    border: 1.5px solid #e74c3c;
    color: #c0392b !important;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.15);
}

.contact-form button {
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: 0 4px 12px rgba(0, 191, 166, 0.2) !important;
}

.contact-form button:active:not(:disabled) {
    transform: translateY(-2px);
}

/* Services Page Specific Styles */
.services-header {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(241, 248, 255, 0.9) 0%,
        rgba(230, 247, 245, 0.7) 50%,
        rgba(241, 248, 255, 0.5) 100%);
}

.services-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(0, 191, 166, 0.06), transparent);
    pointer-events: none;
    z-index: 0;
}

.services-header-content {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    padding: 76px 24px;
    display: flex;
    justify-content: center;
}

.services-header-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px 34px;
    box-shadow: 0 18px 40px rgba(16, 48, 96, 0.12);
    text-align: center;
}

.services-header-card h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin-bottom: 18px;
    line-height: 1.05;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e6f7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.24);
}

.services-header-card p {
    color: #eef7ff;
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-header .hero-actions {
    justify-content: center;
}

.service-detail ul {
    margin-top: 20px;
}

.service-detail li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #52657c;
}

.service-detail li:before {
    content: '•';
    position: absolute;
    left: 0;
    top: 2px;
    color: #00bfa6;
    font-size: 1rem;
}

.service-detail .price {
    margin-top: 22px;
    font-size: 1.2rem;
    color: #00796b;
    font-weight: 700;
}

.why-choose-us .section-head {
    text-align: center;
    margin-bottom: 36px;
}

.why-choose-us .section-head p {
    color: #42506a;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-choose-us .benefit h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-choose-us .benefit p {
    color: #52657c;
    line-height: 1.7;
}

.detailed-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    padding: 60px 0;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: min(4%, 40px);
    padding-right: min(4%, 40px);
    animation: fade-in-up 0.8s ease-out;
}

.why-choose-us {
    padding: 80px 0;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: min(4%, 40px);
    padding-right: min(4%, 40px);
}

.why-choose-us h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    color: #0f2d64;
    background: linear-gradient(135deg, #0f2d64 0%, #00796b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.book-btn {
    background: linear-gradient(135deg, #00bfa6 0%, #00dbc4 100%);
    color: #1f2a44;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 191, 166, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.book-btn:hover {
    background: linear-gradient(135deg, #00dbc4 0%, #00f5d9 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 191, 166, 0.5);
}

.book-btn:active {
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .services-header {
        padding: 60px 20px;
    }

    .detailed-services {
        gap: 24px;
        padding: 40px 0;
    }

    .why-choose-us {
        padding: 60px 0;
    }
}

/* ===== FAQ Section ===== */
.faq {
    background: linear-gradient(180deg,
        rgba(241, 248, 255, 0.5) 0%,
        rgba(230, 247, 245, 0.6) 50%,
        rgba(241, 248, 255, 0.5) 100%);
}

.faq h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: #0f2d64;
    background: linear-gradient(135deg, #0f2d64 0%, #00796b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: Georgia, serif;
    letter-spacing: -0.03em;
}

.faq-intro {
    color: #42506a;
    max-width: 820px;
    margin: 0 auto 38px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f5feff 100%);
    border: 1px solid #dce6f1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(16, 48, 96, 0.08);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(16, 48, 96, 0.12);
}

.faq-item summary {
    color: #0f2d64;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: color 0.3s ease;
    display: block;
    padding-left: 32px;
    position: relative;
}

.faq-item summary::-webkit-details-marker,
.faq-item summary::marker {
    display: none;
    content: none;
}

.faq-item summary:hover {
    color: #00bfa6;
}

.faq-item summary::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    color: #00bfa6;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::before {
    transform: rotate(90deg);
}

.faq-item p {
    color: #42506a;
    margin-top: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item summary {
        font-size: 1rem;
    }
}

/* ===== Mobile Menu Button ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 101;
}

.menu-icon {
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 4px 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(1) {
    transform: rotate(45deg) translate(12px, 12px);
}

.mobile-menu-btn.active .menu-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-icon:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(10, 42, 79, 0.98) 0%, rgba(10, 42, 79, 0.94) 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0, 191, 166, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        backdrop-filter: blur(16px);
        z-index: 100;
    }

    .nav.active {
        max-height: 400px;
    }

    .nav-link {
        width: 100%;
        padding: 12px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 191, 166, 0.1);
    }

    .header {
        justify-content: space-between;
    }

    .brand {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .nav-link {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .mobile-menu-btn {
        width: 44px;
        height: 44px;
    }

    .menu-icon {
        width: 20px;
        height: 2px;
    }
}
