      :root {
        --primary: #0a192f;
        --secondary: #ffb400;
        --accent: #f39c12;
        --dark-2: #112240;
        --text-main: #ccd6f6;
        --text-sub: #8892b0;
        --white: #ffffff;
        --glass: rgba(10, 25, 47, 0.85);
        --gold-gradient: linear-gradient(135deg, #ffb400 0%, #f39c12 100%);
        --navy-gradient: linear-gradient(135deg, #0a192f 0%, #112240 100%);
        --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Plus Jakarta Sans", sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        background-color: var(--white);
        color: var(--primary);
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* --- Custom Scrollbar --- */
      ::-webkit-scrollbar {
        width: 6px;
      }
      ::-webkit-scrollbar-track {
        background: var(--primary);
      }
      ::-webkit-scrollbar-thumb {
        background: var(--secondary);
        border-radius: 10px;
      }

      /* ========================
           PRELOADER
        ======================== */
      #preloader {
        position: fixed;
        inset: 0;
        background: var(--primary);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
          opacity 0.6s ease,
          visibility 0.6s ease;
      }
      .loader-content {
        text-align: center;
      }
      .loader-logo {
        color: var(--white);
        font-family: "Syncopate", sans-serif;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 5px;
        display: flex;
        flex-direction: column;
        line-height: 1;
        animation: pulse 2s infinite;
      }
      .loader-logo span {
        color: var(--secondary);
        font-size: 1rem;
        letter-spacing: 12px;
        margin-top: 8px;
        font-weight: 400;
      }
      .loading-bar {
        width: 150px;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        margin: 30px auto 0;
        position: relative;
        overflow: hidden;
      }
      .loading-bar::after {
        content: "";
        position: absolute;
        left: -50px;
        width: 50px;
        height: 100%;
        background: var(--secondary);
        animation: loading 1.5s infinite ease-in-out;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.7;
          transform: scale(0.98);
        }
      }
      @keyframes loading {
        0% {
          left: -50px;
        }
        100% {
          left: 100%;
        }
      }
      body.loaded #preloader {
        opacity: 0;
        visibility: hidden;
      }

      /* ========================
           HEADER
        ======================== */
      header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 25px 8%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
      }
      header.scrolled {
        padding: 15px 8%;
        background: var(--glass);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 180, 0, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      }
      .logo-container {
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
      }
      .logo-img {
        height: 48px;
        width: auto;
        transition: var(--transition);
      }
      .logo-text {
        color: var(--white);
        font-family: "Syncopate", sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 5px;
        display: flex;
        flex-direction: column;
        line-height: 1;
      }
      .logo-text span {
        color: var(--secondary);
        font-size: 0.8rem;
        letter-spacing: 8px;
        margin-top: 5px;
        font-weight: 400;
        opacity: 0.9;
      }
      header.scrolled .logo-text {
        font-size: 1.2rem;
      }
      header.scrolled .logo-text span {
        font-size: 0.7rem;
      }

      nav ul {
        display: flex;
        list-style: none;
        gap: 40px;
      }
      nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 500;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: var(--transition);
        position: relative;
      }
      nav a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary);
        transition: var(--transition);
      }
      nav a:hover {
        color: var(--secondary);
      }
      nav a:hover::after {
        width: 100%;
      }
      .header-cta {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .nav-cta-btn {
        padding: 12px 24px;
        font-size: 0.8rem;
        box-shadow: 0 8px 20px rgba(255, 180, 0, 0.2);
      }

      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 5px;
        z-index: 1100;
        background: none;
        border: none;
        outline: none;
      }
      .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: all 0.4s ease;
      }
      .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
      }
      .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }

      .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary);
        border-left: 1px solid rgba(255, 180, 0, 0.2);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 100px 40px 40px;
        flex-direction: column;
        gap: 0;
      }
      .mobile-nav.open {
        right: 0;
      }
      .mobile-nav ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0;
      }
      .mobile-nav ul li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .mobile-nav ul li a {
        display: block;
        padding: 18px 0;
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        transition: var(--transition);
      }
      .mobile-nav ul li a:hover {
        color: var(--secondary);
        padding-left: 10px;
      }
      .mobile-nav-cta {
        margin-top: 40px;
      }
      .mobile-nav-cta button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 18px;
        background: var(--gold-gradient);
        color: var(--primary);
        font-weight: 800;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        width: 100%;
        border: none;
        cursor: pointer;
      }
      .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.4s ease;
      }
      .nav-overlay.open {
        opacity: 1;
      }

      /* ========================
           HERO SECTION
        ======================== */
      .hero {
        min-height: 100vh;
        background: linear-gradient(rgba(10, 25, 47, 0.4), rgba(10, 25, 47, 0.7));
        /* Eski resim arka planı yedek olarak CSS'de durabilir ancak video varken görünmez */
        display: flex;
        align-items: center;
        padding: 120px 10% 80px;
        position: relative;
        overflow: hidden;
      }
      .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
      }
      @media (min-width: 1025px) {
        .hero {
          background-attachment: fixed;
        }
      }
      .hero::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(
          circle at center,
          transparent 0%,
          var(--primary) 100%
        );
        opacity: 0.4;
      }
      .hero-content {
        position: relative;
        z-index: 2;
        max-width: 860px;
        width: 100%;
      }
      .hero-eyebrow {
        color: var(--secondary);
        font-weight: 800;
        letter-spacing: 5px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 20px;
        font-size: 0.85rem;
      }

      .hero h1 {
        color: var(--white);
        font-size: clamp(2.4rem, 6vw, 5.5rem);
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 28px;
        text-transform: uppercase;
        letter-spacing: -1px;
        word-wrap: break-word;
      }

      .hero p {
        color: var(--text-main);
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        max-width: 580px;
        margin-bottom: 42px;
        font-weight: 300;
      }
      .cta-group {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
      }
      .btn-premium {
        padding: 18px 38px;
        border-radius: 4px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        gap: 12px;
        font-size: 0.85rem;
        white-space: nowrap;
        border: none;
        cursor: pointer;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-gold {
        background: var(--gold-gradient);
        color: var(--primary);
        box-shadow: 0 12px 30px rgba(255, 180, 0, 0.3);
      }
      .btn-outline {
        border: 2px solid var(--white);
        color: var(--white);
        background: transparent;
      }
      .btn-premium:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
      }
      .btn-gold:hover {
        filter: brightness(1.1);
      }
      .btn-outline:hover {
        background: var(--white);
        color: var(--primary);
      }

      /* ========================
           STATS STRIP
        ======================== */
      .stats-strip {
        background: var(--primary);
        padding: 55px 10%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        position: relative;
        z-index: 5;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
      }
      .stat-card {
        text-align: center;
        color: var(--white);
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
      }
      .stat-card:last-child {
        border: none;
      }
      .stat-card h3 {
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--secondary);
        font-weight: 800;
        margin-bottom: 6px;
      }
      .stat-card p {
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--text-sub);
      }

      /* ========================
           SERVICES SECTION
        ======================== */
      .services {
        padding: 110px 8%;
        background: #fdfdfd;
      }
      .section-tag {
        text-align: center;
        margin-bottom: 65px;
      }
      .section-tag h2 {
        font-size: clamp(2rem, 5vw, 3.4rem);
        font-weight: 800;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: -1px;
      }
      .section-tag p {
        color: var(--accent);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin-bottom: 10px;
        font-size: 0.8rem;
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
      }
      .service-item {
        background: var(--white);
        padding: 65px 40px;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
        transition: var(--transition);
        border: 1px solid #eee;
        position: relative;
        overflow: hidden;
      }
      .service-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: var(--navy-gradient);
        transition: var(--transition);
        z-index: 0;
      }
      .service-item:hover {
        transform: translateY(-18px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: #e0e0e0;
      }
      .service-item:hover::before {
        height: 100%;
      }
      .service-item * {
        position: relative;
        z-index: 1;
      }
      .service-icon {
        font-size: 3rem;
        color: var(--secondary);
        margin-bottom: 28px;
        display: block;
      }
      .service-item:hover * {
        color: var(--white);
      }
      .service-item:hover .service-icon {
        color: var(--secondary);
      }
      .service-item h4 {
        font-size: 1.6rem;
        margin-bottom: 18px;
        font-weight: 800;
      }
      .service-item p {
        color: #666;
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.7;
      }

      /* ========================
           ABOUT SECTION
        ======================== */
      .about {
        padding: 110px 8%;
        display: flex;
        align-items: center;
        gap: 80px;
        background: var(--white);
      }
      .about-image {
        flex: 1;
        position: relative;
        min-width: 0;
      }
      .about-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 25px 25px 0 rgba(255, 180, 0, 1);
        display: block;
      }
      .experience-badge {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background: var(--primary);
        color: var(--white);
        padding: 30px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        border: 2px solid var(--secondary);
      }
      .about-content {
        flex: 1;
        min-width: 0;
      }
      .about-content h2 {
        font-size: clamp(1.8rem, 3.5vw, 3.2rem);
        font-weight: 800;
        margin-bottom: 28px;
        line-height: 1.15;
        color: var(--primary);
      }
      .about-content p {
        font-size: 1.05rem;
        color: #555;
        margin-bottom: 28px;
        font-weight: 300;
        line-height: 1.75;
      }
      .about-badges {
        display: flex;
        gap: 28px;
        margin-top: 35px;
        flex-wrap: wrap;
      }
      .about-badge-item {
        text-align: center;
      }
      .about-badge-item i {
        font-size: 2.3rem;
        color: var(--secondary);
        margin-bottom: 8px;
        display: block;
      }
      .about-badge-item h6 {
        font-weight: 800;
        font-size: 0.9rem;
      }

      /* ========================
           TIMELINE (NASIL ÇALIŞIYORUZ)
        ======================== */
      .timeline-section {
        padding: 110px 5%;
        background: var(--primary);
        color: var(--white);
      }
      .timeline-container {
        position: relative;
        max-width: 1000px;
        margin: 60px auto 0;
      }
      .timeline-container::after {
        content: "";
        position: absolute;
        width: 4px;
        background: rgba(255, 180, 0, 0.15);
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 2px;
      }
      .timeline-step {
        padding: 10px 50px;
        position: relative;
        width: 50%;
      }
      .timeline-step.left {
        left: 0;
      }
      .timeline-step.right {
        left: 50%;
      }

      .timeline-step::after {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        right: -12px;
        background-color: var(--secondary);
        border: 4px solid var(--primary);
        top: 30px;
        border-radius: 50%;
        z-index: 1;
        transition: var(--transition);
      }
      .timeline-step.right::after {
        left: -12px;
      }
      .timeline-step:hover::after {
        transform: scale(1.3);
        background-color: var(--white);
      }

      .timeline-content {
        padding: 35px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: 8px;
        position: relative;
        transition: var(--transition);
      }
      .timeline-step:hover .timeline-content {
        background: rgba(255, 255, 255, 0.08);
        border-color: var(--secondary);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
      }
      .step-number {
        display: inline-block;
        padding: 5px 12px;
        background: var(--secondary);
        color: var(--primary);
        font-weight: 800;
        font-size: 0.8rem;
        border-radius: 4px;
        margin-bottom: 15px;
        letter-spacing: 1px;
      }
      .timeline-content h3 {
        color: var(--white);
        font-size: 1.4rem;
        margin-bottom: 12px;
        font-weight: 700;
      }
      .timeline-content p {
        color: var(--text-sub);
        font-size: 0.95rem;
        line-height: 1.7;
      }

      /* ========================
           PORTFOLIO (GERİ EKLENDİ)
        ======================== */
      .portfolio {
        padding: 90px 5%;
        background: var(--dark-2);
        color: var(--white);
        text-align: center;
      }
      .work-grid {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 55px;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
      }
      .work-card {
        background: var(--white);
        border-radius: 16px;
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: row;
        align-items: stretch;
        min-height: 500px;
        box-shadow: 0 15px 45px rgba(0,0,0,0.15);
        text-align: left;
      }
      .work-card:nth-child(even) {
        flex-direction: row-reverse;
      }
      .work-img-container {
        flex: 0 0 60%; /* Resim daha baskın hale getirildi */
        overflow: hidden;
        background: var(--primary);
        position: relative;
        min-height: 400px;
      }
      .work-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s ease;
      }
      .work-card:hover .work-img-container img {
        transform: scale(1.05);
      }
      .work-info {
        padding: 45px;
        flex: 0 0 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: #fff;
      }
      .work-info h3 {
        font-size: 1.8rem;
        color: var(--primary);
        margin-bottom: 12px;
        font-weight: 800;
        line-height: 1.25;
      }
      .project-cat {
        color: var(--accent);
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 20px;
        display: block;
      }
      .project-desc {
        color: #444;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 30px;
        font-weight: 400;
      }
      .project-gallery {
        display: flex;
        gap: 12px;
        margin-top: 20px;
        padding-top: 25px;
        border-top: 1px solid #f0f0f0;
        flex-wrap: wrap;
      }
      .thumb-item {
        width: 70px;
        height: 70px;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        opacity: 0.5;
        transition: all 0.3s ease;
        border: 2px solid transparent;
      }
      .thumb-item:hover, .thumb-item.active {
        opacity: 1;
        border-color: var(--secondary);
        transform: translateY(-3px);
      }
      .thumb-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ========================
           LOCATION MAP (KOYU TEMA - HATA DÜZELTİLDİ)
        ======================== */
      .location-map {
        position: relative;
        width: 100%;
        height: 600px;
        background: var(--primary);
        overflow: hidden;
      }
      .map-container {
        position: relative;
        width: 100%;
        height: 100%;
      }
      .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(80%) invert(90%) hue-rotate(185deg) brightness(95%)
          contrast(85%);
        transition: var(--transition);
      }
      .map-container iframe:hover {
        filter: grayscale(40%) invert(90%) hue-rotate(185deg) brightness(100%)
          contrast(90%);
      }
      .map-overlay-card {
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        background: rgba(10, 25, 47, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 35px 30px;
        border-radius: 12px;
        border: 1px solid rgba(255, 180, 0, 0.2);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        max-width: 380px;
        z-index: 2;
      }
      .map-overlay-card h3 {
        color: var(--secondary);
        font-size: 1.6rem;
        margin-bottom: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
      }
      .map-overlay-card p {
        color: var(--text-main);
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.7;
        font-weight: 300;
      }
      .map-overlay-card p:first-of-type {
        font-weight: 600;
        color: var(--white);
        margin-bottom: 15px;
        font-size: 1.05rem;
      }
      .map-overlay-card p i {
        color: var(--secondary);
        margin-right: 10px;
        font-size: 1.2rem;
      }
      .map-overlay-card .btn-premium {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        margin-top: 10px;
      }

      /* ========================
           FOOTER
        ======================== */
      footer {
        background: var(--primary);
        color: var(--white);
        padding: 100px 8% 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }
      .footer-main {
        display: grid;
        grid-template-columns: 2fr 1fr 1.5fr;
        gap: 70px;
        margin-bottom: 80px;
      }
      .footer-logo .logo-text {
        font-size: 2rem;
        margin-bottom: 20px;
      }
      .footer-logo .logo-text span {
        font-size: 1.1rem;
        letter-spacing: 10px;
      }
      .footer-logo p {
        color: var(--text-sub);
        max-width: 380px;
        margin-bottom: 35px;
        line-height: 1.7;
      }
      .footer-socials {
        display: flex;
        gap: 15px;
      }
      .instagram-premium {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 12px 22px;
        background: linear-gradient(
          45deg,
          #f09433 0%,
          #e6683c 25%,
          #dc2743 50%,
          #cc2366 75%,
          #bc1888 100%
        );
        border-radius: 8px;
        color: var(--white) !important;
        text-decoration: none;
        overflow: hidden;
        position: relative;
        transition: var(--transition);
        border: none !important;
      }
      .instagram-premium i {
        font-size: 1.4rem;
        color: var(--white) !important;
      }
      .instagram-premium span {
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
      }
      .instagram-premium:hover {
        transform: translateY(-4px) scale(1.04);
        box-shadow: 0 10px 25px rgba(220, 39, 67, 0.4);
        filter: brightness(1.1);
      }
      .footer-links h5,
      .footer-contact h5 {
        font-size: 1rem;
        color: var(--secondary);
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 30px;
      }
      .footer-links ul {
        list-style: none;
      }
      .footer-links ul li {
        margin-bottom: 14px;
      }
      .footer-links ul li a {
        color: var(--text-sub);
        text-decoration: none;
        transition: 0.3s;
        font-size: 0.95rem;
      }
      .footer-links ul li a:hover {
        color: var(--secondary);
        padding-left: 6px;
      }
      .contact-unit {
        display: flex;
        gap: 16px;
        margin-bottom: 28px;
        align-items: flex-start;
      }
      .contact-unit i {
        color: var(--secondary);
        font-size: 1.2rem;
        padding-top: 4px;
        flex-shrink: 0;
      }
      .contact-unit h6 {
        font-size: 0.8rem;
        color: var(--text-sub);
        margin-bottom: 4px;
      }
      .contact-unit a {
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
        font-size: 0.95rem;
      }
      .contact-unit a:hover {
        color: var(--secondary);
      }
      .copyright {
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 40px;
        font-size: 0.85rem;
        color: var(--text-sub);
      }

      /* --- Floating Socials --- */
      .floating-socials {
        position: fixed;
        bottom: 25px;
        right: 25px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
        z-index: 999;
      }
      .floating-btn {
        display: flex;
        align-items: center;
        height: 60px;
        border-radius: 30px;
        text-decoration: none;
        overflow: hidden;
        white-space: nowrap;
        width: 60px;
        transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease, filter 0.3s ease;
        flex-direction: row-reverse;
        justify-content: flex-end;
      }
      .floating-btn i {
        min-width: 60px;
        font-size: 2.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .floating-btn span {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 0.95rem;
        padding-left: 20px;
        opacity: 0;
        transition: opacity 0.3s 0.1s;
      }
      .floating-btn:hover span {
        opacity: 1;
      }
      .wa-float {
        background: #25d366;
        color: white;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      }
      .wa-float:hover {
        width: 260px;
        background: #20b858;
      }
      .ig-float {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: white !important;
        box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
      }
      .ig-float:hover {
        width: 220px;
        filter: brightness(1.1);
      }

      /* ========================
           DİNAMİK İLETİŞİM FORMU (MODAL)
        ======================== */
      .modal-overlay {
        position: fixed;
        inset: 0;
        background: rgba(10, 25, 47, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 2000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
      }
      .modal-overlay.active {
        opacity: 1;
        visibility: visible;
      }
      .modal-content {
        background: var(--white);
        width: 90%;
        max-width: 500px;
        border-radius: 12px;
        padding: 40px;
        position: relative;
        transform: translateY(30px) scale(0.95);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
      }
      .modal-overlay.active .modal-content {
        transform: translateY(0) scale(1);
      }
      .modal-close {
        position: absolute;
        top: 20px;
        right: 25px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: var(--text-sub);
        cursor: pointer;
        transition: var(--transition);
      }
      .modal-close:hover {
        color: var(--primary);
        transform: rotate(90deg);
      }
      .modal-header {
        margin-bottom: 25px;
      }
      .modal-header h3 {
        font-size: 1.8rem;
        color: var(--primary);
        font-weight: 800;
        margin-bottom: 5px;
      }
      .modal-header p {
        color: #666;
        font-size: 0.9rem;
      }
      .form-group {
        margin-bottom: 20px;
      }
      .form-group label {
        display: block;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
      }
      .form-control {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 6px;
        font-size: 1rem;
        font-family: "Plus Jakarta Sans", sans-serif;
        transition: var(--transition);
        background: #f8fafc;
        color: var(--primary);
      }
      .form-control:focus {
        outline: none;
        border-color: var(--secondary);
        background: var(--white);
        box-shadow: 0 0 0 4px rgba(255, 180, 0, 0.1);
      }
      textarea.form-control {
        resize: vertical;
        min-height: 100px;
      }
      .modal-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        margin-top: 10px;
      }
      .form-checkbox-group {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin: 20px 0 10px;
      }
      .form-checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--secondary);
        cursor: pointer;
        margin-top: 3px;
      }
      .form-checkbox-group label {
        font-size: 0.85rem;
        color: #666;
        cursor: pointer;
        line-height: 1.4;
      }
      .form-checkbox-group label a {
        color: var(--secondary);
        text-decoration: underline;
      }
      .form-privacy-note {
        font-size: 0.75rem;
        color: #8892b0;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
        opacity: 0.8;
      }
      
      /* Custom Select Arrow */
      select.form-control {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230a192f'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 18px;
        padding-right: 45px;
      }

      /* ========================
           BEFORE / AFTER SLIDER
        ======================== */
      .before-after-section {
        padding: 100px 5%;
        background-color: #f8fafc;
      }
      .before-after-section .section-tag {
        margin-bottom: 50px;
      }
      .ba-container {
        max-width: 600px; /* Dikey görselleri ekrana sığdırmak için daraltıldı */
        margin: 0 auto;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
        position: relative;
      }
      .ba-slider {
        position: relative;
        width: 100%;
        line-height: 0;
      }
      .ba-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }
      /* İlk görselin yüksekliği konteyneri belirlesin */
      .ba-image.ba-before {
        position: relative;
      }
      .ba-image img {
        width: 100%;
        height: auto;
        display: block;
        pointer-events: none;
        user-select: none;
      }
      .ba-before {
        z-index: 1;
      }
      .ba-after {
        z-index: 2;
        clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
      }
      .ba-label {
        position: absolute;
        top: 30px;
        padding: 8px 16px;
        background: rgba(10, 25, 47, 0.7);
        color: var(--white);
        font-weight: 700;
        font-family: "Syncopate", sans-serif;
        font-size: 0.85rem;
        letter-spacing: 2px;
        border-radius: 4px;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        pointer-events: none;
      }
      .label-before {
        left: 30px;
        z-index: 1;
      }
      .label-after {
        right: 30px;
        z-index: 3;
      }
      .ba-range {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 4;
        opacity: 0;
        cursor: ew-resize;
      }
      .ba-handle {
        position: absolute;
        top: 0;
        left: 50%;
        width: 4px;
        height: 100%;
        background: var(--secondary);
        z-index: 3;
        transform: translateX(-50%);
        pointer-events: none;
      }
      .ba-handle::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        background: var(--primary);
        border: 3px solid var(--secondary);
        border-radius: 50%;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
      }
      .ba-arrows {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 4;
        display: flex;
        justify-content: center;
        width: 100%;
      }


      /* ========================
           RESPONSIVE AYARLARI
        ======================== */
      /* ========================
           FAQ SECTION
         ======================== */
      .faq-section {
        padding: 100px 10% 80px;
        background: #fdfdfd;
      }
      .faq-container {
        max-width: 800px;
        margin: 40px auto 0;
      }
      .faq-item {
        background: var(--white);
        border: 1px solid #eee;
        border-radius: 12px;
        margin-bottom: 16px;
        overflow: hidden;
        transition: var(--transition);
      }
      .faq-item:hover {
        border-color: var(--secondary);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      }
      .faq-question {
        padding: 22px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
      }
      .faq-question span {
        font-weight: 700;
        color: var(--primary);
        font-size: 1.05rem;
      }
      .faq-question i {
        color: var(--secondary);
        transition: transform 0.4s ease;
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: #fafafa;
      }
      .faq-answer p {
        padding: 0 30px 25px;
        color: #666;
        font-size: 0.95rem;
        line-height: 1.7;
      }
      .faq-item.active .faq-answer {
        max-height: 300px;
      }
      .faq-item.active .faq-question i {
        transform: rotate(180deg);
      }
      .faq-item.active {
        border-color: var(--secondary);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
      }

      @media (max-width: 1024px) {
        header {
          padding: 20px 5%;
        }
        header.scrolled {
          padding: 14px 5%;
        }
        nav {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .mobile-nav {
          display: flex;
        }
        .about {
          flex-direction: column;
          gap: 70px;
          text-align: center;
          padding: 90px 8%;
        }
        .about-image img {
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .experience-badge {
          right: -15px;
          bottom: -20px;
          padding: 22px;
        }
        .about-badges {
          justify-content: center;
        }
        .footer-main {
          grid-template-columns: 1fr 1fr;
          gap: 50px;
        }
        .footer-logo {
          grid-column: 1 / -1;
        }
      }

      @media (max-width: 768px) {

         .ba-container { max-width: 95%; } /* Mobilde ekranı kaplasın */
         .ba-label { top: 20px; font-size: 0.75rem; padding: 6px 12px; }
         .before-after-section { padding: 70px 5%; }
         .nav-cta-btn { display: none; }
        
        .hero {
          padding: 100px 6% 70px;
          min-height: 100svh;
        }
        .hero-eyebrow {
          font-size: 0.75rem;
          letter-spacing: 3px;
        }
        .hero h1 {
          font-size: clamp(2rem, 8vw, 2.8rem);
          line-height: 1.25;
          letter-spacing: -0.5px;
        }
        .hero p {
          font-size: 0.95rem;
        }
        .cta-group {
          flex-direction: column;
          gap: 14px;
        }
        .btn-premium {
          padding: 16px 28px;
          font-size: 0.8rem;
          justify-content: center;
          width: 100%;
          max-width: 320px;
        }

        .stats-strip {
          grid-template-columns: 1fr 1fr;
          padding: 40px 6%;
          gap: 25px;
        }
        .stat-card {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
          padding-bottom: 20px;
        }
        .stat-card:nth-child(even) {
          border-right: none;
        }
        .stat-card:nth-last-child(-n + 2) {
          border-bottom: none;
        }

        .services {
          padding: 80px 6%;
        }
        .services-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .service-item {
          padding: 48px 30px;
        }
        .service-item:hover {
          transform: none;
        }

        .about {
          padding: 80px 6%;
          gap: 55px;
        }
        .about-image img {
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }
        .experience-badge {
          position: relative;
          right: auto;
          bottom: auto;
          display: inline-block;
          margin-top: 20px;
          padding: 20px 28px;
        }

        .timeline-section {
          padding: 80px 5%;
        }
        .timeline-container::after {
          left: 24px;
        }
        .timeline-step {
          width: 100%;
          padding-left: 60px;
          padding-right: 0;
          margin-bottom: 30px;
        }
        .timeline-step.left,
        .timeline-step.right {
          left: 0;
        }
        .timeline-step::after,
        .timeline-step.right::after {
          left: 12px;
          right: auto;
        }
        .timeline-step:last-child {
          margin-bottom: 0;
        }

        .portfolio {
          padding: 70px 5%;
        }
        .work-grid {
          display: flex; /* Ensure it stays flex */
          flex-direction: column;
          gap: 16px;
        }
        .work-card, .work-card:nth-child(even) {
          flex-direction: column;
          min-height: auto;
        }
        .work-img-container {
          flex: 0 0 300px;
        }
        .work-info {
          padding: 30px 20px;
          flex: 1;
        }
        .work-info h3 {
          font-size: 1.5rem;
        }
        .project-desc {
          font-size: 0.95rem;
        }

        .location-map {
          height: auto;
          display: flex;
          flex-direction: column;
        }
        .map-container iframe {
          height: 350px;
        }
        .map-overlay-card {
          position: relative;
          top: 0;
          left: 0;
          transform: none;
          max-width: 100%;
          border-radius: 0;
          border-left: none;
          border-right: none;
          border-bottom: none;
          padding: 40px 6%;
        }

        footer {
          padding: 70px 6% 40px;
        }
        .footer-main {
          grid-template-columns: 1fr;
          gap: 40px;
          margin-bottom: 50px;
        }
        .footer-logo {
          grid-column: auto;
        }
        .footer-logo p {
          max-width: 100%;
        }
        .floating-socials {
          bottom: 20px;
          right: 20px;
        }
        .floating-btn {
          width: 50px;
          height: 50px;
        }
        .floating-btn i {
          min-width: 50px;
          font-size: 1.8rem;
        }
        .floating-btn span {
          display: none !important;
        }
        .floating-btn:hover {
          width: 50px !important;
        }
        .section-tag {
          margin-bottom: 45px;
        }
        .modal-content {
          padding: 30px 20px;
        }

        /* Force AOS visibility when disabled on mobile */
        [data-aos] {
          opacity: 1 !important;
          transform: none !important;
        }
      }

      @media (max-width: 480px) {

        .logo-img {
          height: 38px;
        }
        .logo-text {
          font-size: 1.1rem;
          letter-spacing: 3px;
        }
        .logo-text span {
          font-size: 0.65rem;
          letter-spacing: 5px;
        }
        .hero h1 {
          font-size: clamp(1.8rem, 9vw, 2.3rem);
          line-height: 1.25;
        }
        .stats-strip {
          grid-template-columns: 1fr 1fr;
          padding: 32px 5%;
        }
        .stat-card h3 {
          font-size: 1.9rem;
        }
        .stat-card p {
          font-size: 0.65rem;
          letter-spacing: 2px;
        }
        .service-item {
          padding: 40px 24px;
        }
        .section-tag h2 {
          font-size: 1.8rem;
        }
        .timeline-container::after {
          left: 20px;
        }
        .timeline-step {
          padding-left: 55px;
        }
        .timeline-step::after,
        .timeline-step.right::after {
          left: 8px;
          right: auto;
        }
      }
