/* ══════════════════════════
   index.css
   ══════════════════════════ */

/* ── LANG SWITCHER ── */
    .nav-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .lang-bar {
      display: flex;
      gap: 6px;
      align-items: center;
    }
    .lang-btn {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid var(--border);
      background: rgba(247,244,239,0.92);
      color: var(--muted);
      padding: 5px 12px;
      cursor: pointer;
      border-radius: 2px;
      transition: all 0.2s;
    }
    .lang-btn.active, .lang-btn:hover {
      background: var(--gold);
      color: #fff;
      border-color: var(--gold);
    }

    /* ── COOKIE BANNER ── */
    #cookie-banner {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 9999;
      background: rgba(28, 26, 23, 0.97);
      backdrop-filter: blur(12px);
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      transform: translateY(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    #cookie-banner.visible {
      transform: translateY(0);
    }
    #cookie-banner p {
      margin: 0;
      font-size: 13px;
      color: rgba(255,255,255,0.65);
      line-height: 1.6;
      max-width: 680px;
    }
    #cookie-banner p a {
      color: var(--gold-light);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .cookie-actions {
      display: flex;
      gap: 10px;
      flex-shrink: 0;
    }
    .btn-cookie-accept {
      background: var(--gold);
      color: #fff;
      border: none;
      padding: 9px 22px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      transition: background 0.2s;
    }
    .btn-cookie-accept:hover { background: #b8954a; }
    .btn-cookie-decline {
      background: transparent;
      color: rgba(255,255,255,0.45);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 9px 18px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .btn-cookie-decline:hover { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.4); }
    @media (max-width: 700px) {
      #cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px 24px; }
      .cookie-actions { width: 100%; }
      .btn-cookie-accept, .btn-cookie-decline { flex: 1; text-align: center; }
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 60px;
      background: rgba(253,252,250,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      transition: padding 0.3s;
    }
    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: var(--charcoal);
      text-decoration: none;
      line-height: 1.2;
    }
    .logo span {
      display: block;
      font-size: 11px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-top: 2px;
    }
    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--muted);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      background: var(--gold);
      color: #fff;
      padding: 10px 22px;
      border-radius: 2px;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--charcoal); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 82px;
    }
    .hero-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 80px;
      animation: fadeUp 0.9s ease both;
    }
    .eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(42px, 5vw, 68px);
      font-weight: 300;
      line-height: 1.12;
      color: var(--charcoal);
      margin-bottom: 28px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-desc {
      font-size: 16px;
      font-weight: 300;
      color: var(--muted);
      max-width: 420px;
      margin-bottom: 44px;
      line-height: 1.8;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      align-items: center;
    }
    .btn-primary {
      display: inline-block;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      background: var(--charcoal);
      color: #fff;
      padding: 14px 32px;
      border-radius: 2px;
      transition: background 0.25s;
    }
    .btn-primary:hover { background: var(--gold); }
    .btn-ghost {
      display: inline-block;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

    .hero-image {
      position: relative;
      background: var(--section-bg);
      overflow: hidden;
    }
    .hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      animation: scaleIn 1.2s ease both;
    }
    .hero-badge {
      position: absolute;
      bottom: 40px;
      left: -20px;
      background: var(--warm-white);
      border: 1px solid var(--border);
      padding: 20px 28px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.08);
      animation: slideRight 1s 0.4s ease both;
    }
    .hero-badge strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1;
    }
    .hero-badge span {
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── CONDITIONS SECTION ── */
    .conditions {
      background: var(--cream);
      padding: 100px 80px;
    }
    .section-header {
      display: flex;
      align-items: baseline;
      gap: 24px;
      margin-bottom: 60px;
    }
    .section-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      font-weight: 300;
      color: var(--border);
      line-height: 1;
      flex-shrink: 0;
    }
    .section-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3.5vw, 46px);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.2;
    }
    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .condition-item {
      background: var(--warm-white);
      padding: 32px 28px;
      transition: background 0.2s;
    }
    .condition-item:hover { background: var(--gold); }
    .condition-item:hover .condition-title, .condition-item:hover .condition-desc { color: #fff; }
    .condition-icon {
      width: 36px;
      height: 2px;
      background: var(--gold);
      margin-bottom: 20px;
      transition: background 0.2s;
    }
    .condition-item:hover .condition-icon { background: rgba(255,255,255,0.5); }
    .condition-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .condition-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      transition: color 0.2s;
    }

    /* ── WHY SECTION ── */
    .why {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }
    .why-image {
      position: relative;
      overflow: hidden;
    }
    .why-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
    }
    .why-content {
      padding: 80px 80px 80px 60px;
      background: var(--charcoal);
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .why-content .eyebrow { color: var(--gold-light); }
    .why-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 3vw, 48px);
      font-weight: 300;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 36px;
    }
    .why-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .why-list li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.6;
    }
    .why-list li::before {
      content: '';
      display: block;
      width: 20px;
      height: 1px;
      background: var(--gold);
      margin-top: 12px;
      flex-shrink: 0;
    }

    /* ── ABOUT ── */
    .about {
      padding: 100px 80px;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 80px;
      align-items: center;
    }
    .about-image-wrap {
      position: relative;
    }
    .about-image-wrap img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      object-position: top center;
      display: block;
      border-radius: 2px;
    }
    .about-accent {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 120px;
      height: 120px;
      background: var(--gold);
      border-radius: 50%;
      z-index: -1;
    }
    .about h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 3vw, 48px);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .about h2 em { font-style: italic; color: var(--gold); }
    .about p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 16px;
    }
    .about-diplomas {
      margin-top: 28px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── TESTIMONIALS ── */
    .testimonials {
      background: var(--section-bg);
      padding: 100px 80px;
    }
    .testimonials h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3vw, 46px);
      font-weight: 300;
      color: var(--charcoal);
      margin-bottom: 56px;
      text-align: center;
    }
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testi-card {
      background: var(--warm-white);
      padding: 36px 32px;
      border-radius: 2px;
      position: relative;
    }
    .testi-card::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 80px;
      color: var(--border);
      line-height: 1;
      position: absolute;
      top: 16px;
      left: 24px;
    }
    .testi-text {
      font-size: 15px;
      color: var(--text);
      line-height: 1.8;
      margin-top: 20px;
      font-style: italic;
    }
    .testi-author {
      margin-top: 24px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── GOOGLE RATING BANNER ── */
    .google-rating-banner {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 40px;
      padding: 12px 24px;
      margin-bottom: 48px;
      text-decoration: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .google-rating-banner:hover {
      border-color: rgba(234,67,53,0.3);
      box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .grb-stars { color: #FBBC05; font-size: 16px; letter-spacing: 2px; }
    .grb-score {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1;
    }
    .grb-outof {
      font-size: 13px;
      font-weight: 400;
      color: var(--muted);
      font-family: 'DM Sans', sans-serif;
      margin-left: 1px;
    }
    .grb-sep { color: var(--border); font-size: 18px; }
    .grb-count { font-size: 13px; color: var(--text); }
    .grb-cta {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-left: 4px;
    }
    .testimonials { text-align: center; }
    .testi-grid  { text-align: left; }

    /* ── BOOKING ── */
    .booking {
      padding: 100px 80px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .booking h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 3vw, 52px);
      font-weight: 300;
      color: var(--charcoal);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .booking h2 em { font-style: italic; color: var(--gold); }
    .booking p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 36px;
    }
    .booking-form {
      background: var(--cream);
      padding: 48px 40px;
      border-radius: 2px;
      border: 1px solid var(--border);
    }
    .booking-form h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 28px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group label {
      display: block;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 8px;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%;
      background: var(--warm-white);
      border: 1px solid var(--border);
      border-radius: 2px;
      padding: 12px 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--gold);
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .btn-doctolib {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-decoration: none;
      background: #0596DE;
      color: #fff;
      padding: 16px 24px;
      border-radius: 4px;
      transition: background 0.25s, transform 0.15s;
      box-shadow: 0 4px 20px rgba(5,150,222,0.3);
    }
    .btn-doctolib:hover {
      background: #0478B0;
      transform: translateY(-1px);
    }

    /* ── CONTACT / FOOTER ── */
    .contact-strip {
      background: var(--charcoal);
      padding: 60px 80px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
    }
    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 300;
      color: #fff;
      margin-bottom: 8px;
    }
    .contact-info p {
      font-size: 14px;
      color: rgba(255,255,255,0.55);
    }
    .contact-details {
      display: flex;
      gap: 48px;
    }
    .contact-item label {
      display: block;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 6px;
    }
    .contact-item p {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
    }
    .contact-item a {
      font-size: 15px;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
    }
    .contact-item a:hover { color: var(--gold-light); }


    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(1.04); }
      to   { opacity: 1; transform: scale(1); }
    }
    @keyframes slideRight {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; }
      .hero-text { padding: 120px 28px 40px; }
      .hero-image { height: 360px; }
      .hero-badge { left: 16px; bottom: 16px; }
      .hero-actions { flex-wrap: wrap; gap: 12px; }
      .conditions { padding: 60px 24px; }
      .conditions-grid { grid-template-columns: 1fr; }
      .why { grid-template-columns: 1fr; }
      .why-image { height: 280px; }
      .why-content { padding: 48px 24px; }
      .about { grid-template-columns: 1fr; padding: 60px 24px; gap: 36px; }
      .testimonials { padding: 60px 24px; }
      .testi-grid { grid-template-columns: 1fr; }
      .booking { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
      .contact-strip { padding: 48px 24px; flex-direction: column; align-items: flex-start; gap: 28px; }
      .contact-details { flex-direction: column; gap: 20px; }
    }
    @media (max-width: 560px) {
      .hero-text { padding: 110px 20px 36px; }
      .hero-image { height: 240px; }
      .hero-desc { font-size: 14px; }
      .conditions { padding: 48px 20px; }
      .why-content { padding: 40px 20px; }
      .about { padding: 48px 20px; }
      .testimonials { padding: 48px 20px; }
      .booking { padding: 48px 20px; }
      .contact-strip { padding: 40px 20px; }
      .booking-form { padding: 28px 20px; }
      .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; text-align: center; justify-content: center; }
    }
    @media (max-width: 380px) {
      .hero-text { padding: 100px 16px 30px; }
      .conditions { padding: 40px 16px; }
      .about { padding: 40px 16px; }
      .booking { padding: 40px 16px; }
      .contact-strip { padding: 32px 16px; }
    }