
    :root {
      --primary-color: #0c0c0c;
      --secondary-color: #1a1a1a;
      --accent-color: #D90429;
      --accent-hover: #b00320;
      --text-light: #f5f5f5;
      --text-dark: #aaaaaa;
      --glass-bg: rgba(30, 30, 30, 0.7);
      --border-color: rgba(255, 255, 255, 0.1);
      --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.5);
      --glow-shadow: 0 0 15px rgba(217, 4, 41, 0.3);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html {
      font-size: 16px;
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
    }
    body {
      font-family: 'Inter', sans-serif;
      color: var(--text-dark);
      line-height: 1.7;
      background-color: var(--primary-color);
      width: 100%;
      max-width: 100vw;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      position: relative;
    }
    body.loaded #preloader { opacity: 0; visibility: hidden; }
    body.nav-open { overflow: hidden; }
    img { max-width: 100%; height: auto; display: block; }
    h1, h2, h3, h4, h5, h6, p, span, a, li { overflow-wrap: break-word; word-wrap: break-word; word-break: break-word; }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 25px;
      width: 100%;
      max-width: 100%;
    }
    section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      width: 100%;
    }
    section:nth-of-type(even) { background-color: var(--secondary-color); }
    h1, h2, h3, h4 {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 20px;
      line-height: 1.3;
    }
    h1 {
      font-size: clamp(2rem, 5vw, 4rem);
      font-weight: 800;
      text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    }
    h2 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
      box-shadow: 0 0 10px var(--accent-color);
    }
    h3 { font-size: 1.8rem; margin-bottom: 15px; }
    p { margin-bottom: 15px; color: var(--text-dark); font-size: 1.05rem; }
    .btn {
      display: inline-block;
      background-color: var(--accent-color);
      border: 2px solid var(--accent-color);
      color: var(--text-light);
      padding: 12px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(217, 4, 41, 0.2);
      cursor: pointer;
      max-width: 100%;
      text-align: center;
    }
    .btn:hover {
      background-color: var(--accent-hover);
      border-color: var(--accent-hover);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
    }

    /* PRELOADER */
    #preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: var(--primary-color);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }
    .preloader-logo {
      width: 220px;
      max-width: 80%;
      height: auto;
      animation: pulse 1.5s ease-in-out infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.05); opacity: 1; }
      100% { transform: scale(1); opacity: 0.8; }
    }

    /* WIDGETS */
    .widget-tooltip {
      position: absolute;
      right: 75px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #FFF;
      color: #333;
      padding: 8px 15px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.2);
      font-size: 0.95rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      pointer-events: none;
    }
    .whatsapp-widget, .directions-widget, .messenger-widget {
      position: fixed;
      right: 30px;
      width: 60px;
      height: 60px;
      color: #FFF;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      z-index: 997;
    }
    .whatsapp-widget { bottom: 30px; background-color: #25D366; font-size: 2.5rem; }
    .directions-widget { bottom: 100px; background-color: var(--accent-color); font-size: 2.0rem; }
    .messenger-widget { bottom: 170px; background: linear-gradient(135deg, #00B2FF, #006AFF); font-size: 2.2rem; }
    .whatsapp-widget:hover, .directions-widget:hover, .messenger-widget:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    .whatsapp-widget:hover .widget-tooltip,
    .directions-widget:hover .widget-tooltip,
    .messenger-widget:hover .widget-tooltip {
      opacity: 1;
      visibility: visible;
    }
    #back-to-top {
      position: fixed;
      bottom: 240px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: var(--accent-color);
      color: var(--text-light);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      text-decoration: none;
      box-shadow: var(--shadow-hover);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
      z-index: 998;
    }
    #back-to-top.active { opacity: 1; visibility: visible; }
    #back-to-top:hover {
      background-color: var(--text-light);
      color: var(--accent-color);
      transform: translateY(-4px);
    }

    /* TOP BAR */
    .top-bar {
      background-color: #000;
      color: var(--text-dark);
      padding: 10px 0;
      font-size: 0.85rem;
      font-weight: 500;
      border-bottom: 1px solid var(--border-color);
    }
    .top-bar .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }
    .top-bar-info { display: flex; flex-wrap: wrap; gap: 20px; }
    .top-bar-info a { color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; }
    .top-bar-info a:hover { color: var(--accent-color); }
    .top-bar-info i { margin-right: 8px; color: var(--accent-color); }
    .top-bar-social a {
      color: var(--text-dark);
      margin-left: 15px;
      font-size: 1rem;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .top-bar-social a:hover { color: var(--accent-color); transform: scale(1.1); }

    /* HEADER & NAV */
    .header {
      background-color: rgba(18, 18, 18, 0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    .navbar { display: flex; justify-content: space-between; align-items: center; height: 80px; }
    .logo-image { height: 75px; width: auto; display: block; transition: transform 0.3s ease; }
    .logo-image:hover { transform: scale(1.05); }
    .nav-links { display: flex; list-style: none; }
    .nav-links li { margin-left: 35px; }
    .nav-links a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 600;
      font-family: 'Inter', sans-serif;
      padding: 10px 0;
      position: relative;
      transition: color 0.3s ease;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background-color: var(--accent-color);
      transition: width 0.3s ease;
      border-radius: 2px;
    }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-links a:hover, .nav-links a.active { color: var(--text-light); }
    .menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 6px; z-index: 1002; }
    .menu-toggle .bar { width: 30px; height: 4px; background-color: var(--text-light); border-radius: 3px; transition: all 0.3s ease; }

    /* HERO */
    #hero {
      position: relative;
      color: var(--text-light);
      padding: 150px 0;
      text-align: center;
      display: flex;
      align-items: center;
      min-height: 90vh;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.8)), url('https://images.unsplash.com/photo-1556181653-9521f37f3366?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
      background-attachment: fixed;
      animation: kenburns 20s ease-out infinite;
      z-index: -1;
    }
    @keyframes kenburns { 0% { transform: scale(1.1); } 100% { transform: scale(1); } }
    #hero .hero-content { max-width: 900px; margin: 0 auto; animation: fadeInScale 1s ease-out forwards; width: 100%; }
    #hero p {
      font-size: 1.35rem;
      font-weight: 300;
      max-width: 800px;
      margin: 0 auto 40px auto;
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
      color: var(--text-dark);
    }
    @keyframes fadeInScale {
      from { opacity: 0; transform: scale(0.95) translateY(20px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* WHY US (STATS) */
    #why-us { padding: 100px 0; background-color: var(--primary-color); }
    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; text-align: center; }
    .stat-box {
      background-color: var(--glass-bg);
      backdrop-filter: blur(10px);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      border-top: 4px solid var(--accent-color);
      box-shadow: var(--shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .stat-box:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-hover), var(--glow-shadow); border-color: rgba(255, 255, 255, 0.2); }
    .stat-box i { font-size: 3rem; color: var(--accent-color); margin-bottom: 15px; }
    .stat-number { font-size: 3rem; font-weight: 700; color: var(--text-light); margin-bottom: 5px; }
    .stat-label { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

    /* SERVICES */
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; margin-top: 40px; }
    .service-card {
      background-color: var(--glass-bg);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      box-shadow: var(--shadow);
      padding: 40px;
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border: 1px solid var(--border-color);
    }
    .service-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-hover), var(--glow-shadow); border-color: rgba(255, 255, 255, 0.2); }
    .service-card .icon { font-size: 3.5rem; color: var(--accent-color); margin-bottom: 25px; transition: color 0.3s ease, transform 0.3s ease; }
    .service-card:hover .icon { color: var(--text-light); transform: scale(1.1); }
    .service-card h3 { font-size: 1.6rem; color: var(--text-light); }
    .service-card p { font-size: 0.95rem; color: var(--text-dark); }

    /* FOUNDER */
    #founder { background-color: var(--secondary-color); }
    .founder-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; }
    .founder-image-wrapper { text-align: center; width: 100%; }
    .founder-image {
      width: 100%;
      max-width: 350px;
      height: auto;
      border-radius: 12px;
      border: 3px solid var(--accent-color);
      box-shadow: var(--shadow-hover);
      margin: 0 auto;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: block;
      /* Fallback background if image fails */
      background-color: #333;
    }
    .founder-image:hover { transform: scale(1.03); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
    .founder-bio h3 { font-size: 1.5rem; color: var(--accent-color); font-weight: 700; margin-bottom: 5px; }
    .founder-bio span { font-size: 1.1rem; color: var(--text-dark); display: block; margin-bottom: 20px; }
    .founder-bio p { font-size: 1.05rem; color: var(--text-light); font-style: italic; }

    /* TESTIMONIALS */
    #testimonials {
      background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)), url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=2069&auto=format&fit=crop') no-repeat center center/cover;
      background-attachment: fixed;
      color: var(--text-light);
    }
    .testimonial-slider {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      background-color: var(--glass-bg);
      backdrop-filter: blur(10px);
      padding: 40px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow);
    }
    .testimonial-slides { display: flex; transition: transform 0.5s ease-in-out; }
    .testimonial-slide { min-width: 100%; padding: 20px; text-align: center; box-sizing: border-box; }
    .testimonial-slide p { font-size: 1.2rem; font-style: italic; margin-bottom: 20px; color: var(--text-light); }
    .testimonial-slide .author { font-size: 1.1rem; font-weight: 700; color: var(--accent-color); }
    .testimonial-slide .author span { font-size: 0.9rem; font-weight: 400; color: var(--text-dark); display: block; }
    .slider-controls { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 10px; left: 0; pointer-events: none; }
    .slider-btn { pointer-events: auto; background-color: rgba(255, 255, 255, 0.1); border: none; color: var(--text-light); font-size: 1.5rem; width: 45px; height: 45px; border-radius: 50%; cursor: pointer; transition: background-color 0.3s ease; }
    .slider-btn:hover { background-color: var(--accent-color); color: var(--text-light); }
    .slider-dots { text-align: center; margin-top: 20px; }
    .dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.2); margin: 0 5px; cursor: pointer; transition: background-color 0.3s ease; }
    .dot.active { background-color: var(--accent-color); }

    /* FAQ */
    #faq .container { max-width: 900px; }
    .faq-item { background-color: var(--glass-bg); backdrop-filter: blur(10px); margin-bottom: 15px; border-radius: 8px; border: 1px solid var(--border-color); overflow: hidden; transition: box-shadow 0.3s ease, border-color 0.3s ease; }
    .faq-item:hover { border-color: rgba(255, 255, 255, 0.2); }
    .faq-question { width: 100%; background-color: transparent; border: none; padding: 20px 25px; font-family: 'Inter', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--text-light); text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .faq-question i { transition: transform 0.3s ease; color: var(--accent-color); min-width: 20px; }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, padding 0.4s ease-out; border-top: 1px solid transparent; }
    .faq-answer p { padding: 0 25px 20px; margin: 0; color: var(--text-dark); }
    .faq-item.active .faq-question i { transform: rotate(180deg); }
    .faq-item.active .faq-answer { max-height: 300px; border-top-color: var(--border-color); padding-top: 20px; }

    /* GALLERY */
    #gallery { background-color: var(--primary-color); }
    .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }
    .gallery-item { display: block; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border-color); transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer; }
    .gallery-item:hover { transform: translateY(-8px) scale(1.03); box-shadow: var(--shadow-hover); }
    .gallery-item img { width: 100%; height: 250px; object-fit: cover; display: block; transition: transform 0.4s ease; background-color: #333; }
    .gallery-item:hover img { transform: scale(1.05); }
    .lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.9); z-index: 10000; display: flex; justify-content: center; align-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
    .lightbox.active { opacity: 1; visibility: visible; }
    .lightbox-content { max-width: 90%; max-height: 90%; position: relative; display: flex; justify-content: center; align-items: center; }
    #lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    .lightbox-close { position: absolute; top: -40px; right: 0; font-size: 2.5rem; color: var(--text-light); cursor: pointer; transition: color 0.3s ease, transform 0.3s ease; }
    .lightbox-close:hover { color: var(--accent-color); transform: scale(1.1); }

    /* CTA */
    #cta { background: var(--accent-color); padding: 80px 0; text-align: center; color: var(--text-light); }
    #cta h2 { color: var(--text-light); margin-bottom: 20px; font-weight: 800; }
    #cta h2::after { display: none; }
    #cta p { font-size: 1.15rem; max-width: 700px; margin: 0 auto 30px; color: #f0f0f0; }
    .btn-dark { background-color: var(--primary-color); border-color: var(--primary-color); color: var(--text-light); font-weight: 700; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4); }
    .btn-dark:hover { background-color: var(--text-light); border-color: var(--text-light); color: var(--primary-color); box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2); }

    /* CONTACT */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 40px;
      background-color: var(--glass-bg);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow);
    }
    .contact-info h3 { color: var(--accent-color); margin-bottom: 25px; font-size: 1.8rem; }
    .contact-info ul { list-style: none; }
    .contact-info ul li { color: var(--text-light); font-size: 1rem; margin-bottom: 20px; display: flex; align-items: flex-start; }
    .contact-info ul li i { font-size: 1.2rem; color: var(--accent-color); margin-right: 15px; margin-top: 5px; width: 20px; text-align: center; flex-shrink: 0; }
    .contact-form .form-group { margin-bottom: 20px; position: relative; }
    .contact-form label { display: block; margin-bottom: 10px; font-weight: 600; color: var(--text-light); }
    .contact-form input, .contact-form textarea {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid var(--border-color);
      background-color: var(--primary-color);
      border-radius: 8px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      color: var(--text-light);
      box-sizing: border-box;
    }
    .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(217, 4, 41, 0.3); }
    .contact-form textarea { min-height: 150px; resize: vertical; }
    .contact-form .btn { width: 100%; font-size: 1.15rem; border: none; cursor: pointer; padding: 15px; }
    .form-group .error-message { color: #ff5757; font-size: 0.85rem; padding-top: 5px; display: none; }
    .form-group.error input, .form-group.error textarea { border-color: #ff5757; }
    .form-group.error .error-message { display: block; }
    #form-message { margin-bottom: 20px; padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; display: none; }
    #form-message.success { background-color: #28a74520; color: #28a745; border: 1px solid #28a745; display: block; }
    #form-message.error { background-color: #dc354520; color: #dc3545; border: 1px solid #dc3545; display: block; }

    /* MAP */
    .map-card {
      margin-top: 25px;
      background-color: rgba(12,12,12,0.55);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .map-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .map-card-header .title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: var(--text-light);
      font-size: 1rem;
    }
    .map-card-header .title i { color: var(--accent-color); }
    .map-card-header .actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }
    .map-mini-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.10);
      background: rgba(255,255,255,0.06);
      color: var(--text-light);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.92rem;
      transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
      white-space: nowrap;
    }
    .map-mini-btn:hover {
      transform: translateY(-2px);
      border-color: rgba(255,255,255,0.18);
      background: rgba(217,4,41,0.20);
    }
    .map-mini-btn i { color: var(--accent-color); }
    .map-embed {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 10;
      background: #000;
    }
    .map-embed iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* ========= FOOTER (PROFESYONEL + MOBİLDE EŞİT GÖRÜNÜM) ========= */
    .footer {
      background-color: #000000;
      color: var(--text-dark);
      padding: 70px 0 40px;
      border-top: 1px solid var(--border-color);
      width: 100%;
    }
    .footer-grid{
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 34px;
      align-items: start;
    }
    .footer-col{
      min-width: 0;
    }
    .footer-title{
      color: var(--text-light);
      font-size: 1.15rem;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 10px;
      line-height: 1.2;
    }
    .footer-title::after{
      content:'';
      position:absolute;
      left:0;
      bottom:0;
      width:52px;
      height:3px;
      background: var(--accent-color);
      border-radius: 2px;
    }
    .footer-brand{
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .footer-brand-logo{
      display: inline-flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      width: fit-content;
      max-width: 100%;
    }
    .footer-brand-logo img{
      height: 52px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .footer-brand p{
      margin: 0;
      color: var(--text-dark);
      font-size: 0.98rem;
      line-height: 1.75;
      max-width: 52ch;
    }
    .footer-social{
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }
    .footer-social a{
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--text-light);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      transition: transform .25s ease, background .25s ease, border-color .25s ease;
    }
    .footer-social a:hover{
      transform: translateY(-2px);
      background: rgba(217,4,41,0.20);
      border-color: rgba(255,255,255,0.18);
    }
    .footer-list{
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }
    .footer-list li{
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: var(--text-dark);
      line-height: 1.6;
      min-width: 0;
    }
    .footer-list li i{
      color: var(--accent-color);
      margin-top: 4px;
      width: 18px;
      flex: 0 0 18px;
      text-align: center;
    }
    .footer-list a{
      color: var(--text-dark);
      text-decoration: none;
      transition: color .25s ease;
      min-width: 0;
    }
    .footer-list a:hover{ color: var(--accent-color); }

    .footer-bottom{
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid var(--border-color);
      text-align: center;
      font-size: 0.88rem;
      color: #888;
    }

    /* UTILITIES */
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      html { font-size: 15px; scroll-padding-top: 70px; }
      .founder-grid { grid-template-columns: 1fr; text-align: center; }
      .founder-bio { margin-top: 30px; }
      .contact-grid { grid-template-columns: 1fr; }
      .top-bar { display: none; }
      .navbar { height: 70px; }
      .logo-image { height: 65px; }

      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        overflow-y: auto;
      }
      .nav-links.active { transform: translateX(0); }
      .nav-links li { margin: 0 0 15px 0; width: 100%; text-align: left; }
      .nav-links a { display: block; padding: 10px 0; font-size: 1.2rem; }
      .nav-links a::after { display: none; }
      .nav-links a:hover, .nav-links a.active { color: var(--accent-color); }
      .menu-toggle { display: flex; }
      .menu-toggle.active .bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
      .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
      .menu-toggle.active .bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

      /* Footer tablet */
      .footer-grid{ grid-template-columns: 1fr 1fr; }
      .footer-col.footer-col--brand{ grid-column: 1 / -1; }
    }

    @media (max-width: 768px) {
      h2 { font-size: 2rem; margin-bottom: 40px; }
      h2::after { bottom: -10px; }
      #hero { padding: 100px 0; min-height: 70vh; }
      #hero::before, #testimonials { background-attachment: scroll; }
      section { padding: 70px 0; }
      .service-card { padding: 30px; }
      .slider-controls { display: none; }
      .contact-grid { padding: 25px; }
      .widget-tooltip { display: none; }

      .whatsapp-widget, .directions-widget, .messenger-widget { width: 50px; height: 50px; right: 20px; }
      .whatsapp-widget { font-size: 2rem; bottom: 20px; }
      .directions-widget { font-size: 1.8rem; bottom: 80px; }
      .messenger-widget { font-size: 1.9rem; bottom: 140px; }
      #back-to-top { bottom: 200px; right: 20px; width: 40px; height: 40px; font-size: 1.2rem; }

      .map-card-header { flex-direction: column; align-items: flex-start; }
      .map-card-header .actions { width: 100%; justify-content: flex-start; }

      /* Footer mobil-1: tek kolon, eşit, düzgün */
      .footer{ padding: 60px 0 34px; }
      .footer-grid{ grid-template-columns: 1fr; gap: 26px; }
      .footer-title{ text-align: left; }
      .footer-title::after{ left:0; transform:none; }
      .footer-brand-logo img{ height: 56px; }
      .footer-brand p{ max-width: 100%; }
    }

    @media (max-width: 576px) {
      .stats-grid, .services-grid, .gallery-grid { display: flex; flex-direction: column; gap: 25px; }
      .container { padding: 0 15px; width: 100%; }
      section { padding: 60px 0; }
      h1 { font-size: 2rem; }
      h2 { font-size: 1.7rem; }
      .stat-box, .service-card, .contact-grid, .testimonial-slider { padding: 25px 15px !important; }
      .contact-form input, .contact-form textarea { max-width: 100%; }

      .whatsapp-widget, .directions-widget, .messenger-widget { width: 45px; height: 45px; right: 15px; }
      .whatsapp-widget { font-size: 1.8rem; bottom: 20px; }
      .directions-widget { font-size: 1.5rem; bottom: 75px; }
      .messenger-widget { font-size: 1.7rem; bottom: 130px; }
      #back-to-top { right: 15px; bottom: 190px; width: 40px; height: 40px; }

      .founder-image { max-width: 100%; height: auto; }
      .map-mini-btn { width: 100%; justify-content: center; }

      /* Footer mobil-2: ikonlar ve listeler hizalı */
      .footer-social a{ width: 44px; height: 44px; border-radius: 14px; }
      .footer-list{ gap: 12px; }
      .footer-bottom{ margin-top: 28px; }
    }

    @media (max-width: 480px) {
      html { font-size: 14px; }
      .logo-image { height: 50px; }
      .navbar { height: 60px; }
      .menu-toggle .bar { width: 25px; }
      .service-card .icon { font-size: 2.8rem; }
      .nav-links { width: 100%; max-width: 100%; right: 0; }
    }
  

/* CMS integration refinements */
#hero::before { background: linear-gradient(rgba(18,18,18,.95), rgba(18,18,18,.78)), var(--hero-bg, url('../images/1')) no-repeat center center/cover !important; }
.logo-image,.preloader-logo{object-fit:contain}
.form-message-panel{padding:18px;border-radius:12px;margin-bottom:18px;border:1px solid var(--border-color);background:rgba(255,255,255,.04)}
.form-message-panel.success{border-color:rgba(25,135,84,.55);color:#d8ffe7;background:rgba(25,135,84,.12)}
.form-message-panel.error{border-color:rgba(217,4,41,.55);color:#ffdce2;background:rgba(217,4,41,.12)}
.contact-form input,.contact-form textarea,.form-container input,.form-container textarea,.form-container select{font:inherit}
.cms-empty{padding:22px;border:1px dashed var(--border-color);border-radius:14px;text-align:center;color:var(--text-dark)}
.service-card p,.faq-answer p,.testimonial-slide p{word-break:normal;overflow-wrap:anywhere}
.top-bar a,.contact-info a{word-break:normal}
@media(max-width:768px){.top-bar .container{gap:10px}.contact-grid,.founder-grid{grid-template-columns:1fr}.map-card .actions{flex-direction:column;align-items:stretch}.hero-content{text-align:left}}

/* Public UI polish for shared PHP header/footer */
.logo-image,.footer-brand-logo img{object-fit:contain}
.footer a{overflow-wrap:anywhere}
.footer-contact-list span{overflow-wrap:anywhere;min-width:0}
@media(max-width:430px){.logo-image{max-width:190px;height:48px}.navbar{min-height:62px}.header{min-height:62px}}

/* Multipage CMS layout */
.page-hero{
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 82px 0 74px;
  background: linear-gradient(135deg, rgba(12,12,12,.96), rgba(26,26,26,.88)), url('../images/1') center/cover no-repeat;
  border-bottom: 1px solid var(--border-color);
}
.page-hero .container{position:relative;z-index:1}
.page-hero h1{max-width:900px;margin:0;font-size:clamp(2.1rem,4vw,3.8rem)}
.page-hero p{max-width:760px;margin:18px 0 0;color:#d7d7d7;font-size:1.13rem;word-break:normal}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:#b7b7b7;
  font-size:.94rem;
  font-weight:600;
}
.breadcrumb a{color:#fff;text-decoration:none}
.breadcrumb a:hover{color:var(--accent-color)}
.content-section{padding:78px 0;background:var(--primary-color)}
.content-section:nth-of-type(even){background:var(--secondary-color)}
.narrow{max-width:920px}
.rich-content{
  color:#d8d8d8;
  background:rgba(255,255,255,.035);
  border:1px solid var(--border-color);
  border-radius:12px;
  padding:34px;
  box-shadow:var(--shadow);
}
.rich-content h2{font-size:2rem;text-align:left;margin-bottom:12px}
.rich-content h2::after{left:0;transform:none;width:58px}
.rich-content p{color:#d7d7d7;word-break:normal;overflow-wrap:anywhere}
.eyebrow{color:var(--accent-color);font-weight:700;text-transform:uppercase;font-size:.86rem;letter-spacing:0;margin-bottom:16px}
.split-layout{display:grid;grid-template-columns:minmax(260px,.8fr) minmax(0,1.2fr);gap:34px;align-items:start}
.split-layout > *{min-width:0}
.detail-image{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:12px;
  border:1px solid var(--border-color);
  background:#202020;
  box-shadow:var(--shadow-hover);
}
.listing-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px;align-items:stretch}
.listing-card{
  min-width:0;
  height:100%;
  padding:28px;
  border-radius:12px;
  background:rgba(255,255,255,.045);
  border:1px solid var(--border-color);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.listing-card i{font-size:2.2rem;color:var(--accent-color)}
.listing-card h2{font-size:1.36rem;text-align:left;margin:0;line-height:1.25}
.listing-card h2::after{display:none}
.listing-card p{margin:0;color:#c8c8c8;word-break:normal;overflow-wrap:anywhere}
.text-link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  width:fit-content;
  max-width:100%;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  border-bottom:2px solid var(--accent-color);
}
.text-link:hover{color:var(--accent-color)}
.cta-section{padding:58px 0;background:linear-gradient(135deg,#151515,#090909);text-align:center}
.cta-section h2{margin:0 auto 24px;max-width:760px;font-size:2rem}
.cta-section h2::after{display:none}
.cms-gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.gallery-card{
  margin:0;
  border-radius:12px;
  overflow:hidden;
  border:1px solid var(--border-color);
  background:#161616;
  box-shadow:var(--shadow);
}
.gallery-card img{width:100%;aspect-ratio:4/3;object-fit:cover}
.cms-faq-list{display:grid;gap:16px}
.faq-item{
  padding:24px;
  border:1px solid var(--border-color);
  border-radius:12px;
  background:rgba(255,255,255,.045);
  box-shadow:var(--shadow);
}
.faq-item h2{font-size:1.18rem;text-align:left;margin:0 0 10px}
.faq-item h2::after{display:none}
.faq-item p{margin:0;color:#d0d0d0;word-break:normal;overflow-wrap:anywhere}
.contact-info a{color:#fff;text-decoration:none}
.contact-info a:hover{color:var(--accent-color)}

@media(max-width:992px){
  .listing-grid,.cms-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .split-layout{grid-template-columns:1fr}
  .page-hero{min-height:280px;padding:70px 0 62px}
}
@media(max-width:640px){
  .page-hero{min-height:240px;padding:54px 0 48px}
  .content-section{padding:56px 0}
  .listing-grid,.cms-gallery-grid{grid-template-columns:1fr}
  .listing-card,.rich-content,.faq-item{padding:22px}
  .page-hero p{font-size:1rem}
}
