/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 70px;
    }

    body {
      font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
      color: #2d3748;
      line-height: 1.6;
      background: #fff;
      -webkit-font-smoothing: antialiased;
    }

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

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

    ul {
      list-style: none;
    }

    /* ===== COLORS - Professional Medical Blue Palette ===== */
    :root {
      --primary: #002f6c; /* Deep Royal Blue */
      --primary-dark: #001d44; /* Near Black Navy */
      --primary-light: #b8c4f4; /* Soft Lavender Blue */
      --accent: #8898e8; /* Periwinkle Blue */
      --accent-light: rgba(136, 152, 232, 0.15);
      --text: #002f6c; 
      --text-light: #8898e8;
      --bg-light: #f4f5fa; /* Very Light Medical Grey */
      --white: #ffffff;
      --border: #b8c4f4;
      --shadow: 0 4px 12px rgba(0, 47, 108, 0.08);
      --shadow-lg: 0 12px 32px rgba(0, 47, 108, 0.12);
      --radius: 16px;
    }

    /* ===== UTILITY ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .section {
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 16px;
      font-size: 2.1rem;
      font-weight: 700;
      color: var(--text);
    }

    .section-subtitle {
      text-align: center;
      margin-bottom: 52px;
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 580px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }

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

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .btn-accent {
      background: var(--accent);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(94, 80, 63, 0.2);
    }

    .btn-accent:hover {
      background: var(--primary);
      transform: translateY(-2px);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255, 255, 255, 0.6);
    }

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

    .btn-outline-dark {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }

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

    /* ===== HEADER / NAV ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
    }

    header.scrolled {
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      height: 70px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .logo {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.3px;
    }

    .logo span {
      color: var(--accent);
    }

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

    .nav-links a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text);
      position: relative;
      transition: color 0.3s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s;
    }

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

    .nav-cta {
      padding: 10px 24px;
      font-size: 0.88rem;
      color: var(--white) !important;
    }

    .nav-cta:hover {
      color: var(--white) !important;
      background: var(--primary-dark);
    }

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

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

    .hamburger span {
      width: 24px;
      height: 2px;
      background: var(--text);
      transition: all 0.3s;
      border-radius: 2px;
    }

    /* ===== HERO ===== */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 70px;
      /* background uses the jet black / pure sophistication darker combo */
      background: var(--primary-dark);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('img/hero-bg.jpg') center/cover no-repeat;
      opacity: 0.3;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

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

    .hero-image-wrap {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-image-frame {
      width: 100%;
      height: 520px;
      border-radius: 40px;
      overflow: hidden;
      border: 8px solid rgba(255, 255, 255, 0.1);
      box-shadow: var(--shadow-lg);
      position: relative;
      z-index: 1;
      transform: perspective(1000px) rotateY(-5deg);
      transition: transform 0.5s ease;
    }

    .hero-image-frame:hover {
      transform: perspective(1000px) rotateY(0deg);
    }

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

    /* Decorative badge on image */
    .hero-img-badge {
      position: absolute;
      bottom: 40px;
      left: -20px;
      background: var(--white);
      padding: 16px 24px;
      border-radius: 16px;
      box-shadow: var(--shadow-lg);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 12px;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-10px); }
    }

    .badge-icon {
      font-size: 1.5rem;
      color: #FFD700;
    }

    .badge-text {
      font-weight: 700;
      color: var(--primary);
      font-size: 0.9rem;
    }

    @media (max-width: 992px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }
      .hero-text {
        max-width: 100%;
        margin: 0 auto;
      }
      .hero-image-frame {
        height: 400px;
        max-width: 320px;
        transform: none;
      }
      .hero-image-frame:hover {
        transform: none;
      }
      .hero-img-badge {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
      }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(201, 162, 39, 0.15);
      border: 1px solid rgba(201, 162, 39, 0.3);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .hero-text h1 {
      font-size: 3.2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .hero-text h1 em {
      font-style: normal;
      color: var(--accent);
    }

    .hero-text p {
      font-size: 1.12rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 32px;
      line-height: 1.75;
    }

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

    .hero-stats {
      display: flex;
      gap: 48px;
      margin-top: 52px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-stat h3 {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
    }

    .hero-stat p {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 4px;
    }

    /* ===== SERVICES ===== */
    #hizmetler {
      background: var(--bg-light);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px 26px;
      transition: all 0.35s ease;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
    }
    .service-icon svg { stroke: var(--white); }

    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text);
    }

    .service-card p {
      font-size: 0.93rem;
      color: var(--text-light);
      line-height: 1.7;
      flex: 1;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--primary);
      transition: gap 0.3s;
    }

    .service-link:hover {
      gap: 10px;
      color: var(--accent);
    }

    .service-link svg {
      transition: transform 0.3s;
    }

    .service-link:hover svg {
      transform: translateX(2px);
    }

    /* ===== ABOUT ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
    }

    .about-image-badge {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--primary);
      color: var(--white);
      padding: 12px 20px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 0.95rem;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .about-image-badge span {
      color: var(--accent);
      display: block;
      font-size: 1.4rem;
    }

    .about-text h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .about-text h2 em {
      font-style: normal;
      color: var(--primary);
    }

    .about-text p {
      color: var(--text-light);
      margin-bottom: 16px;
      line-height: 1.8;
    }

    .about-features {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 24px;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      color: var(--text);
      font-size: 0.95rem;
    }

    .about-feature .check {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: var(--accent-light);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      flex-shrink: 0;
      font-weight: 700;
    }

    /* ===== GALLERY STRIP ===== */
    .gallery-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      overflow: hidden;
    }

    .gallery-strip img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      transition: transform 0.5s ease, filter 0.5s;
      filter: brightness(0.85);
    }

    .gallery-strip img:hover {
      transform: scale(1.05);
      filter: brightness(1);
    }

    /* ===== WHY US ===== */
    #neden-biz {
      background: var(--bg-light);
    }

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

    .why-card {
      text-align: center;
      padding: 32px 20px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: all 0.3s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
    }

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
    }
    .why-icon svg { stroke: var(--white); }

    .why-card h3 {
      font-size: 1.02rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid var(--border);
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      box-shadow: var(--shadow);
    }

    .testimonial-stars {
      color: var(--accent);
      font-size: 0.95rem;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }

    .testimonial-card>p {
      font-size: 0.93rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }

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

    .testimonial-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 0.93rem;
    }

    .testimonial-date {
      font-size: 0.8rem;
      color: var(--text-light);
    }

    /* ===== FAQ ===== */
    #sss {
      background: var(--bg-light);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border-radius: var(--radius);
      margin-bottom: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.3s;
    }

    .faq-item.active {
      border-color: var(--primary);
      box-shadow: var(--shadow);
    }

    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--text);
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      font-family: inherit;
    }

    .faq-question:hover {
      color: var(--primary);
    }

    .faq-arrow {
      font-size: 1.1rem;
      transition: transform 0.3s;
      color: var(--accent);
      flex-shrink: 0;
      margin-left: 16px;
    }

    .faq-item.active .faq-arrow {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }

    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 0.93rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      /* Deep royal blue transitions to navy */
      background: linear-gradient(135deg, rgba(0, 47, 108, 0.96) 0%, rgba(0, 29, 68, 0.94) 100%);
      z-index: 1;
    }

    /* ===== CTA BANNER ===== */
    .cta-banner {
      background: linear-gradient(135deg, rgba(0, 47, 108, 0.94) 0%, rgba(0, 29, 68, 1) 100%);
      padding: 64px 0;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2h2v6h-2zm0-7V8H0V6h20V0h2v13.5h-2zM0 20h2v20H0V20z'/%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-banner .container {
      position: relative;
      z-index: 1;
    }

    .cta-banner h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .cta-banner p {
      font-size: 1.05rem;
      opacity: 0.8;
      margin-bottom: 28px;
    }

    .cta-banner .btn {
      font-size: 1.02rem;
      padding: 16px 36px;
    }

    /* ===== CONTACT ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .contact-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-item h4 {
      font-size: 0.98rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .contact-item p {
      font-size: 0.93rem;
      color: var(--text-light);
    }

    .contact-item a {
      color: var(--primary);
      font-weight: 500;
    }

    .contact-item a:hover {
      color: var(--accent);
    }

    .contact-map {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      min-height: 360px;
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 360px;
      border: 0;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--primary-dark);
      color: rgba(255, 255, 255, 0.85);
      padding: 52px 0 24px;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand .logo {
      font-size: 1.25rem;
      margin-bottom: 12px;
      display: block;
      color: var(--white);
    }

    .footer-brand .logo span {
      color: var(--accent);
    }

    .footer-brand p {
      font-size: 0.88rem;
      max-width: 300px;
      line-height: 1.7;
    }

    .footer-links h4 {
      color: var(--white);
      font-size: 0.92rem;
      margin-bottom: 16px;
      font-weight: 600;
    }

    .footer-links a {
      display: block;
      font-size: 0.88rem;
      margin-bottom: 10px;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.35);
    }

    /* ===== WHATSAPP & PHONE FABs ===== */
    .fab-group {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .fab {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }

    .fab:hover {
      transform: scale(1.1);
    }

    .fab-whatsapp {
      background: #25d366;
    }

    .fab-whatsapp:hover {
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }

    .fab-phone {
      background: var(--primary);
      animation: fabRing 2s infinite;
    }

    @keyframes fabRing {

      0%,
      100% {
        box-shadow: 0 4px 16px rgba(33, 33, 69, 0.3);
      }

      50% {
        box-shadow: 0 4px 28px rgba(33, 33, 69, 0.5);
      }
    }

    /* ===== MODAL ===== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .modal-overlay.active {
      display: flex;
    }

    .modal {
      background: var(--white);
      border-radius: 18px;
      padding: 40px;
      max-width: 440px;
      width: 100%;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      animation: modalIn 0.3s ease;
    }

    @keyframes modalIn {
      from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--bg-light);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--text-light);
      transition: all 0.2s;
    }

    .modal-close:hover {
      background: #fee2e2;
      color: #dc2626;
    }

    .modal h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text);
    }

    .modal>p {
      font-size: 0.93rem;
      color: var(--text-light);
      margin-bottom: 24px;
    }

    .modal-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .modal-form input,
    .modal-form textarea {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-size: 0.95rem;
      font-family: inherit;
      transition: border-color 0.3s;
      background: var(--bg-light);
    }

    .modal-form input:focus,
    .modal-form textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: var(--white);
    }

    .modal-form textarea {
      resize: vertical;
      min-height: 80px;
    }

    .modal-form .btn {
      width: 100%;
      justify-content: center;
      padding: 15px;
      font-size: 1rem;
    }

    .modal-form .btn-whatsapp {
      background: #25d366;
      color: white;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .modal-form .btn-whatsapp:hover {
      background: #1fb855;
      transform: translateY(-1px);
    }

    .modal-or {
      text-align: center;
      color: var(--text-light);
      font-size: 0.85rem;
      position: relative;
    }

    .modal-or::before,
    .modal-or::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 40%;
      height: 1px;
      background: var(--border);
    }

    .modal-or::before {
      left: 0;
    }

    .modal-or::after {
      right: 0;
    }

    .modal-phone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px;
      background: var(--primary-light);
      border-radius: 10px;
      color: var(--primary);
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.3s;
    }

    .modal-phone:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* ===== ANIMATIONS ===== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

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

      .hero-text h1 {
        font-size: 2.5rem;
      }

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

      .gallery-strip img {
        height: 200px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        gap: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      }

      .hamburger {
        display: flex;
      }

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

      .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
      }

      .hero-stat h3 {
        font-size: 1.5rem;
      }

      .section {
        padding: 60px 0;
      }

      .section-title {
        font-size: 1.6rem;
      }

      .services-grid,
      .why-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

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

      .footer-top {
        flex-direction: column;
      }

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

      .hero-buttons .btn {
        text-align: center;
        justify-content: center;
      }

      .cta-banner h2 {
        font-size: 1.5rem;
      }

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

      .gallery-strip img {
        height: 160px;
      }
    }
  
/* ===== INNER PAGES ===== */
.inner-hero {
  background: var(--primary-dark);
  padding: 100px 0 60px;
  color: var(--white);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.inner-hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}
.inner-hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
}
.service-content {
  padding: 60px 0;
}
.service-content-img {
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius);
  margin: 0 auto 40px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.service-article {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.service-article h2, .service-article h3 {
  color: var(--primary);
  margin-top: 30px;
  margin-bottom: 15px;
}
    /* ===== ADDED FEATURES (AVANTAJLAR VE SSS) ===== */
    .features-section {
      padding: 60px 0;
      background: var(--bg-light);
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .feature-card {
      background: var(--white);
      padding: 30px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      position: relative;
    }
    .feature-card:hover {
      box-shadow: var(--shadow);
      transform: translateY(-4px);
      border-color: var(--primary-light);
    }
    .feature-icon-wrapper {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--accent-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
      margin-bottom: 20px;
    }
    .feature-card h3 {
      font-size: 1.15rem;
      margin-bottom: 12px;
      color: var(--text);
    }
    .feature-card p {
      font-size: 0.95rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    .faq-section {
      padding: 80px 0;
    }
    .faq-wrapper {
      max-width: 800px;
      margin: 40px auto 0;
    }

    /* ===== SERVICE LAYOUT W/ SIDEBAR ===== */
    .service-layout {
      display: grid;
      grid-template-columns: 2.5fr 1fr;
      gap: 50px;
    }
    .service-sidebar {
      background: var(--bg-light);
      padding: 30px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      height: fit-content;
      position: sticky;
      top: 100px;
    }
    .service-sidebar h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--primary-light);
      color: var(--primary-dark);
    }
    .service-sidebar ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .service-sidebar a {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px;
      border-radius: 8px;
      background: var(--white);
      color: var(--text);
      font-weight: 500;
      transition: all 0.3s;
      border: 1px solid var(--border);
    }
    .service-sidebar a:hover,
    .service-sidebar a.active {
      background: var(--primary-light);
      color: var(--white);
      border-color: var(--primary-light);
    }
    .service-sidebar a svg {
      transition: transform 0.3s;
    }
    .service-sidebar a:hover svg {
      transform: translateX(4px);
    }
    
    @media (max-width: 992px) {
      .service-layout {
        grid-template-columns: 1fr;
      }
      .service-sidebar {
        position: relative;
        top: 0;
      }
    }
    
    @media (max-width: 768px) {
      .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
      }
    }
    @media (max-width: 480px) {
      .features-grid {
        grid-template-columns: 1fr !important;
      }
    }

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: linear-gradient(180deg, #f4f5fa 0%, var(--bg-light) 100%);
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 47, 108, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.pricing-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(0, 47, 108, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.pricing-section .section-title {
  margin-bottom: 14px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: 18px;
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(33, 33, 69, 0.13);
  border-color: var(--primary-light);
}

/* Featured card */
.pricing-card-featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(33, 33, 69, 0.25);
  transform: translateY(-8px);
  z-index: 2;
}

.pricing-card-featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 24px 60px rgba(33, 33, 69, 0.32);
  border-color: var(--primary);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 214, 10, 0.4);
}

/* Card Icon */
.pricing-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0, 47, 108, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.pricing-card-featured .pricing-card-icon {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

/* Card Text */
.pricing-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pricing-card-featured .pricing-card-name {
  color: var(--white);
}

.pricing-card-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
  min-height: 42px;
}

.pricing-card-featured .pricing-card-desc {
  color: rgba(255, 255, 255, 0.68);
}

/* Price */
.pricing-card-price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card-featured .price-amount {
  color: var(--accent);
}

.price-note {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  background: rgba(0, 47, 108, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Divider line between price and features */
.pricing-features {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-bottom: 24px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-card-featured .pricing-features {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

.pricing-card-featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 47, 108, 0.12);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.pricing-card-featured .feature-check {
  background: rgba(255, 214, 10, 0.2);
  color: var(--accent);
}

/* Buttons */
.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 0.93rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: auto;
}

.pricing-btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.pricing-btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 33, 69, 0.2);
}

.pricing-btn-primary {
  background: var(--accent);
  color: #1a1a1a;
  border: 2px solid transparent;
}

.pricing-btn-primary:hover {
  background: #ffe033;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 10, 0.4);
}

/* Pricing note */
.pricing-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.pricing-note a:hover {
  color: var(--primary-light);
}

/* Section Title Enhancement */
.section-title em {
  font-style: normal;
  color: var(--primary-light);
}

/* Service & card hover improvement */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
  transform: scaleX(0);
  transition: transform 0.35s ease;
  border-radius: 0 0 var(--radius) var(--radius);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* ===== PRICING RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card-featured {
    transform: none;
  }
  .pricing-card-featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 600px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card-featured {
    order: -1;
  }
}

/* ===== BEFORE/AFTER GALLERY ===== */
.before-after-section {
  background: var(--white);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ba-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid var(--border);
}

.ba-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  background: #111;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-after {
  clip-path: inset(0 50% 0 0);
  transition: none;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  pointer-events: none;
}

.ba-label-before {
  left: 12px;
  background: rgba(0,0,0,0.55);
  color: #fff;
}

.ba-label-after {
  right: 12px;
  background: var(--primary);
  color: #fff;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: all;
  cursor: col-resize;
  z-index: 10;
  width: 40px;
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}

.ba-handle-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.ba-handle:hover .ba-handle-circle {
  transform: scale(1.15);
  background: var(--accent);
  color: #1a1a1a;
}

.ba-card-info {
  padding: 20px 24px;
  background: var(--white);
}

.ba-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ba-card-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ===== BLOG IMPROVEMENTS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: 18px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: inherit;
  text-decoration: none;
  display: block;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.blog-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.blog-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-light);
  transition: gap 0.3s;
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BLOG DETAIL PAGE ===== */
.blog-detail-hero {
  padding-top: 70px;
  position: relative;
  background: var(--primary-dark);
  overflow: hidden;
}

.blog-detail-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  opacity: 0.45;
}

.blog-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(29,30,61,0.55) 0%, rgba(29,30,61,0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.blog-detail-hero-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.blog-detail-category-badge {
  display: inline-block;
  background: var(--accent);
  color: #1a1a2e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.blog-detail-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  flex-wrap: wrap;
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-detail-meta svg {
  flex-shrink: 0;
}

/* Breadcrumb */
.blog-breadcrumb {
  padding: 16px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}

.blog-breadcrumb nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-light);
  height: auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-breadcrumb a {
  color: var(--primary-light);
  font-weight: 500;
  transition: color 0.2s;
}

.blog-breadcrumb a:hover {
  color: var(--primary);
}

.blog-breadcrumb .sep {
  color: var(--border);
}

/* Article Layout */
.blog-article-section {
  padding: 60px 0 80px;
  background: var(--bg-light);
}

.blog-article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-article {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 52px 60px;
}

.blog-article h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 16px;
  line-height: 1.3;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
}

.blog-article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 12px;
}

.blog-article p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3d4455;
  margin-bottom: 20px;
}

.blog-article ul,
.blog-article ol {
  margin: 18px 0 24px 22px;
}

.blog-article ul li,
.blog-article ol li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3d4455;
  margin-bottom: 10px;
  list-style: disc;
}

.blog-article ol li {
  list-style: decimal;
}

.blog-article img {
  width: 100%;
  border-radius: 12px;
  margin: 28px 0;
  box-shadow: var(--shadow);
}

/* Info Box */
.blog-info-box {
  background: linear-gradient(135deg, #eef6ff 0%, #e8f4ff 100%);
  border: 1px solid #b3d6f7;
  border-left: 4px solid var(--primary-light);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
}

.blog-info-box p {
  margin: 0;
  font-size: 0.97rem;
  color: #2a4a6b;
}

.blog-info-box strong {
  display: block;
  font-size: 0.88rem;
  color: var(--primary-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* Warning/tip box */
.blog-tip-box {
  background: linear-gradient(135deg, #fffbeb 0%, #fef9e0 100%);
  border: 1px solid #fcd34d;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 28px 0;
}

.blog-tip-box p {
  margin: 0;
  font-size: 0.97rem;
  color: #7c5a00;
}

.blog-tip-box strong {
  display: block;
  font-size: 0.88rem;
  color: #9a6d00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* Quote */
.blog-quote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--primary);
  border-radius: 14px;
  position: relative;
}

.blog-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 5rem;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
}

.blog-quote p {
  color: var(--white);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.75;
  padding-left: 8px;
  margin: 0;
}

/* Key Points Grid */
.blog-key-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.blog-key-point {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.blog-key-point-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.blog-key-point p {
  font-size: 0.92rem;
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

/* CTA Block within article */
.blog-article-cta {
  margin-top: 44px;
  padding: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 16px;
  text-align: center;
}

.blog-article-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.blog-article-cta p {
  color: rgba(255,255,255,0.75);
  margin: 0 0 24px;
  font-size: 0.97rem;
}

/* Prev/Next Navigation */
.blog-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 820px;
  margin: 36px auto 0;
  padding: 0 20px;
}

.blog-post-nav-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.blog-post-nav-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.blog-post-nav-item.next {
  text-align: right;
}

.blog-post-nav-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post-nav-item.next .blog-post-nav-label {
  justify-content: flex-end;
}

.blog-post-nav-title {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-nav-category {
  font-size: 0.78rem;
  color: var(--primary-light);
  font-weight: 600;
}

@media (max-width: 768px) {
  .blog-detail-hero-img {
    height: 300px;
  }

  .blog-detail-hero-content h1 {
    font-size: 1.6rem;
  }

  .blog-article {
    padding: 30px 22px;
  }

  .blog-article h2 {
    font-size: 1.25rem;
  }

  .blog-key-points {
    grid-template-columns: 1fr;
  }

  .blog-post-nav {
    grid-template-columns: 1fr;
  }

  .blog-post-nav-item.next {
    text-align: left;
  }

  .blog-post-nav-item.next .blog-post-nav-label {
    justify-content: flex-start;
  }
}
