/* ============================================================
   WHY US PAGE — ARGAMAN SURGERIES
   ============================================================ */

/* --- 1. CONFIGURATION DE BASE ET PALETTE --- */
:root {
    --color-gold: #C0A062;
    --color-dark: #2F353B;
    --color-cream: #F9F8F4;
    --color-slate: #545F66;
    --color-grey: #666666;
    --color-border: #999999;
    --color-blue-btn: #0056b3;
    --color-grey-dark: #1E242A;
    --color-goldor: #a88852;
    --color-clair: #f9f9f8;

    --site-padding-left: max(40px, 5vw);
    --site-max-width: 1400px;
    --site-gutter: max(40px, calc((100% - 1200px) / 2));
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--color-dark);
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
}

/* ============================================================
   2. HEADER & NAVIGATION (copied from contact.css)
   ============================================================ */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 110px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 1000;
}

.brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: absolute;
    left: var(--site-gutter);
    z-index: 1001;
    transition: opacity 0.3s;
}

.brand-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 2px;
    color: var(--color-slate);
    transition: transform 0.3s ease, color 0.3s ease;
}

.brand-icon svg { width: 100%; height: 100%; overflow: visible; }

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.brand-name {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 30px;
    letter-spacing: 3px;
    color: var(--color-slate);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.brand-sub {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 8px;
    letter-spacing: 5px;
    color: var(--color-slate);
    text-transform: uppercase;
    margin-top: 3px;
    transition: color 0.3s ease;
}

.brand-logo:hover .brand-icon,
.brand-logo:hover .brand-name,
.brand-logo:hover .brand-sub { color: var(--color-gold); }
.brand-logo:hover .brand-icon { transform: scale(1.05); }

.navbar {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 15px;
    margin-left: 100px;
}

.nav-wrapper-mega, .nav-wrapper-simple {
    height: 100%;
    display: flex;
    align-items: center;
}
.nav-wrapper-mega { position: static; }
.nav-wrapper-simple { position: relative; }

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
    cursor: pointer;
    white-space: nowrap;
}

.nav-link:hover { color: var(--color-gold); }
.nav-link i { font-size: 10px; color: var(--color-gold); transition: transform 0.3s; }

.btn-book {
    text-decoration: none;
    color: var(--color-grey);
    background-color: transparent;
    border: 1px solid var(--color-border);
    padding: 12px 25px;
    position: absolute;
    right: var(--site-gutter);
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-book:hover {
    border-color: var(--color-gold);
    background-color: var(--color-gold);
    color: #fff;
}

@media (min-width: 1025px) {
    .nav-wrapper-mega:hover .nav-link, .nav-wrapper-simple:hover .nav-link { color: var(--color-gold); }
    .nav-wrapper-mega:hover .nav-link i, .nav-wrapper-simple:hover .nav-link i { transform: rotate(180deg); }
    .nav-wrapper-mega:hover .dropdown-menu, .nav-wrapper-simple:hover .dropdown-menu {
        visibility: visible; opacity: 1; transform: translateY(0);
    }
}

.dropdown-menu {
    background-color: var(--color-dark);
    position: absolute; top: 100%; visibility: hidden; opacity: 0;
    transform: translateY(10px); transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 999;
}
.dropdown-menu.mega-style { left: 0; width: 100%; padding: 50px 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.dropdown-menu.simple-style { left: 50%; transform: translateX(-50%) translateY(10px); min-width: 250px; padding: 30px; display: flex; flex-direction: column; }

@media (min-width: 1025px) {
    .nav-wrapper-simple:hover .dropdown-menu.simple-style { transform: translateX(-50%) translateY(0); }
}

.column-title { color: #fff; font-size: 18px; margin-bottom: 20px; font-weight: 600; }
ul { list-style: none; }
li { margin-bottom: 12px; }

li a { color: #b0b2b5; text-decoration: none; font-size: 14px; position: relative; display: block; transition: all 0.3s ease; }
li a::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0px; height: 1px; background-color: var(--color-gold); transition: width 0.3s ease; }
li a:hover { color: var(--color-gold); padding-left: 25px; }
li a:hover::before { width: 15px; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2001; }
.bar { width: 30px; height: 2px; background-color: var(--color-dark); transition: all 0.3s; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   3. HERO SECTION — design unifié avec la page Testimonials
   ============================================================ */
.whyus-hero {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
    min-height: 540px;
    padding: 90px 40px 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background-color: #1E242A;
    background-image:
        linear-gradient(180deg, rgba(15,17,20,0.45) 0%, rgba(15,17,20,0.65) 60%, rgba(15,17,20,0.80) 100%),
        url("Images/about-argaman-surgeries-mexico-city.avif");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.whyus-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.whyus-hero .hero-eyebrow-gold,
h1.hero-eyebrow-gold {
    display: inline-block;
    color: #d8c28c;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    padding: 0;
    line-height: 1.4;
    text-shadow: none;
    text-transform: none;
}
.whyus-hero .hero-main-white {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -1.4px;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.whyus-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.92);
    font-weight: 300;
    max-width: 760px;
    margin: 0 auto;
}

/* Breadcrumb — collé en haut, sans hover/animation */
.whyus-breadcrumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 18px 24px 0;
    width: 100%;
}
.whyus-breadcrumb,
.whyus-breadcrumb *,
.whyus-breadcrumb *::before,
.whyus-breadcrumb *::after {
    transition: none !important;
    animation: none !important;
}
.whyus-breadcrumb-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 max(40px, 5vw);
}
.whyus-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #fff;
}
.whyus-breadcrumb ol li {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
}
.whyus-breadcrumb ol li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.45);
    font-weight: 300;
}
.whyus-breadcrumb ol li + li::before { content: none !important; }
.whyus-breadcrumb a,
.whyus-breadcrumb a:hover,
.whyus-breadcrumb a:focus,
.whyus-breadcrumb a:active,
.whyus-breadcrumb a:visited {
    color: #fff !important;
    text-decoration: none !important;
    background: transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    transform: none !important;
}
.whyus-breadcrumb li a::before,
.whyus-breadcrumb li a:hover::before {
    content: none !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* ============================================================
   TRUST STATS — chiffres clés étalés sur la largeur du hero
   ============================================================ */
.whyus-ratings {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    width: calc(100% - 80px);
    max-width: 1100px;
    padding: 0;
    flex-wrap: wrap;
    z-index: 3;
}
.whyus-rating {
    flex: 1 1 0;
    min-width: 140px;
    text-align: center;
    color: #fff;
}
.whyus-rating-value {
    font-family: 'Inter', sans-serif;
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.whyus-rating-plus,
.whyus-rating-star {
    color: #fff;
    line-height: 1;
}
.whyus-rating-plus { font-size: 0.9em; font-weight: 400; }
.whyus-rating-star { font-size: 0.75em; margin-left: 0; }
.whyus-rating-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #d8c28c;
    margin: 0 0 12px;
    letter-spacing: 0;
    text-transform: none;
}

@media (max-width: 768px) {
    .whyus-ratings { bottom: 50px; gap: 18px; width: calc(100% - 32px); }
    .whyus-rating { min-width: 130px; flex: 1 1 45%; }
    .whyus-rating-value { font-size: 22px; gap: 5px; }
    .whyus-rating-label { font-size: 13px; margin: 0 0 8px; }
}

/* ============================================================
   4. STATS BAND
   ============================================================ */
.stats-band {
    background-color: var(--color-dark);
    padding: 60px 40px;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================================
   5. CONTENT SECTIONS — GENERAL
   ============================================================ */
.content-section { padding: 100px 40px; }
.content-section.white-bg { background-color: #fff; }
.content-section.cream-bg { background-color: var(--color-cream); }

.content-container {
    max-width: 1100px;
    margin: 0 auto;
}

.content-container.centered { text-align: center; }

.content-container h2,
.centered-title {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.centered-title { text-align: center; }

.content-container p {
    font-size: 15px;
    color: var(--color-grey);
    line-height: 1.8;
    margin-bottom: 18px;
}

.content-container p strong {
    color: var(--color-dark);
    font-weight: 600;
}

.section-subtitle {
    font-size: 15px;
    color: var(--color-grey);
    max-width: 600px;
    margin: 0 auto 50px;
}

/* Two-column layout — image column un peu plus large */
.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 50px;
    align-items: center;
}
.two-col.reverse {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
}

.two-col.reverse { direction: ltr; }

.col-text { direction: ltr; }
.col-image { direction: ltr; }

.image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 0;
}

/* Real <img> inside col-image — remplace les placeholders gris */
.col-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}
@media (max-width: 1024px) {
    .col-image img { height: 400px; }
}
@media (max-width: 768px) {
    .col-image img { height: 300px; }
}

/* CTA Button — Gold Filled */
.btn-cta-gold {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--color-gold);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-cta-gold:hover {
    background-color: #a8893f;
}

/* CTA Button — Gold Outline */
.btn-cta-outline {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.btn-cta-outline:hover {
    background-color: var(--color-gold);
    color: #fff;
}

/* CTA Button — Light Outline (for dark backgrounds) */
.btn-cta-outline-light {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-cta-outline-light:hover {
    background-color: var(--color-gold);
    color: #fff;
}

/* ============================================================
   6. CERTIFICATION CHECKLIST (Section 3)
   ============================================================ */
.cert-checklist {
    margin-top: 25px;
}

.cert-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
}

.cert-check-item i {
    color: var(--color-gold);
    font-size: 14px;
    flex-shrink: 0;
}

.cert-check-item span {
    font-size: 14px;
    color: var(--color-dark);
    font-weight: 400;
}

/* ============================================================
   7. CERTIFICATION GRID (Section 4)
   ============================================================ */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px 60px;
    margin-top: 50px;
}

.cert-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cert-item img {
    max-height: 70px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.cert-item:hover img {
    filter: grayscale(0);
}

.cert-item span {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-grey);
    letter-spacing: 1px;
    font-weight: 400;
}

/* ============================================================
   8. WHY MEXICO CITY (Section 5)
   ============================================================ */
.why-mexico {
    background-color: var(--color-dark);
    padding: 100px 40px;
    color: #fff;
}

.why-mexico h2 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.5px;
    text-align: center;
    margin-bottom: 60px;
}

.mexico-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.mexico-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mexico-icon i {
    color: var(--color-gold);
    font-size: 16px;
}

.mexico-item h3 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.mexico-item p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ============================================================
   9. TIMELINE (Section 6)
   ============================================================ */
/* Timeline — étapes empilées verticalement, contenu centré */
.timeline {
    position: relative;
    margin: 50px auto 0;
    max-width: 720px;
    padding: 0;
}

.timeline-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}
.timeline-step:last-child { margin-bottom: 0; }

.timeline-number {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 18px;
    z-index: 1;
}

.timeline-content {
    max-width: 560px;
}
.timeline-content h3 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 10px;
    letter-spacing: -0.2px;
}
.timeline-content p {
    font-size: 14.5px;
    color: var(--color-grey);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   10. PRICE TABLE (Section 7)
   ============================================================ */
.table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

/* ============================================================
   COST COMPARISON — section pleine largeur, tableau edge-to-edge
   ============================================================ */
.cost-comparison-section {
    background-color: #fff;
    padding: 40px 0 80px;
    width: 100%;
}
.cost-comparison-section .centered-title {
    text-align: center;
    margin: 0 0 12px;
    padding: 0 40px 36px !important;
}
.full-width-table {
    width: calc(100% - 80px);
    max-width: 1400px;
    margin: 24px auto 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    background: #fff;
}
.full-width-table .price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
}
.full-width-table .price-table thead th {
    padding: 22px 32px;
    font-size: 13px;
    text-align: center;
}
.full-width-table .price-table thead th:first-child {
    border-top-left-radius: 14px;
    text-align: left;
}
.full-width-table .price-table thead th:last-child {
    border-top-right-radius: 14px;
}
.full-width-table .price-table tbody td {
    padding: 20px 32px;
    font-size: 15.5px;
    text-align: center;
}
.full-width-table .price-table tbody td:first-child {
    font-weight: 600;
    text-align: left;
}
.full-width-table .price-table tbody td:first-child a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}
.full-width-table .price-table tbody td:first-child a:hover {
    color: #C0A062;
    text-decoration: underline;
}
.full-width-table .price-table tbody tr:last-child td {
    border-bottom: none;
}
.full-width-table .price-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 14px;
}
.full-width-table .price-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 14px;
}
.cost-comparison-section .table-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-grey);
    margin-top: 28px;
    padding: 0 40px;
    font-style: italic;
}
.cost-comparison-section .table-note a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cost-comparison-section { padding: 70px 0; }
    .full-width-table { width: calc(100% - 32px); border-radius: 10px; }
    .full-width-table .price-table,
    .full-width-table .price-table thead th:first-child,
    .full-width-table .price-table thead th:last-child,
    .full-width-table .price-table tbody tr:last-child td:first-child,
    .full-width-table .price-table tbody tr:last-child td:last-child {
        border-radius: 0;
    }
    .full-width-table .price-table thead th { padding: 16px 14px; font-size: 11px; letter-spacing: 0.5px; }
    .full-width-table .price-table tbody td { padding: 14px 14px; font-size: 13.5px; }
}

.price-table thead tr {
    background-color: var(--color-dark);
}

.price-table thead th {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 20px;
    text-align: left;
}

.price-table tbody tr:nth-child(odd) { background-color: #fff; }
.price-table tbody tr:nth-child(even) { background-color: var(--color-cream); }

.price-table tbody td {
    font-size: 15px;
    color: var(--color-dark);
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
}

.save-col {
    color: var(--color-gold) !important;
    font-weight: 700;
}

.table-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-grey);
    margin-top: 25px;
    font-style: italic;
}

/* ============================================================
   11. TESTIMONIAL (Section 8)
   ============================================================ */
.testimonial-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    display: block;
    font-size: 80px;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.testimonial-block blockquote {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-style: italic;
    font-weight: 300;
    color: var(--color-dark);
    line-height: 1.7;
    margin: 0 0 25px;
}

.testimonial-block cite {
    display: block;
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

/* ============================================================
   12. FINAL CTA (Section 9)
   ============================================================ */
.final-cta {
    background-color: var(--color-dark);
    padding: 100px 40px;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: inline-flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   13. FOOTER (copied from contact.css)
   ============================================================ */
footer { padding: 0; background-color: transparent; border-top: none; width: 100%; }
.footer-cta-bar { background-color: var(--color-grey-dark); padding: 50px 10%; display: flex; align-items: center; justify-content: space-between; color: #fff; flex-wrap: wrap; gap: 30px; }
.cta-content h2 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 30px; font-weight: 300; line-height: 1.3; max-width: 1200px; margin: 0; text-align: left; }
.btn-footer-cta { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--color-gold); padding: 12px 30px; color: #fff; background: var(--color-gold); text-decoration: none; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-footer-cta:hover { background: #fff; color: var(--color-grey); border-color: #fff; }
.footer-info-section { background-color: #fff; padding: 80px 40px 30px 40px; color: var(--color-dark); }
.footer-grid-wrapper { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid #dcdcdc; padding-bottom: 60px; margin-bottom: 30px; align-items: flex-start; }
.f-col-identity { display: flex; flex-direction: column; align-items: flex-start; gap: 25px; }

.f-brand-block {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-slate);
    margin-bottom: 10px;
}
.f-brand-icon-ft { width: 40px; height: 40px; color: var(--color-slate); }
.f-brand-text-ft {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: flex-start;
}
.f-name-ft {
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 400;
}
.f-sub-ft {
    font-size: 9px;
    letter-spacing: 2.85px;
    text-transform: uppercase;
    margin-top: 2px;
    margin-left: 1px;
}

.f-address-box p { font-size: 13px; color: var(--color-grey); line-height: 1.6; margin-bottom: 5px; }
.f-address-box .highlight { color: var(--color-dark); font-weight: 600; margin-top: 10px; display: block; }
.f-socials-row { display: flex; gap: 15px; margin-top: 10px; }
.f-socials-row a { color: var(--color-slate); font-size: 18px; transition: color 0.3s; text-decoration: none; }
.f-socials-row a:hover { color: var(--color-gold); }
.f-col-links h4 { font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; color: var(--color-slate); font-weight: 700; }
.f-link-list { list-style: none; padding: 0; margin: 0; }
.f-link-list li { margin-bottom: 10px; }
.f-link-list li a { font-size: 13px; color: var(--color-grey); text-decoration: none; transition: color 0.3s; position: relative; }
.f-link-list li a::before { display: none; }
.f-link-list li a:hover { color: var(--color-gold); padding-left: 0; }
.f-group-title { font-size: 13px; color: var(--color-slate); font-weight: 700; margin-top: 25px; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }
.mt-0 { margin-top: 0 !important; }
.footer-legal-row { text-align: center; font-size: 11px; color: #999; }
.footer-legal-row a { color: #999; text-decoration: none; margin-left: 10px; transition: color 0.3s; }
.footer-legal-row a:hover { color: var(--color-gold); }

/* ============================================================
   14. RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
    li a::before { display: none !important; }
    li a:hover { padding-left: 0 !important; }

    /* Header mobile */
    header { justify-content: space-between; padding: 0 20px; height: 90px; position: fixed; top: 0; left: 0; width: 100%; border-bottom: 1px solid #e5e5e5; z-index: 2000; }
    body { padding-top: 90px; }
    .brand-logo { position: static; left: auto; }
    .brand-icon { width: 35px; height: 35px; }
    .brand-name { font-size: 18px; letter-spacing: 2px; }
    .brand-sub { font-size: 7px; letter-spacing: 3px; }
    .hamburger { display: flex; }
    .navbar { position: fixed; top: 90px; left: 0; width: 100%; height: calc(100vh - 90px); background-color: #fff; flex-direction: column; align-items: flex-start; padding: 40px; transform: translateX(-100%); transition: transform 0.4s ease; overflow-y: auto; gap: 0; z-index: 1999; margin-left: 0; }
    .navbar.active { transform: translateX(0); }
    .nav-wrapper-mega, .nav-wrapper-simple { width: 100%; height: auto; flex-direction: column; align-items: flex-start; border-bottom: 1px solid #f0f0f0; }
    .nav-link { width: 100%; padding: 20px 0; justify-content: space-between; font-size: 16px; }
    .btn-book { position: relative; right: auto; top: auto; transform: none; margin-top: 20px; width: 100%; text-align: center; padding: 15px; }
    .dropdown-menu, .dropdown-menu.mega-style, .dropdown-menu.simple-style { position: static; width: 100%; box-shadow: none; padding: 0; visibility: visible; opacity: 1; transform: none; display: none; background-color: #ffffff; padding-left: 15px; }
    .column-title { color: var(--color-dark); margin-top: 10px; margin-bottom: 10px; }
    li a { color: #444; }
    .dropdown-menu.mega-style { grid-template-columns: 1fr; gap: 20px; padding: 20px; }
    .dropdown-menu.simple-style { padding: 20px; }
    .nav-wrapper-mega.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .dropdown-menu.mega-style { display: grid; }
    .nav-wrapper-simple.open .dropdown-menu { display: block; }
    .nav-wrapper-mega.open .nav-link i, .nav-wrapper-simple.open .nav-link i { transform: rotate(180deg); }

    /* Hero */
    .whyus-hero { aspect-ratio: auto; min-height: 460px; padding: 80px 24px 90px; }
    .whyus-hero .hero-eyebrow-gold { font-size: 14px; margin-bottom: 12px; }
    .whyus-hero .hero-main-white { font-size: 34px; letter-spacing: -0.8px; }
    .whyus-hero p { font-size: 15px; }
    .whyus-breadcrumb { padding: 14px 16px 0; }
    .whyus-breadcrumb-inner { padding: 0; }
    .whyus-breadcrumb ol { font-size: 13px; }

    /* Stats band: 2x2 */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-number { font-size: 40px; }

    /* Two-column grids to 1 column */
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse .col-image { order: -1; }

    /* Content sections padding */
    .content-section { padding: 70px 30px; }

    /* Certifications: 3 columns */
    .cert-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }

    /* Why Mexico: keep 3 cols */
    .mexico-grid { gap: 30px; }
    .why-mexico { padding: 70px 30px; }

    /* Timeline */
    .timeline { padding-left: 50px; }

    /* Footer */
    .footer-cta-bar { flex-direction: column; text-align: center; justify-content: center; padding: 50px 20px; }
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 20px; text-align: left !important; padding-bottom: 40px; }
    .f-col-identity { grid-column: span 3; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 20px; margin-bottom: 10px; width: 100%; text-align: center !important; }
    .f-col-links { align-items: flex-start !important; text-align: left !important; }
    .f-col-links h4, .f-group-title { text-align: left !important; font-size: 11px; }
    .f-link-list li a { justify-content: flex-start !important; text-align: left; padding-left: 0 !important; font-size: 11px; }
    .f-link-list li a:hover { padding-left: 0 !important; color: var(--color-gold); }

    /* Center text on tablet */
    .content-container h2,
    .centered-title,
    .section-subtitle,
    .col-text { text-align: center; }
    .cert-checklist { display: inline-block; text-align: left; }
}

/* ============================================================
   15. RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Stats: 1 column */
    .stats-grid { grid-template-columns: 1fr; gap: 25px; }
    .stats-band { padding: 50px 20px; }
    .stat-number { font-size: 36px; }

    /* Certifications: 2 columns */
    .cert-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }

    /* Why Mexico: 1 column */
    .mexico-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-mexico { padding: 60px 20px; }
    .why-mexico h2 { font-size: 28px; }

    /* Price table scroll */
    .table-wrapper { margin-left: -20px; margin-right: -20px; padding: 0 20px; }
    .price-table { min-width: 600px; }

    /* Timeline simplified */
    .timeline { padding-left: 50px; }
    .timeline::before { left: 18px; }
    .timeline-number { left: -50px; width: 32px; height: 32px; font-size: 13px; }

    /* Hero */
    .whyus-hero { aspect-ratio: auto; min-height: 400px; padding: 70px 18px 70px; }
    .whyus-hero .hero-main-white { font-size: 28px; }
    .whyus-hero p { font-size: 14px; max-width: 90%; }
    .whyus-breadcrumb { padding: 12px 14px 0; }

    /* Content sections */
    .content-section { padding: 60px 20px; }
    .content-container h2,
    .centered-title { font-size: 28px; }

    /* Image placeholders */
    .image-placeholder { height: 280px; }

    /* Final CTA */
    .final-cta { padding: 70px 20px; }
    .final-cta h2 { font-size: 28px; }
    .cta-buttons { flex-direction: column; gap: 15px; }
    .cta-buttons .btn-cta-gold,
    .cta-buttons .btn-cta-outline-light { width: 100%; text-align: center; }

    /* Testimonial */
    .testimonial-block blockquote { font-size: 18px; }
    .quote-mark { font-size: 60px; }

    /* Footer mobile - 3 colonnes comme index */
    .footer-grid-wrapper { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; padding-left: 10px; padding-right: 10px; }
    .f-col-identity { grid-column: span 3 !important; text-align: center !important; align-items: center !important; border-bottom: 1px solid #ddd; padding-bottom: 30px; margin-bottom: 10px; width: 100%; }
    .f-col-identity .f-address-box { width: 100%; text-align: center; }
    .f-col-identity .f-address-box p { font-size: 15px; line-height: 1.7; }
    .f-col-identity .f-socials-row { justify-content: center; width: 100%; }
    .f-col-links h4, .f-group-title { font-size: 11px; }
    .f-link-list li a { font-size: 11px; }
    .footer-info-section { padding: 50px 20px 20px; }
}

/* ============================================================
   FAQ — questions natives <details> design unifié
   ============================================================ */
.faq-wrapper {
    max-width: 820px;
    margin: 36px auto 0;
}
details.faq-item {
    border-bottom: 1px solid #ece9df;
    padding: 18px 0;
}
details.faq-item:first-of-type { border-top: 1px solid #ece9df; }
summary.faq-header {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
}
summary.faq-header::-webkit-details-marker { display: none; }
summary.faq-header h3 {
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    font-size: 16.5px !important;
    color: var(--color-dark) !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    flex: 1;
    transition: color 0.25s ease;
}
summary.faq-header:hover h3 { color: var(--color-gold) !important; }
summary.faq-header::after {
    content: '+';
    color: var(--color-gold);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
summary.faq-header:hover::after { transform: rotate(90deg); }
details[open] summary.faq-header::after { content: '−'; transform: rotate(0); }
.faq-content { padding: 14px 0 4px; }
.faq-content p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-grey);
    margin: 0;
}
.faq-content p strong { color: var(--color-dark); font-weight: 600; }

/* ============================================================
   BANNER SECTION — image en fond pleine largeur + texte centré
   (utilisée pour "Is Plastic Surgery in Mexico Safe?")
   ============================================================ */
.whyus-banner-section {
    position: relative;
    width: 100%;
    padding: 110px 40px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #1E242A;
    color: #fff;
    overflow: hidden;
    text-align: center;
}
.whyus-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,17,20,0.65) 0%, rgba(15,17,20,0.78) 100%);
    z-index: 1;
}
.whyus-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.whyus-banner-section h2 {
    color: #fff !important;
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 600;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin: 0 0 24px;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}
.whyus-banner-section p {
    color: rgba(255,255,255,0.92) !important;
    font-family: 'Inter', sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    font-weight: 300;
    margin: 0 auto 18px;
    max-width: 1100px;
}
.whyus-banner-section p strong {
    color: #fff !important;
    font-weight: 600;
}
.whyus-banner-section .btn-cta-gold {
    margin-top: 14px;
}

@media (max-width: 768px) {
    .whyus-banner-section { padding: 70px 20px; }
    .whyus-banner-section h2 { font-size: 24px; }
    .whyus-banner-section p { font-size: 15px; }
}

/* ============================================================
   ABOUT — Independent operator section
   ============================================================ */
.about-independent {
    padding-top: 80px;
    padding-bottom: 70px;
}
.about-kicker {
    display: block;
    color: var(--color-gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
}

/* Grid 2 colonnes : titre encadré à gauche + texte à droite */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 70px;
}
.about-title-box {
    border: 1px solid #d0d0d0;
    padding: 50px 40px;
    background: #fff;
}
.about-title {
    font-family: 'Inter', sans-serif !important;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 600;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.4;
    margin: 0;
}
.about-body p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.85;
    color: #444;
    margin: 0 0 18px;
}
.about-body p:last-child { margin-bottom: 0; }
.about-body p strong { color: var(--color-dark); font-weight: 700; }
.about-lead {
    font-size: 17px !important;
    color: var(--color-dark) !important;
}

/* 4 piliers / chiffres-clés */
.about-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 0;
    margin-bottom: 60px;
    border-top: 1px solid #ece9df;
    border-bottom: 1px solid #ece9df;
}
.about-pillar {
    text-align: center;
}
.about-pillar-num {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}
.about-pillar-label {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: var(--color-grey);
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.4;
}

/* 4 engagements/promesses */
.about-promises-title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    margin: 0 0 36px;
    letter-spacing: -0.2px;
}
.about-promises {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
}
.about-promise h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 10px;
    padding-left: 18px;
    border-left: 2px solid var(--color-gold);
    line-height: 1.35;
}
.about-promise p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-grey);
    margin: 0;
    padding-left: 18px;
}

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-title-box { padding: 36px 28px; }
    .about-pillars { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
    .about-promises { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
    .about-independent { padding-top: 50px; padding-bottom: 50px; }
    .about-title { font-size: 22px; letter-spacing: 3px; }
    .about-pillar-num { font-size: 26px; }
    .about-pillar-label { font-size: 11px; letter-spacing: 0.5px; }
    .about-promises-title { font-size: 19px; }
}

/* ============================================================
   COULEURS ASSORTIES — palette douce (sans fond beige)
   ============================================================ */
/* Petit filet doré sous chaque H2 (accent éditorial subtil) */
.content-section h2,
.content-section .centered-title,
.cost-comparison-section h2,
.about-promises-title {
    position: relative;
    padding-bottom: 18px;
}
.content-section h2::after,
.content-section .centered-title::after,
.cost-comparison-section h2::after,
.about-promises-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 2px;
    background: var(--color-gold);
}
/* Quand le H2 a un text-align à gauche (col-text), aligner le filet à gauche */
.col-text h2::after {
    left: 0;
    transform: none;
}
/* Pas de filet sous le titre dans la boîte encadrée About + bannière image */
.about-title::after,
.whyus-banner-section h2::after { display: none !important; }
/* Pas de filet sous les H2 du footer / CTA */
.footer-cta-bar h2::after,
footer h2::after { display: none !important; }

/* Section "Recognized Excellence" — fine ligne dorée centrée au-dessus du H2 */
.cert-grid {
    padding-top: 16px;
}

/* Why Mexico City — subtile bordure dorée à gauche de chaque carte */
.mexico-card {
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.mexico-card:hover {
    border-left-color: var(--color-gold);
    background-color: #fbf9f3;
}

@media (max-width: 768px) {
    .content-section h2::after,
    .content-section .centered-title::after,
    .cost-comparison-section h2::after,
    .about-promises-title::after {
        width: 44px;
    }
}
