:root {
            --primary: #145fc2;
            --primary-light: #1052ce;
            --primary-lighter: #408cf0;
            --accent: #F4A261;
            --accent-dark: #E76F51;
            --cream: #FEFAE0;
            --dark: #08265f;
            --text: #2D3B35;
            --text-light: #6B8075;
            --white: #ffffff;
            --bg-light: #F8FAF9;
            --border: #D8EAE0;
            --shadow: 0 20px 60px rgba(45, 106, 79, 0.12);
            --shadow-card: 0 8px 30px rgba(45, 106, 79, 0.10);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ===== TOPBAR ===== */
        .topbar {
            background: var(--dark);
            padding: 10px 0;
            position: relative;
            z-index: 100;
        }

        .topbar-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .topbar-contact {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .topbar-contact a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.3s;
        }

        .topbar-contact a:hover { color: var(--primary-lighter); }
        .topbar-contact a i { color: var(--primary-lighter); font-size: 12px; }

        .topbar-social { display: flex; gap: 14px; align-items: center; }

        .topbar-social a {
            color: rgba(255,255,255,0.6);
            font-size: 14px;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            transition: all 0.3s;
            text-decoration: none;
        }

        .topbar-social a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        /* ===== NAVBAR ===== */
        .navbar {
            background: white;
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .navbar.scrolled {
            box-shadow: 0 4px 30px rgba(45, 106, 79, 0.15);
        }

        .navbar-inner {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 75px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
        }

        .logo-text span:first-child {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .logo-text span:last-child {
            font-size: 11px;
            color: var(--text-light);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 8px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
            background: rgba(45, 106, 79, 0.07);
        }

        .nav-btn {
            background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
            color: white !important;
            padding: 10px 22px !important;
            border-radius: 50px !important;
            box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
            transition: all 0.3s !important;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4) !important;
            background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s;
        }

        .hamburger:hover { background: var(--bg-light); }

        .hamburger span {
            width: 26px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 4px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

        .mobile-menu {
            display: none;
            background: white;
            padding: 20px 30px;
            border-top: 1px solid var(--border);
        }

        .mobile-menu.open { display: block; }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu ul a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .mobile-menu ul a:hover {
            background: var(--bg-light);
            color: var(--primary);
            padding-left: 24px;
        }

        /* ===== HERO ===== */
        .hero-carousel { width: 100%; position: relative; }

        .hero-slide {
            width: 100%;
            height: 650px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform 8s ease;
        }

        .hero-slide:hover .hero-bg { transform: scale(1.05); }

        .slide-1 .hero-bg,
        .slide-2 .hero-bg,
        .slide-3 .hero-bg {
            background-image: linear-gradient(135deg, rgba(27,45,39,0.82) 0%, rgba(22, 70, 202, 0.6) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
            width: 100%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary);
            border: 1px solid var(--primary-light);
            color: var(--bg-light);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
        }

        .hero-badge i { font-size: 12px; }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(38px, 5vw, 68px);
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 20px;
            max-width: 680px;
        }

        .hero-content h1 span {
            color: var(--primary-lighter);
            display: block;
        }

        .hero-content p {
            color: rgba(255,255,255,0.8);
            font-size: 17px;
            line-height: 1.7;
            max-width: 520px;
            margin-bottom: 36px;
        }

        .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(244, 162, 97, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(244, 162, 97, 0.5);
        }

        .btn-outline {
            border: 2px solid rgba(255,255,255,0.5);
            color: white;
            padding: 14px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            background: white;
            color: var(--dark);
            border-color: white;
            transform: translateY(-3px);
        }

        .hero-stats {
            position: absolute;
            bottom: 40px;
            right: 60px;
            display: flex;
            gap: 24px;
            z-index: 2;
        }

        .stat-card {
            background: rgba(255,255,255,0.12);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 16px;
            padding: 16px 22px;
            text-align: center;
            color: white;
        }

        .stat-card .number {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-lighter);
            line-height: 1;
        }

        .stat-card .label {
            font-size: 11px;
            opacity: 0.75;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        /* Owl Carousel Custom Styles */
        .hero-carousel .owl-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .hero-carousel .owl-dot span {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.4) !important;
            border-radius: 50px;
            transition: all 0.3s;
            margin: 0 4px !important;
        }

        .hero-carousel .owl-dot.active span {
            width: 28px !important;
            background: var(--primary-lighter) !important;
        }

        .hero-carousel .owl-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 10;
            pointer-events: none;
        }

        .hero-carousel .owl-prev,
        .hero-carousel .owl-next {
            pointer-events: all;
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.15) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.25) !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            color: white !important;
            font-size: 18px !important;
            transition: all 0.3s;
        }

        .hero-carousel .owl-prev:hover,
        .hero-carousel .owl-next:hover {
            background: var(--primary) !important;
            border-color: var(--primary) !important;
            transform: scale(1.1);
        }

        /* ===== SECTIONS GENERAL ===== */
        section { padding: 100px 0; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-header { text-align: center; margin-bottom: 70px; }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-tag::before, .section-tag::after {
            content: '';
            width: 30px;
            height: 1.5px;
            background: var(--primary-lighter);
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto;
        }

        /* ===== ABOUT ===== */
        #hakkimizda {
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        #hakkimizda::before {
            content: '\f6be';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 380px;
            color: rgba(45, 106, 79, 0.04);
            pointer-events: none;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-visual {
            position: relative;
        }

        .about-img-main {
            width: 100%;
            height: 480px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-img-main::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .about-img-main i {
            font-size: 120px;
            color: rgba(255,255,255,0.2);
        }

        .about-float {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: white;
            border-radius: 20px;
            padding: 22px 28px;
            box-shadow: var(--shadow-card);
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .about-float-icon {
            width: 54px;
            height: 54px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }

        .about-float-text span {
            display: block;
            font-family: 'Playfair Display', serif;
            font-size: 26px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .about-float-text p {
            font-size: 12px;
            color: var(--text-light);
            margin-top: 3px;
        }

        .about-badge {
            position: absolute;
            top: 30px;
            left: -20px;
            background: var(--accent);
            color: white;
            padding: 12px 20px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 13px;
            box-shadow: 0 8px 20px rgba(244, 162, 97, 0.35);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(30px, 3vw, 42px);
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin: 36px 0;
        }

        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .about-feature-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, rgba(45,106,79,0.1), rgba(116,198,157,0.1));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 15px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .about-feature p {
            font-size: 14px;
            margin: 0;
            color: var(--text);
            font-weight: 500;
        }

        .about-feature small {
            color: var(--text-light);
            font-size: 12px;
        }

        .btn-green {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(45, 106, 79, 0.3);
        }

        .btn-green:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(45, 106, 79, 0.4);
        }

        /* ===== SERVICES ===== */
        #hizmetlerimiz {
            background: white;
            position: relative;
            overflow: hidden;
        }

        #hizmetlerimiz::after {
            content: '\f0f1';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: -60px;
            bottom: -40px;
            font-size: 350px;
            color: rgba(45, 106, 79, 0.03);
            pointer-events: none;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .service-card {
            background: var(--bg-light);
            border-radius: 24px;
            padding: 0;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--primary-lighter));
            transform: scaleX(0);
            transition: transform 0.4s;
            z-index: 2;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
            background: white;
            border-color: transparent;
        }

        .service-card:hover::before { transform: scaleX(1); }

        .service-img {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 24px 24px 0 0;
            position: relative;
            flex-shrink: 0;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.07);
        }

        .service-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 40%, rgba(27,45,39,0.45) 100%);
            pointer-events: none;
        }

        .service-img-badge {
            position: absolute;
            bottom: 12px;
            left: 16px;
            background: white;
            border-radius: 50px;
            padding: 5px 14px 5px 10px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .service-img-badge i { font-size: 12px; }

        .service-body {
            padding: 24px 28px 28px;
        }

        .si-green { color: var(--primary); }
        .si-orange { color: var(--accent-dark); }
        .si-teal { color: var(--primary-light); }

        .service-body h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .service-body p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s;
        }

        .service-link:hover { gap: 14px; }

        /* ===== TESTIMONIALS ===== */
        #testimonials {
            background: linear-gradient(135deg, var(--dark) 0%, #1a3a2e 100%);
            position: relative;
            overflow: hidden;
        }

        #testimonials::before {
            content: '\f4d3';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 5%;
            top: 10%;
            font-size: 300px;
            color: rgba(255,255,255,0.02);
            pointer-events: none;
        }

        #testimonials .section-title { color: white; }
        #testimonials .section-tag { color: var(--primary-lighter); }
        #testimonials .section-tag::before, #testimonials .section-tag::after { background: var(--primary-lighter); }
        #testimonials .section-subtitle { color: rgba(255,255,255,0.6); }

        .testimonial-card {
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 40px;
            margin: 20px 10px;
            position: relative;
        }

        .quote-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            margin-bottom: 24px;
        }

        .testimonial-card p {
            color: rgba(255,255,255,0.85);
            font-size: 16px;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 28px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            font-weight: 700;
            font-family: 'Playfair Display', serif;
            flex-shrink: 0;
        }

        .av-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
        .av-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
        .av-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
        .av-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

        .author-info strong {
            display: block;
            color: white;
            font-weight: 600;
            font-size: 15px;
        }

        .author-info span {
            color: rgba(255,255,255,0.5);
            font-size: 13px;
        }

        .stars {
            margin-left: auto;
            color: #FFD700;
            font-size: 14px;
        }

        .testimonials-carousel .owl-dots { margin-top: 40px; text-align: center; }

        .testimonials-carousel .owl-dot span {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.2) !important;
            border-radius: 50px;
            transition: all 0.3s;
            margin: 0 4px !important;
        }

        .testimonials-carousel .owl-dot.active span {
            width: 28px !important;
            background: var(--primary-lighter) !important;
        }

        /* ===== FAQ ===== */
        #faq {
            background: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        #faq::before {
            content: '\f059';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -20px;
            bottom: -20px;
            font-size: 400px;
            color: rgba(45, 106, 79, 0.04);
            pointer-events: none;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: box-shadow 0.3s;
        }

        .faq-item:hover { box-shadow: var(--shadow-card); }

        .faq-question {
            padding: 22px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 16px;
            user-select: none;
        }

        .faq-question strong {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark);
            line-height: 1.4;
        }

        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 13px;
            transition: all 0.4s;
            flex-shrink: 0;
        }

        .faq-item.open .faq-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-answer p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.7;
            padding-bottom: 22px;
        }

        .faq-item.open .faq-answer { max-height: 200px; }

        /* ===== CTA ===== */
        #cta {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        #cta::before {
            content: '\f6be';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 10%;
            top: -20%;
            font-size: 350px;
            color: rgba(255,255,255,0.06);
            transform: rotate(-20deg);
        }

        #cta::after {
            content: '\f0f1';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 5%;
            bottom: -20%;
            font-size: 250px;
            color: rgba(255,255,255,0.04);
            transform: rotate(15deg);
        }

        .cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
            flex-wrap: wrap;
        }

        .cta-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 3vw, 44px);
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .cta-text p {
            color: rgba(255,255,255,0.8);
            font-size: 16px;
            line-height: 1.6;
        }

        .cta-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            flex-shrink: 0;
        }

        .btn-white {
            background: white;
            color: var(--primary);
            padding: 16px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }

        .btn-outline-white {
            border: 2px solid rgba(255,255,255,0.6);
            color: white;
            padding: 14px 34px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-outline-white:hover {
            background: rgba(255,255,255,0.15);
            border-color: white;
            transform: translateY(-3px);
        }

        /* ===== TEAM ===== */
        #ekibimiz {
            background: white;
            position: relative;
            overflow: hidden;
        }

        #ekibimiz::before {
            content: '\f0c0';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: -40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 320px;
            color: rgba(45, 106, 79, 0.03);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .team-card {
            text-align: center;
            position: relative;
        }

        .team-avatar {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
            border: 4px solid var(--border);
            transition: all 0.4s ease;
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-avatar {
            border-color: var(--primary);
            box-shadow: 0 8px 30px rgba(45, 106, 79, 0.25);
        }

        .team-card:hover .team-avatar img {
            transform: scale(1.08);
        }

        .team-badge {
            position: absolute;
            bottom: 6px;
            right: 6px;
            width: 36px;
            height: 36px;
            background: var(--primary);
            border-radius: 50%;
            border: 3px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            z-index: 2;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .team-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .team-card .role {
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
        }

        .team-card p {
            color: var(--text-light);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 16px;
            padding: 0 10px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 8px;
        }

        .team-social a {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1.5px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 13px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .team-social a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        /* ===== MAP ===== */
        #konum {
            padding: 0;
        }

        .map-header {
            text-align: center;
            padding: 80px 0 50px;
            background: var(--bg-light);
        }

        #map-iframe {
            width: 100%;
            height: 480px;
            border: 0;
            display: block;
            filter: saturate(0.9);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            padding: 80px 0 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '\f6be';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -40px;
            top: -40px;
            font-size: 400px;
            color: rgba(255,255,255,0.02);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 60px;
            position: relative;
        }

        .footer-brand .logo { margin-bottom: 20px; }

        .footer-brand .logo-text span:first-child,
        .footer-brand .logo-text span:last-child { color: rgba(255,255,255,0.8); }

        .footer-brand p {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .footer-social { display: flex; gap: 10px; }

        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            color: white;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 24px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .footer-links { list-style: none; }

        .footer-links li { margin-bottom: 12px; }

        .footer-links a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .footer-links a i { font-size: 11px; color: var(--primary-lighter); transition: transform 0.3s; }

        .footer-links a:hover {
            color: var(--primary-lighter);
            padding-left: 6px;
        }

        .footer-links a:hover i { transform: translateX(4px); }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .fci-icon {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.05);
            border-radius: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-lighter);
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .fci-info strong {
            display: block;
            color: rgba(255,255,255,0.8);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .fci-info span {
            color: rgba(255,255,255,0.45);
            font-size: 13px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.35);
            font-size: 13px;
        }

        .footer-bottom span { color: var(--primary-lighter); }

        .footer-bottom-links { display: flex; gap: 20px; }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.35);
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover { color: var(--primary-lighter); }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
            transition: all 0.4s;
            opacity: 0;
            transform: translateY(20px);
            z-index: 999;
            text-decoration: none;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(45, 106, 79, 0.5);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }

        @media (max-width: 900px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .about-grid { grid-template-columns: 1fr; gap: 50px; }
            .faq-grid { grid-template-columns: 1fr; }
            .cta-inner { flex-direction: column; text-align: center; }
            .cta-actions { justify-content: center; }
            .hero-stats { position: static; flex-wrap: wrap; justify-content: center; margin-top: 30px; }
            .hero-content { text-align: center; }
            .hero-btns { justify-content: center; }
        }

        @media (max-width: 768px) {
            .topbar-contact { display: none; }
            .topbar-social { margin: 0 auto; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .hero-slide { height: 560px; }
            .hero-content h1 { font-size: 34px; }
            section { padding: 70px 0; }
            .services-grid { grid-template-columns: 1fr; }
            .team-grid { grid-template-columns: repeat(2, 1fr); }
            .about-badge { display: none; }
            .about-float { right: 0; bottom: -20px; }
            .team-avatar { width: 130px; height: 130px; }
        }

        @media (max-width: 520px) {
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .team-grid { grid-template-columns: 1fr; }
            .hero-slide { height: 480px; }
            .hero-stats { gap: 12px; }
            .stat-card { padding: 12px 16px; }
            .stat-card .number { font-size: 22px; }
        }

        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .animate-in { animation: fadeInUp 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; }

        .hero-badge { animation: fadeInUp 0.6s 0.2s both; }
        .hero-content h1 { animation: fadeInUp 0.6s 0.4s both; }
        .hero-content p { animation: fadeInUp 0.6s 0.6s both; }
        .hero-btns { animation: fadeInUp 0.6s 0.8s both; }