/* Custom Fonts */
@font-face {
    font-family: 'Old Standard TT';
    src: url('./font/OldStandardTT-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Old Standard TT';
    src: url('./font/OldStandardTT-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Old Standard TT';
    src: url('./font/OldStandardTT-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Sora';
    src: url('./font/Sora-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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



:root {
    --primary-teal: #002932;
    --cream: #EADED0;
    --light-gray: #E8E4DC;
    --text-gray: #9E9E9E;
    --text-dark: #2C2C2C;
    --text-light: #BFA5A8;
    --white: #FFFFFF;
    --rich-black: #08323B;
    --floral-white: #FBF7F2;
}

body {
    font-family: 'Sora', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Old Standard TT', serif;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: all ease-in-out 0.3s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 17px;
}

.logo {
    font-family: 'Old Standard TT', serif;
    font-size: 28px;
    color: var(--cream);
    font-style: italic;
    font-weight: 400;
}

.nav-logo {
    margin-left: -32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    max-width: 1005px;
    justify-content: space-between;
    width: 100%;
    padding-left: 10px;
    align-items: center;
}


.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(12px, 1vw, 16px);
    text-wrap: nowrap;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cream);
    text-decoration: none;
    padding: 8px 16px;
    font-size: clamp(12px, 1vw, 16px);
    font-family: 'Sora', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.language-toggle .current-lang {
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-toggle:hover {
    background-color: var(--cream);
    color: var(--primary-teal);
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.language-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--primary-teal);
    border-radius: 5px;
    list-style: none;
    padding: 8px 0;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    margin: 0;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--cream);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-option:hover {
    background-color: rgba(245, 241, 232, 0.1);
}

.lang-option.active {
    background-color: rgba(245, 241, 232, 0.15);
    font-weight: 600;
}

a.btn-primary {
    text-decoration: none;
    line-height: 1.5;
    color: var(--primary-teal) !important;
    display: block;
}

a.btn-secondary {
    text-decoration: none;
    line-height: 1.5;
    display: block;
}

.btn-primary-outline {
    border: 1.5px solid var(--cream);
    padding: 12px 24px;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary-outline:hover {
    background-color: var(--cream);
    color: var(--primary-teal);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--cream);
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-teal);
    z-index: 2000;
    transition: right 0.3s ease;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    margin-top: 60px;
}

.mobile-menu-list li {
    margin-bottom: 30px;
}

.mobile-menu-list a {
    color: var(--cream);
    text-decoration: none;
    font-size: 28px;
    transition: opacity 0.3s;
}

.mobile-menu-list a:hover {
    opacity: 0.7;
}

.mobile-menu-footer {
    margin-top: auto;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-full {
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--cream);
    color: var(--primary-teal);
}

.btn-primary:hover {
    background-color: var(--light-gray);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cream);
    border: 1.5px solid var(--cream);
}

.btn-secondary:hover {
    background-color: var(--cream);
    color: var(--primary-teal);
}

.btn-primary-full {
    background-color: var(--cream);
    color: var(--primary-teal);
    width: 100%;
}

/* Hero Section */
.hero {
    background-color: var(--primary-teal);
    background-image: url(/images/banner-bg.jpg);
    padding: 172px 0;
    padding-bottom: 83px;
    color: var(--cream);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 597px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.4;
    color: var(--text-light);
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    min-width: 40%;
}

.hero-image img {
    width: 100%;
    border-radius: 50px 50px 200px 50px;
    aspect-ratio: 1 / 1;
    max-width: 616px;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--white);
    padding: 47px 0;
    padding-bottom: 110px;
}

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

.section-subtitle {
    font-size: 30px;
    color: var(--text-light);
    letter-spacing: 1.5px;
    font-weight: 200;
}

.section-title {
    font-size: 48px;
    color: var(--text-dark);
    font-weight: 400;
}

@media (min-width: 992px) {
    .philosophy-grid .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1131px;
        margin: 0 auto;
        padding-bottom: 110px;
    }

    .philosophy {
        padding-bottom: 40px;
    }
}

@media (min-width: 969px) {

    .mobile-only {
        display: none !important;
    }
}

.philosophy-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}


/* Second card - top right */
.philosophy-card:nth-child(2) {
    transform: translateY(90px) !important;
}

/* Fourth card - bottom spanning full width (optional if you have 4 items) */
.philosophy-card:nth-child(4) {
    transform: translateY(90px) !important;
}


.philosophy-image {
    margin: auto;
    margin-bottom: 14px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 624 / 503;
    max-width: 500px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-card h3 {
    font-size: 22px;
    line-height: normal;
    margin-bottom: 2px;
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
}

.philosophy-card p {
    font-size: 16px;
    font-family: 'Sora', sans-serif;
    color: var(--text-gray);
    line-height: 26px;
}

/* Specialties Section */
.specialties {
    padding: 32px 0;
    background-color: var(--floral-white);
}

.specialties .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.specialties-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
}

.specialties-container {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.specialty-card {
    min-width: calc((100% - 60px) / 3);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
    opacity: 1;
}

@media (max-width: 1370px) {
    .specialty-card {
        min-width: calc((100% - 60px) / 2);
    }

    .slider-btn-next.btn-desktop {
        position: absolute;
        right: 0px;
    }

    .slider-btn-prev.btn-desktop {
        position: absolute;
        left: 0px;

        /* Sticky rendez-vous button */
        .rendezvous-sticky {
            position: fixed;
            left: 50%;
            transform: translateX(-50%);
            top: 74px;
            /* sits under navbar */
            z-index: 4100;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: 28px;
            font-weight: 600;
            font-family: 'Sora', sans-serif;
            box-shadow: 0 10px 30px rgba(2, 30, 33, 0.12);
            transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            background: var(--primary-teal);
            color: var(--cream);
            text-decoration: none;
        }

        .rendezvous-sticky.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(-50%) translateY(0);
        }

        @media (max-width: 640px) {
            .rendezvous-sticky {
                right: 20px;
                left: auto;
                transform: none;
                top: 72px;
                padding: 10px 14px;
                border-radius: 22px;
            }
        }
    }
}

.specialty-card:hover {
    transform: translateY(-5px);
}

.specialty-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    min-height: 90px;
    display: flex;
    align-items: flex-end;
}

.specialty-card h3 {
    font-size: 24px;
    color: var(--text-light);
    font-family: 'Sora', sans-serif;
    font-weight: 400;
}

.specialty-card p {
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Sora', sans-serif;
    line-height: 26px;
}

.slider-btn {
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    z-index: 1;
    background-color: var(--text-light);
    border-radius: 5px;
    color: var(--white);
}

.mobile-slider-btns {
    display: none;
}

.slider-btn:hover {
    background-color: var(--primary-teal);
    color: var(--cream);
}

/* Doctor Section */
.doctor {
    align-items: start;
    background-image: url(/images/bg-1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin: auto;
    width: 100%;
    margin-top: 80px;
    margin-bottom: 80px;
    max-width: 1440px;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: auto;
}

.doctor-content-left {
    padding-top: 15px;
}

.doctor-image {
    position: relative;
    margin-top: 10px;

}

.doctor-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 624 / 503;
    max-width: 400px;
}

.doctor-info .section-subtitle {
    text-align: left;
}

.doctor-info .section-title {
    text-align: left;
    margin-bottom: 40px;
}

.doctor-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.doctor-section h3 {
    font-size: 22px;
    color: var(--primary-teal);
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
}

.doctor-section ul {
    list-style: none;
}

.doctor-section li {
    font-size: 16px;
    color: var(--rich-black);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.doctor-section li:before {
    content: "•";
    color: var(--primary-teal);
    position: absolute;
    left: 0;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    padding-top: 0px;
    background-color: var(--white);
}

.why-us .section-header {
    background-image: url(/images/bg-2.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.why-card {
    text-align: center;
    padding: 30px;
}

.why-icon {
    display: flex;
    justify-content: center;
}



.why-card h3 {
    font-size: 24px;
    color: var(--primary-teal);
    font-family: 'Sora', sans-serif;
}

.why-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 484px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--cream);
    position: relative;
    height: 623px;
}

.contact .section-title {
    font-family: 'Sora', sans-serif;
    line-height: normal;
    margin-bottom: 23px;
    font-size: 28px;
}


.contact-info {
    z-index: 1;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.06);
    padding: 50px;
    width: fit-content;
    position: relative;
    max-width: 500px;
    position: absolute;
    top: 100px;
    left: 100px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: start;
    margin-bottom: 15px;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 400;
    font-family: 'Sora', sans-serif;
}

.contact-map {
    position: absolute;
    top: 0px;
    left: 0px;
    overflow: hidden;
    height: 623px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--primary-teal);
    color: var(--cream);
    padding: 30px 0;
    text-align: center;
}

.footer p {
    font-size: 16px;
    opacity: 0.8;
}

/* Floating Buttons */
.whatsapp-float,
.call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.3s;
}

.whatsapp-float:hover,
.call-float:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    bottom: 80px;
    right: 20px;
}

.call-float {
    bottom: 20px;
    right: 20px;
}

.general-conditions {
    cursor: pointer;
}

.general-conditions:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .navbar .container {
        flex-direction: row-reverse;
    }

    .philosophy-card:nth-child(2),
    .philosophy-card:nth-child(4) {
        transform: none !important;
    }


    .hamburger {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: flex-start;
    }

    .hero-image img {
        width: 100%;
        border-radius: 25px 25px 100px 25px;
    }

    .hero-text {
        width: 100%;
    }

    .hero-title {
        font-size: 45px;
        margin-bottom: 10px;
    }

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

    .specialties-container {
        flex-direction: row;
    }


    .specialties-slider {
        flex-direction: column;
    }

    .specialty-card {
        min-width: 100%;
    }

    .slider-btn {
        display: flex !important;
    }

    .btn-desktop {
        display: none !important;
    }

    .mobile-slider-btns {
        display: flex !important;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
        align-items: center;
    }

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

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 640px) {
    .navbar {
        padding-top: 0px;
    }

    .hero {
        padding: 140px 0;
        padding-bottom: 31px;
    }

    .hero-content {
        gap: 20px;
    }


    .hero-description,
    .hero-subtitle {
        display: none;
    }

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

    .philosophy,
    .specialties,
    .doctor,
    .why-us,
    .contact {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .container {
        padding: 0 20px;
    }
}

/* Swiper-specific mobile styles for Philosophy section */
@media (max-width: 991px) {

    .philosophy-card:nth-child(2),
    .philosophy-card:nth-child(4) {
        transform: none !important;
    }

    .philosophy {
        padding: 19px 0;
        padding-bottom: 60px;
        padding-top: 0px;
    }

    .philosophy-card {
        max-width: unset;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: var(--swiper-pagination-top, auto) !important;
        top: unset !important;
    }

    /* Make sure the swiper container uses full width */
    .philosophy-grid.swiper {
        padding: 8px 0 0 0;
        max-width: 100%;
        margin: 0;
    }

    .philosophy-grid.swiper .swiper-wrapper {
        padding-bottom: 6px;
        align-items: flex-start;
    }

    .philosophy-grid.swiper .philosophy-card.swiper-slide {
        border-radius: 14px;
        padding: 18px;
        margin: 0 auto;
        text-align: left;
        transition: transform 0.36s cubic-bezier(.2, .9, .2, 1), opacity 0.36s;
        background: var(--white);
    }

    .philosophy-card.active {
        transform: translateY(-8px);
    }

    .philosophy-image {
        aspect-ratio: 363/293;
        max-width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    /* Pagination (pill + bullets) */
    .philosophy-pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
    }


    .swiper-pagination-bullet {
        margin: unset !important;
        width: 11px !important;
        height: 10px !important;
    }

    .swiper-pagination-bullet-active {
        width: 83px !important;
        height: 10px;
        background: var(--primary-teal) !important;
        border-radius: 100px !important;
    }

    .swiper-pagination {
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e6e6e6;
        opacity: 1;
        transition: transform 0.24s, background 0.24s, opacity 0.24s;
    }

    .swiper-pagination-bullet-active {
        background: var(--light-gray);
        transform: scale(1.02);
        opacity: 0.95;
    }

    /* ensure container overflow doesn't clip shadows */
    .philosophy .container {
        overflow: visible;
    }

    .philosophy .section-title {
        line-height: 40px;
    }

    .philosophy .container {
        padding: 15px;
    }

    .philosophy-grid.swiper .philosophy-card.swiper-slide {
        padding: 0px;
    }

    .philosophy-grid.swiper {
        padding-top: 0px;
    }

    .philosophy-pagination {
        gap: 7px;
        margin-top: 10px;
    }

    .swiper-pagination {
        gap: 7px;
    }

    .philosophy-card h3 {
        text-align: center;
    }

    .philosophy-card p {
        text-align: center;
    }


    .specialties {
        padding-top: 25px;
        padding-bottom: 33px;
    }

    .specialties .section-title {
        margin-bottom: 0px;
    }

    .specialty-card {
        padding: 18px 0px;
        padding-bottom: 0px;
    }

    .mobile-slider-btns {
        margin-top: 0px;
    }

    .doctor,
    .why-us {
        padding: 0px 0;
        padding-bottom: 50px;
    }

    .why-us {
        padding: 0px 0;
        padding-bottom: 350px;
    }

    .doctor {
        background-position: left top;
        margin-top: 41px;
        margin-bottom: 0px;
    }

    .doctor-content-left {
        padding-top: 0px;
    }

    .doctor-section h3 {
        margin-bottom: 0px;
    }

    .doctor-section li {
        margin-bottom: 3px;
    }

    .doctor-details {
        gap: 12px;
    }

    .why-us .section-header {
        padding: 20px 0;
    }

    .why-us-grid {
        grid-template-columns: auto auto;
        gap: 0px;
    }

    .why-card {
        padding: 10px;
    }

    .why-card p {
        display: none;
    }

    .why-card h3 {
        font-size: 18px;
        padding-top: 5px;
    }

    .section-header {
        margin-bottom: 10px;
    }

    .why-icon {
        min-height: 84px;
        display: flex;
        align-items: flex-end;
    }


    .contact-info {
        padding: 18px;
        top: -300px;
        left: 17px;
    }

    .contact .section-title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .contact-item {
        align-items: center;
        margin-bottom: 10px;
        max-width: 100%;
    }

    .contact-item h4 {
        font-size: 16px;
        word-break: break-all;
    }

    .contact-map {
        height: 350px;
    }

    .contact {
        height: 350px;
    }

    .footer {
        padding: 15px 0;
    }

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

}

@media (max-width: 456px) {
    .contact-info {
        max-width: 308px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-primary-full {
        padding: 14px 20px;
        font-size: 15px;
    }

    .rendezvous-sticky {
        font-size: 14px;
        width: fit-content;
        min-width: 200px;
    }
}

/* General Conditions modal styles (positioned absolute, 50% of viewport) */
.gc-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    z-index: 4000;
}

.gc-backdrop.open {
    display: block;
}

.gc-modal {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 50vh;
    min-width: 320px;
    min-height: 320px;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 18px;
    padding: 32px 34px;
    box-shadow: 0 30px 70px rgba(2, 30, 33, 0.18);
    overflow: auto;
    font-family: 'Sora', sans-serif;
}

.gc-close {
    position: absolute;
    right: 14px;
    top: 12px;
    background: var(--primary-teal);
    color: var(--cream);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.gc-modal h1 {
    margin-top: 8px;
    margin-bottom: 22px;
    font-family: 'Old Standard TT', serif;
    color: var(--primary-teal);
    font-size: 32px;
}

.gc-modal h2 {
    margin-top: 6px;
    margin-bottom: 18px;
    font-family: 'Old Standard TT', serif;
    color: var(--primary-teal);
    font-size: 24px;
}

.gc-modal h3 {
    margin-top: 4px;
    margin-bottom: 14px;
    font-family: 'Old Standard TT', serif;
    color: var(--primary-teal);
    font-size: 24px;
}

.gc-modal a {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline !important;
    cursor: pointer;
}

.gc-modal strong,
.gc-modal b {
    color: var(--text-gray);
    font-size: 15px;
    font-weight: 700;
}

.gc-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 15px;
}

@media (max-width: 768px) {
    .gc-modal {
        position: fixed;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 40px);
        height: calc(100% - 80px);
        padding: 20px;
        border-radius: 12px;
    }

    .gc-close {
        right: 12px;
        top: 10px;
    }

    .whatsapp-float {
        bottom: 56px;
        right: 20px;
    }

    .language-toggle {
        padding: 0px;
    }

    .navbar .container {
        padding: 0 12px;
    }

    .nav-logo {
        padding-left: 13px;
    }
}

/* Sticky appointment button (fixed under navbar) */
.rendezvous-sticky {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    /* will be overridden by JS to match navbar height */
    z-index: 900;
    /* below navbar (which uses 1000) so it appears under the header visually */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 28px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    box-shadow: 0 10px 30px rgba(2, 30, 33, 0.12);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: var(--primary-teal);
    color: var(--cream);
    text-decoration: none;
}

.rendezvous-sticky.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
    .rendezvous-sticky {
        right: 20px;
        left: auto;
        transform: none;
        top: 72px;
        /* will be adjusted by JS too */
        padding: 10px 14px;
        border-radius: 22px;
    }
}
