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

    :root {
      --ivory: #F5F0E8;
      --ivory-2: #EDE8DC;
      --anthracite: #2C2C2C;
      --anthracite-light: #3D3D3D;
      --ice: #4A9EBF;
      --ice-light: #6BB8D4;
      --ice-dark: #357A96;
      --white: #FFFFFF;
      --text-dark: #1A1A1A;
      --text-mid: #555555;
      --text-light: #888888;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
      --radius: 14px;
      --radius-sm: 8px;
    }

    [data-theme="dark"] {
      --ivory: #121212;
      --ivory-2: #1E1E1E;
      --anthracite: #E0E0E0;
      --anthracite-light: #BDBDBD;
      --white: #1A1A1A;
      --text-dark: #F5F5F5;
      --text-mid: #AAAAAA;
      --text-light: #777777;
      --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
      --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    }
    
    [data-theme="dark"] nav {
      background: rgba(18, 18, 18, 0.92);
      border-bottom: 1px solid rgba(74, 158, 191, 0.15);
    }

    [data-theme="dark"] .logo-marquee {
      background: var(--ivory-2);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    [data-theme="dark"] .marquee-track img, [data-theme="dark"] .brand-card img {
      filter: brightness(0) invert(1) opacity(0.7);
    }

    [data-theme="dark"] .marquee-track img:hover, [data-theme="dark"] .brand-card:hover img {
      filter: brightness(0) invert(1) opacity(1);
    }

    [data-theme="dark"] .hamburger span {
      background: var(--text-dark);
    }

    [data-theme="dark"] #hero {
      background: linear-gradient(160deg, rgba(74, 158, 191, 0.07) 0%, rgba(18, 18, 18, 0.4) 60%), var(--ivory);
    }
    
    [data-theme="dark"] .btn-secondary {
      color: var(--text-dark);
      border-color: var(--text-dark);
    }

    [data-theme="dark"] .btn-secondary:hover {
      background: var(--text-dark);
      color: var(--ivory);
    }
    
    [data-theme="dark"] .mobile-menu {
      background: var(--ivory);
      border-bottom: 2px solid var(--ice);
    }
    
    [data-theme="dark"] .mobile-menu a {
      color: var(--text-dark);
      border-bottom: 1px solid var(--ivory-2);
    }

    [data-theme="dark"] footer,
    [data-theme="dark"] #isyeri {
      background: #0A0A0A;
    }

    [data-theme="dark"] .original-banner,
    [data-theme="dark"] .service-area-info {
      background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    }

    [data-theme="dark"] .hero-image-card {
      background: #0A0A0A;
    }

    .dark-mode-toggle {
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--ivory);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ───────── NAVBAR ───────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(245, 240, 232, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(74, 158, 191, 0.15);
      padding: 0 5%;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: box-shadow .3s;
    }

    nav.scrolled {
      box-shadow: var(--shadow);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--ice), var(--ice-dark));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
    }

    .nav-logo-text {
      line-height: 1.2;
    }

    .nav-logo-text span:first-child {
      display: block;
      font-weight: 800;
      font-size: 17px;
      color: var(--anthracite);
      letter-spacing: -.3px;
    }

    .nav-logo-text span:last-child {
      display: block;
      font-size: 11px;
      color: var(--ice);
      font-weight: 500;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      color: var(--anthracite-light);
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--ice);
    }

    .nav-cta {
      background: var(--ice);
      color: white !important;
      padding: 9px 20px;
      border-radius: 50px;
      font-weight: 600 !important;
      font-size: 14px !important;
      transition: background .2s, transform .15s !important;
    }

    .nav-cta:hover {
      background: var(--ice-dark) !important;
      transform: translateY(-1px);
    }

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

    .hamburger span {
      display: block;
      width: 25px;
      height: 2px;
      background: var(--anthracite);
      border-radius: 2px;
      transition: .3s;
    }

    .mobile-nav-actions {
      display: none;
      align-items: center;
      gap: 16px;
    }
    .mobile-dark-toggle {
      color: var(--anthracite);
      font-size: 22px;
      text-decoration: none;
      display: flex;
      align-items: center;
    }

    /* ───────── MOBILE MENU ───────── */
    .mobile-menu {
      display: none;
      position: fixed;
      top: 120px;
      left: 0;
      right: 0;
      background: var(--ivory);
      border-bottom: 2px solid var(--ice);
      z-index: 999;
      padding: 24px 5%;
      flex-direction: column;
      gap: 20px;
    }

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

    .mobile-menu a {
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      color: var(--anthracite);
      padding: 8px 0;
      border-bottom: 1px solid var(--ivory-2);
    }

    /* ───────── KAYAN LOGO BANDI ───────── */
    .logo-marquee {
      position: fixed;
      top: 72px;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--white);
      border-bottom: 1px solid var(--ivory-2);
      overflow: hidden;
      height: 48px;
      display: flex;
      align-items: center;
    }

    .marquee-track {
      display: flex;
      align-items: center;
      gap: 48px;
      animation: marquee-scroll 25s linear infinite;
      white-space: nowrap;
      will-change: transform;
    }

    .marquee-track img {
      height: 30px;
      width: auto;
      object-fit: contain;
      filter: grayscale(40%) opacity(0.7);
      transition: filter .3s;
      flex-shrink: 0;
    }

    .marquee-track img:hover {
      filter: grayscale(0%) opacity(1);
    }

    /* Logo boyut ayarları */
    .marquee-track img[alt="Profilo"] {
      height: 20px;
    }

    .marquee-track img[alt="Samsung"] {
      height: 55px;
    }

    .marquee-track img[alt="SEG"],
    .marquee-track img[alt="Siemens"] {
      height: 38px;
    }

    .brand-card img[alt="Profilo"] {
      max-height: 32px;
    }

    .brand-card img[alt="Samsung"] {
      max-height: 68px;
    }

    .brand-card img[alt="SEG"],
    .brand-card img[alt="Siemens"] {
      max-height: 60px;
    }

    @keyframes marquee-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ───────── HERO ───────── */
    #hero {
      min-height: 100vh;
      padding-top: 120px;
      background:
        linear-gradient(160deg, rgba(74, 158, 191, 0.07) 0%, rgba(44, 44, 44, 0.04) 60%),
        var(--ivory);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-bg-pattern {
      position: absolute;
      right: -100px;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(74, 158, 191, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-inner {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 5%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(74, 158, 191, 0.12);
      border: 1px solid rgba(74, 158, 191, 0.3);
      color: var(--ice-dark);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 20px;
      letter-spacing: .3px;
    }

    .hero-title {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.15;
      color: var(--anthracite);
      margin-bottom: 16px;
    }

    .hero-title .accent {
      color: var(--ice);
    }

    .hero-slogan {
      font-size: 16px;
      font-weight: 400;
      color: var(--text-mid);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 460px;
    }

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

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--ice);
      color: white;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(74, 158, 191, 0.35);
    }

    .btn-primary:hover {
      background: var(--ice-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(74, 158, 191, 0.45);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--anthracite);
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      border: 2px solid var(--anthracite);
      transition: all .2s;
    }

    .btn-secondary:hover {
      background: var(--anthracite);
      color: white;
    }

    .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #25D366;
      color: white;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      border: 2px solid #25D366;
      transition: all .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    }

    .btn-whatsapp:hover {
      background: #1DA851;
      border-color: #1DA851;
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
      color: white;
    }

    /* Hero Stats */
    .hero-stats {
      display: flex;
      gap: 32px;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid var(--ivory-2);
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 28px;
      font-weight: 800;
      color: var(--ice);
      line-height: 1;
    }

    .stat-label {
      font-size: 12px;
      color: var(--text-light);
      font-weight: 500;
      margin-top: 4px;
    }

    /* Hero Image */
    .hero-image-wrap {
      position: relative;
    }

    .hero-image-card {
      width: 100%;
      aspect-ratio: 4/3;
      background: var(--anthracite);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }

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

    .hero-image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      background: linear-gradient(to top, rgba(30, 30, 30, 0.85), transparent);
      color: white;
    }

    .hero-image-overlay p {
      font-size: 13px;
      opacity: .8;
      margin-bottom: 4px;
    }

    .hero-image-overlay strong {
      font-size: 16px;
      font-weight: 700;
    }

    .hero-float-badge {
      position: absolute;
      top: -16px;
      right: -16px;
      background: var(--ice);
      color: white;
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      text-align: center;
      box-shadow: 0 4px 20px rgba(74, 158, 191, 0.5);
      line-height: 1.3;
      padding: 8px;
    }

    /* ───────── SECTION COMMON ───────── */
    section {
      padding: 100px 5%;
    }

    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .section-tag {
      display: inline-block;
      background: rgba(74, 158, 191, 0.12);
      color: var(--ice-dark);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 800;
      color: var(--anthracite);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-mid);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ───────── HİZMETLER ───────── */
    #hizmetler {
      background: var(--white);
    }

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

    .service-card {
      background: var(--ivory);
      border-radius: var(--radius);
      padding: 0;
      border: 1px solid var(--ivory-2);
      transition: transform .25s, box-shadow .25s, border-color .25s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--ice), var(--ice-light));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
      z-index: 10;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(74, 158, 191, 0.2);
    }

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

    .service-img-box {
      position: relative;
      width: 100%;
      height: 180px;
      overflow: hidden;
    }

    .service-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }

    .service-card:hover .service-img-box img {
      transform: scale(1.08);
    }

    .service-icon {
      position: absolute;
      top: 152px;
      left: 24px;
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--white);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      z-index: 5;
    }

    .service-content {
      padding: 36px 24px 28px 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .service-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--anthracite);
      margin-bottom: 12px;
    }

    .service-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .service-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-mid);
      font-weight: 500;
    }

    .service-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ice);
      flex-shrink: 0;
    }

    /* Orijinal parça banner */
    .original-banner {
      margin-top: 40px;
      background: linear-gradient(135deg, var(--anthracite), var(--anthracite-light));
      border-radius: var(--radius);
      padding: 28px 36px;
      display: flex;
      align-items: center;
      gap: 24px;
      color: white;
    }

    .original-banner-icon {
      width: 56px;
      height: 56px;
      background: rgba(74, 158, 191, 0.25);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      flex-shrink: 0;
      color: var(--ice-light);
    }

    .original-banner h4 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .original-banner p {
      font-size: 14px;
      opacity: .75;
      line-height: 1.6;
    }

    /* ───────── MARKALAR ───────── */
    #markalar {
      background: var(--ivory);
    }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 16px;
    }

    .brand-card {
      background: var(--white);
      border-radius: var(--radius-sm);
      padding: 20px 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--ivory-2);
      transition: transform .2s, box-shadow .2s, border-color .2s;
      height: 100px;
    }

    .brand-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(74, 158, 191, 0.3);
    }

    .brand-card img {
      max-width: 100%;
      max-height: 48px;
      object-fit: contain;
      filter: grayscale(30%);
      transition: filter .2s;
    }

    .brand-card:hover img {
      filter: grayscale(0%);
    }

    /* Placeholder text logo */
    .brand-text {
      font-size: 16px;
      font-weight: 800;
      color: var(--anthracite);
      letter-spacing: -.5px;
    }

    /* ───────── NEDEN BİZ ───────── */
    #neden-biz {
      background: var(--white);
    }

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

    .why-card {
      text-align: center;
      padding: 36px 24px;
      border-radius: var(--radius);
      border: 1px solid var(--ivory-2);
      background: var(--ivory);
      transition: transform .25s, box-shadow .25s;
    }

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

    .why-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ice), var(--ice-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      margin: 0 auto 20px;
      box-shadow: 0 6px 20px rgba(74, 158, 191, 0.3);
    }

    .why-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--anthracite);
      margin-bottom: 10px;
    }

    .why-desc {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* Köy servisi banner */
    .village-banner {
      margin-top: 48px;
      background: linear-gradient(135deg, rgba(74, 158, 191, 0.1), rgba(74, 158, 191, 0.04));
      border: 1px solid rgba(74, 158, 191, 0.25);
      border-radius: var(--radius);
      padding: 28px 36px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .village-banner i {
      font-size: 32px;
      color: var(--ice);
      flex-shrink: 0;
    }

    .village-banner h4 {
      font-size: 17px;
      font-weight: 700;
      color: var(--anthracite);
      margin-bottom: 6px;
    }

    .village-banner p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ───────── İŞ YERİ FOTOĞRAFI ───────── */
    #isyeri {
      background: var(--anthracite);
      padding: 80px 5%;
    }

    .workplace-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .workplace-text h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 800;
      color: white;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .workplace-text p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.65);
      line-height: 1.7;
      margin-bottom: 28px;
    }

    .workplace-features {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .workplace-feature {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 14px;
      font-weight: 500;
    }

    .workplace-feature i {
      color: var(--ice-light);
      font-size: 16px;
      width: 20px;
    }

    .workplace-photo {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 12px 50px rgba(0, 0, 0, 0.4);
      aspect-ratio: 9/10;
      background: var(--anthracite-light);
      position: relative;
    }

    .workplace-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .photo-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: rgba(255, 255, 255, 0.3);
    }

    .photo-placeholder i {
      font-size: 52px;
    }

    .photo-placeholder p {
      font-size: 14px;
      font-weight: 500;
    }

    /* ───────── KONVERSİYON BANDI ───────── */
    .cta-band {
      background: linear-gradient(135deg, var(--ice-dark), var(--ice));
      padding: 56px 5%;
      text-align: center;
    }

    .cta-band h2 {
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 800;
      color: white;
      margin-bottom: 12px;
    }

    .cta-band p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      margin-bottom: 32px;
    }

    .cta-band-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn-white {
      background: white;
      color: var(--ice-dark);
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: transform .2s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
    }

    .btn-outline-white {
      background: transparent;
      color: white;
      text-decoration: none;
      padding: 13px 32px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      transition: all .2s;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: white;
    }

    /* ───────── İLETİŞİM & HARİTA ───────── */
    #iletisim {
      background: var(--ivory);
    }

    .contact-grid {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

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

    .contact-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      border: 1px solid var(--ivory-2);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
      transition: box-shadow .25s, transform .25s;
    }

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

    .contact-card-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      flex-shrink: 0;
    }

    .contact-card-icon.phone  { background: var(--ice); }
    .contact-card-icon.wa     { background: #25D366; }
    .contact-card-icon.addr   { background: var(--anthracite); }

    .contact-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--anthracite);
      margin: 0;
    }

    .contact-card p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
      margin: 0;
    }

    .contact-card .contact-link {
      font-size: 15px;
      font-weight: 700;
      color: var(--ice);
      text-decoration: none;
      transition: color .2s;
    }

    .contact-card .contact-link:hover {
      color: var(--ice-dark);
    }

    .contact-card .contact-link.wa-link {
      color: #25D366;
    }

    .contact-card .contact-link.wa-link:hover {
      color: #1DA851;
    }

    .map-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--ivory-2);
    }

    .map-wrap iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
    }

    /* ───────── FOOTER ───────── */
    footer {
      background: var(--anthracite);
      color: white;
      padding: 60px 5% 32px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
      margin-top: 16px;
      max-width: 320px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--ice), var(--ice-dark));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .footer-logo-text span:first-child {
      display: block;
      font-weight: 800;
      font-size: 17px;
      color: white;
    }

    .footer-logo-text span:last-child {
      display: block;
      font-size: 11px;
      color: var(--ice-light);
      font-weight: 500;
      letter-spacing: .5px;
      text-transform: uppercase;
    }

    .footer-col h5 {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--ice-light);
      margin-bottom: 20px;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-col ul li {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-col ul li a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--ice-light);
    }

    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ───────── FLOATING BUTTONS ───────── */
    .float-btns {
      position: fixed;
      right: 24px;
      bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 998;
    }

    .float-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      transition: transform .2s, box-shadow .2s;
    }

    .float-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
    }

    .float-wa {
      background: #25D366;
      color: white;
    }

    .float-phone {
      background: var(--ice);
      color: white;
    }


    /* ───────── ÇALIŞMA SAATLERİ ───────── */
    #calisma-saatleri {
      background: var(--ivory);
    }

    .hours-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .hours-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 32px;
      border: 1px solid var(--ivory-2);
      text-align: center;
      transition: transform .25s, box-shadow .25s;
    }

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

    .hours-card.featured {
      border: 2px solid var(--ice);
      background: linear-gradient(135deg, var(--white), rgba(74, 158, 191, 0.05));
    }

    .hours-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ice), var(--ice-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: white;
      margin: 0 auto 20px;
    }

    .hours-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--anthracite);
      margin-bottom: 16px;
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid var(--ivory-2);
      font-size: 14px;
    }

    .hours-list li:last-child {
      border-bottom: none;
    }

    .hours-list .day {
      color: var(--text-mid);
      font-weight: 500;
    }

    .hours-list .time {
      color: var(--anthracite);
      font-weight: 600;
    }

    .hours-list .time.closed {
      color: #E74C3C;
    }

    .hours-badge {
      display: inline-block;
      background: rgba(74, 158, 191, 0.12);
      color: var(--ice-dark);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      margin-top: 16px;
    }

    /* ───────── SERVİS BÖLGESİ (KÖYLER) ───────── */
    #servis-bolgesi {
      background: var(--white);
    }

    .service-area-content {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 48px;
      align-items: start;
    }

    .service-area-info {
      background: linear-gradient(135deg, var(--anthracite), var(--anthracite-light));
      border-radius: var(--radius);
      padding: 36px;
      color: white;
    }

    .service-area-info h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .service-area-info p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
      margin-bottom: 24px;
    }

    .service-area-info .info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .service-area-info .info-item i {
      color: var(--ice-light);
      width: 20px;
    }

    .villages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 12px;
    }

    .village-item {
      background: var(--ivory);
      border: 1px solid var(--ivory-2);
      border-radius: var(--radius-sm);
      padding: 14px 16px;
      text-align: center;
      font-size: 14px;
      font-weight: 500;
      color: var(--anthracite);
      transition: all .2s;
    }

    .village-item:hover {
      background: var(--white);
      border-color: var(--ice);
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .village-item i {
      color: var(--ice);
      margin-right: 6px;
    }

    /* ───────── MÜŞTERİ YORUMLARI ───────── */
    #yorumlar {
      background: var(--ivory);
    }

    .testimonials-wrapper {
      position: relative;
      overflow: hidden;
      max-width: 780px;
      margin: 0 auto;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testimonial-card {
      min-width: 100%;
      padding: 0 4px;
      box-sizing: border-box;
    }

    .testimonial-inner {
      background: var(--white);
      border-radius: var(--radius);
      padding: 44px 48px;
      border: 1px solid var(--ivory-2);
      box-shadow: var(--shadow);
      position: relative;
      min-height: 240px;
    }

    .testimonial-inner::before {
      content: '"';
      position: absolute;
      top: 16px;
      left: 24px;
      font-size: 100px;
      color: var(--ice);
      opacity: 0.08;
      font-family: Georgia, serif;
      line-height: 1;
      pointer-events: none;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--ice), var(--ice-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      font-weight: 700;
      flex-shrink: 0;
    }

    .testimonial-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--anthracite);
      margin-bottom: 2px;
    }

    .testimonial-info .service-type {
      font-size: 13px;
      color: var(--ice);
      font-weight: 500;
    }

    .stars {
      color: #F1C40F;
      font-size: 14px;
      margin-bottom: 16px;
      display: flex;
      gap: 3px;
    }

    .testimonial-text {
      font-size: 15px;
      color: var(--text-mid);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testimonial-date {
      font-size: 12px;
      color: var(--text-light);
      display: block;
    }

    .testimonial-nav {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 28px;
    }

    .testimonial-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--ivory-2);
      cursor: pointer;
      transition: all 0.3s;
      border: 2px solid transparent;
    }

    .testimonial-dot.active {
      background: var(--ice);
      transform: scale(1.25);
    }

    .testimonial-arrows {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .testimonial-arrow {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--ivory-2);
      background: var(--white);
      color: var(--anthracite);
      font-size: 14px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }

    .testimonial-arrow:hover {
      border-color: var(--ice);
      color: var(--ice);
    }

    /* ───────── SSS ───────── */
    #sss {
      background: var(--white);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--ivory);
      border: 1px solid var(--ivory-2);
      border-radius: var(--radius);
      overflow: hidden;
    }

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

    .faq-question:hover {
      background: rgba(74, 158, 191, 0.05);
    }

    .faq-question i {
      color: var(--ice);
      transition: transform .3s;
    }

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

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

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 0 24px 20px;
    }

    .faq-answer p {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.7;
    }

    /* ───────── RESPONSIVE ───────── */
    @media (max-width: 900px) {
      .nav-links {
        display: none;
      }

      .mobile-nav-actions {
        display: flex;
      }
      
      .hamburger {
        display: flex;
      }

      .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
      }

      .hero-slogan {
        margin: 0 auto 36px;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .hero-float-badge {
        top: -10px;
        right: -10px;
        width: 70px;
        height: 70px;
        font-size: 10px;
      }

      .workplace-inner {
        grid-template-columns: 1fr;
      }

      .workplace-photo {
        order: -1;
      }

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

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

      .footer-brand {
        grid-column: 1 / -1;
      }

      .original-banner {
        flex-direction: column;
        text-align: center;
      }

      .village-banner {
        flex-direction: column;
        text-align: center;
      }

      .service-area-content {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 600px) {
      section {
        padding: 70px 5%;
      }

      .brands-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        gap: 24px;
      }

      .float-btns {
        right: 16px;
        bottom: 16px;
      }
    }
    /* ───────── LOADING SCREEN ───────── */
    .loader-screen {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--ivory);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      transition: opacity 0.5s, visibility 0.5s;
    }

    .loader-screen.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .loader-snowflake {
      font-size: 64px;
      animation:
        rotateSnowflake 2s linear infinite,
        pulse 1.5s ease-in-out infinite;
    }

    .loader-text {
      margin-top: 20px;
      font-size: 14px;
      color: var(--text-mid);
      letter-spacing: 2px;
    }

    @keyframes rotateSnowflake {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
      }
      50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(180deg);
      }
    }

    [data-theme="dark"] .loader-screen {
      background: #121212;
    }

    [data-theme="dark"] .loader-text {
      color: #888;
    }

    .btn-calc-nav {
      background: rgba(74, 158, 191, 0.12);
      color: var(--ice-dark) !important;
      border: 1px solid rgba(74, 158, 191, 0.25);
      padding: 9px 16px;
      border-radius: 999px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s ease;
    }

    .btn-calc-nav:hover {
      background: var(--ice);
      color: white !important;
    }