
    :root {
      --primary: #0f766e;
      --primary-dark: #0a5f59;
      --green: #25d366;
      --green-dark: #159447;
      --soft: #f3faf8;
      --accent: #dff7f3;
      --white: #ffffff;
      --text: #17332f;
      --muted: #667b77;
      --border: #dcebe8;
      --shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
      --radius: 24px;
      --max-width: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.65;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button {
      font: inherit;
    }

    .container {
      width: min(calc(100% - 36px), var(--max-width));
      margin: 0 auto;
    }

    .section {
      padding: 88px 0;
    }

    .section-soft {
      background: var(--soft);
    }

    .eyebrow {
      margin-bottom: 10px;
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    h1, h2, h3 {
      line-height: 1.16;
    }

    h1 {
      max-width: 800px;
      font-size: clamp(2.55rem, 6vw, 5rem);
      letter-spacing: -0.05em;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3.15rem);
      letter-spacing: -0.035em;
    }

    h3 {
      font-size: 1.28rem;
    }

    p {
      color: var(--muted);
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 38px;
    }

    .section-heading p {
      margin-top: 14px;
      font-size: 1.05rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      transition: 0.2s ease;
    }

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

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

    .btn-primary:hover {
      background: var(--primary-dark);
    }

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

    .btn-whatsapp {
      color: var(--white);
      background: var(--green);
    }

    .btn-whatsapp:hover {
      background: var(--green-dark);
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(220, 235, 232, 0.9);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--primary);
      font-size: 1.2rem;
      font-weight: 900;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      background: var(--accent);
      font-size: 1.4rem;
    }

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

    .desktop-nav a {
      color: #304d48;
      font-size: 0.94rem;
      font-weight: 800;
    }

    .desktop-nav a:hover {
      color: var(--primary);
    }

    .header-actions {
      display: flex;
      gap: 9px;
    }

    .header-actions .btn {
      min-height: 44px;
      padding: 0 16px;
      font-size: 0.88rem;
    }

    .menu-toggle {
      width: 46px;
      height: 46px;
      display: none;
      place-items: center;
      border: 0;
      border-radius: 14px;
      color: var(--primary);
      background: var(--accent);
      cursor: pointer;
      font-size: 1.5rem;
    }

    .mobile-menu {
      display: none;
      max-height: calc(100vh - 78px);
      overflow-y: auto;
      border-top: 1px solid var(--border);
      background: var(--white);
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 15px 18px;
      border-bottom: 1px solid var(--border);
      font-weight: 800;
    }

    .mobile-menu-actions {
      display: grid;
      gap: 10px;
      padding: 16px 18px 22px;
    }

    /* HERO */
    .hero {
      padding: 70px 0 42px;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(223, 247, 243, 0.95), transparent 36%),
        linear-gradient(180deg, #fff 0%, #f8fcfb 100%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 52px;
    }

    .hero-copy > p {
      max-width: 690px;
      margin: 24px 0 30px;
      font-size: 1.12rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
      margin-bottom: 26px;
    }

    .hero-points {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: #42615b;
      font-size: 0.93rem;
      font-weight: 800;
    }

    .hero-visual {
      min-height: 520px;
      position: relative;
      display: grid;
      place-items: center;
      padding: 24px;
      border: 1px solid var(--border);
      border-radius: 34px;
      background: linear-gradient(135deg, #dff7f3, #eefaf8);
      box-shadow: var(--shadow);
    }

    .hero-image {
      width: 100%;
      height: 100%;
      min-height: 470px;
      object-fit: cover;
      border-radius: 26px;
    }

    .hero-badge {
      position: absolute;
      left: 24px;
      bottom: 24px;
      padding: 16px 18px;
      border-radius: 18px;
      color: var(--primary);
      background: var(--white);
      box-shadow: var(--shadow);
      font-weight: 900;
    }

    /* TRUST */
    .trust-strip {
      padding: 22px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .trust-item {
      padding: 12px;
      color: #36564f;
      text-align: center;
      font-weight: 900;
    }

    /* CARDS */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .card {
      padding: 28px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: 0 8px 24px rgba(25, 74, 66, 0.05);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 16px;
      color: var(--primary);
      background: var(--accent);
      font-size: 1.4rem;
    }

    .card p {
      margin-top: 10px;
    }

    /* BRANCHES */
    .branch-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .branch-card {
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .branch-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-bottom: 1px solid var(--border);
    }

    .branch-content {
      padding: 28px;
    }

    .branch-meta {
      display: grid;
      gap: 9px;
      margin: 18px 0 22px;
      color: #47655f;
    }

    .branch-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .branch-actions .btn {
      flex: 1 1 150px;
    }

    /* GALLERY */
    .gallery-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr;
      grid-auto-rows: 230px;
      gap: 16px;
    }

    .gallery-item {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 22px;
    }

    .gallery-item:first-child {
      grid-row: span 2;
    }

    /* DOCTORS */
    .doctor-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      max-width: 850px;
      margin: 0 auto;
    }

    .doctor-photo {
      aspect-ratio: 4 / 5;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 20px;
      color: var(--primary);
      background: linear-gradient(135deg, #dff7f3, #eefaf8);
      font-size: clamp(5rem, 10vw, 8rem);
      box-shadow: inset 0 0 0 1px var(--border);
    }

    /* REVIEWS */
    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .stars {
      margin-bottom: 12px;
      color: #f2b800;
      letter-spacing: 2px;
    }

    /* SEO TEXT */
    .seo-box {
      padding: 36px;
      border: 1px solid var(--border);
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .seo-box p + p {
      margin-top: 14px;
    }

    /* FAQ */
    .faq-list {
      display: grid;
      gap: 14px;
    }

    details {
      padding: 0 20px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--white);
    }

    summary {
      padding: 20px 0;
      color: #294842;
      cursor: pointer;
      font-weight: 900;
    }

    details p {
      padding: 0 0 20px;
    }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
    }

    .contact-box {
      padding: 34px;
      border-radius: 28px;
      color: var(--white);
      background: var(--primary);
    }

    .contact-box p {
      margin: 14px 0 24px;
      color: rgba(255, 255, 255, 0.82);
    }

    .contact-actions {
      display: grid;
      gap: 10px;
    }

    .location-panel {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .location-card {
      padding: 26px;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .location-card p {
      margin: 12px 0 18px;
    }

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

    /* FOOTER */
    .site-footer {
      padding: 54px 0 96px;
      color: var(--white);
      background: #102c27;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 30px;
    }

    .site-footer p,
    .site-footer a {
      color: rgba(255, 255, 255, 0.72);
    }

    .footer-links {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.9rem;
    }

    /* WHATSAPP */
    .whatsapp-float {
      position: fixed;
      right: 18px;
      bottom: 24px;
      z-index: 1002;
    }

    .whatsapp-main {
      width: 60px;
      height: 60px;
      display: grid;
      place-items: center;
      border: 0;
      border-radius: 50%;
      color: var(--white);
      background: var(--green);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      font-size: 1.55rem;
    }

    .whatsapp-options {
      width: 230px;
      position: absolute;
      right: 0;
      bottom: 72px;
      display: none;
      gap: 10px;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 18px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .whatsapp-options.open {
      display: grid;
    }

    .whatsapp-options a {
      padding: 13px 14px;
      border-radius: 12px;
      color: var(--primary);
      background: var(--soft);
      font-weight: 900;
    }

    /* MOBILE STICKY */
    .mobile-bottom-bar {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 1001;
      grid-template-columns: repeat(2, 1fr);
      overflow: hidden;
      border: 1px solid var(--border);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.97);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .mobile-bottom-bar a {
      min-height: 60px;
      display: grid;
      place-items: center;
      padding: 6px;
      color: var(--primary);
      text-align: center;
      font-size: 0.8rem;
      font-weight: 900;
    }

    .mobile-bottom-bar a:first-child {
      border-right: 1px solid var(--border);
    }

    @media (max-width: 1080px) {
      .desktop-nav,
      .header-actions {
        display: none;
      }

      .menu-toggle {
        display: grid;
      }

      .hero-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .location-panel {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 48px;
      }

      .card-grid,
      .review-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .gallery-item:first-child {
        grid-column: span 2;
        grid-row: auto;
      }
    }

    @media (max-width: 720px) {
      body {
        padding-bottom: 88px;
      }

      .section {
        padding: 64px 0;
      }

      .hero-actions,
      .branch-actions {
        flex-direction: column;
      }

      /* WordPress tema stillerinin butonları büyütmesini engelle */
      .hero-actions .btn,
      .branch-actions .btn,
      .contact-actions .btn,
      .mobile-menu-actions .btn {
        width: 100% !important;
        min-height: 50px !important;
        height: auto !important;
        padding: 12px 16px !important;
        margin: 0 !important;
        line-height: 1.2 !important;
        font-size: 0.95rem !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
      }

      .branch-actions,
      .hero-actions,
      .contact-actions,
      .mobile-menu-actions {
        gap: 10px !important;
      }

      /* Mobilde masaüstünden kalan flex-basis yüksekliğini sıfırla */
      .branch-actions .btn,
      .hero-actions .btn,
      .contact-actions .btn,
      .mobile-menu-actions .btn {
        flex: 0 0 auto !important;
        min-height: 48px !important;
        height: 48px !important;
        max-height: 48px !important;
        padding: 0 16px !important;
        line-height: 48px !important;
        font-size: 0.95rem !important;
      }

      .btn,
      .branch-actions .btn {
        width: 100%;
      }

      .hero-visual {
        min-height: 360px;
      }

      .branch-grid,
      .card-grid,
      .doctor-grid,
      .review-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
      }

      .gallery-item:first-child {
        grid-column: auto;
      }

      .mobile-bottom-bar {
        display: grid;
      }

      .whatsapp-float {
        right: 16px;
        bottom: 90px;
      }
    }
  