  :root {
            /* Deeper, more striking color palette */
            --primary-dark: #0A1128;
            --primary-main: #1C2541;
            --accent-color: #FFB703;
            --accent-hover: #FB8500;
            --text-dark: #1F2937;
            --text-muted: #6B7280;
            --bg-light: #F3F4F6;
            --bg-white: #FFFFFF;
            --danger-color: #EF4444;
            --success-color: #10B981;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-accent: 0 10px 25px -5px rgba(255, 183, 3, 0.4);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden; /* Prevent horizontal scroll from animations */
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: -0.02em;
        }

        a {
            text-decoration: none;
            transition: var(--transition);
        }

        /* Animations */
        @keyframes pulse-red {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
        }

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

        @keyframes pulse-yellow {
            0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(255, 183, 3, 0); }
            100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 183, 3, 0); }
        }

        /* Topbar - Striking Dark */
        .topbar {
            background-color: var(--primary-dark);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.85rem;
            padding: 10px 0;
            font-weight: 500;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .topbar a {
            color: var(--bg-white);
            margin-right: 20px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

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

        .topbar i {
            color: var(--accent-color);
            font-size: 1.1rem;
        }

        .status-indicator {
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: var(--danger-color);
            border-radius: 50%;
            margin-right: 8px;
            animation: pulse-red 2s infinite;
        }

        /* Navbar - Thick and Bold */
        .navbar {
            background-color: var(--bg-white);
            padding: 15px 0;
            box-shadow: var(--shadow-sm);
            z-index: 1030;
        }

        .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 900;
            font-size: 1.6rem;
            color: var(--primary-dark) !important;
            display: flex;
            align-items: center;
            gap: 12px;
            letter-spacing: -0.03em;
        }

        .brand-icon {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
            color: var(--primary-dark);
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.6rem;
            transform: rotate(-10deg);
        }

        .nav-link {
            font-weight: 600;
            color: var(--primary-main) !important;
            padding: 10px 18px !important;
            font-size: 0.95rem;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 18px;
            right: 18px;
            height: 3px;
            background-color: var(--accent-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
            border-radius: 3px 3px 0 0;
        }

        .nav-link:hover::after, .nav-item.active .nav-link::after {
            transform: scaleX(1);
        }

        .nav-link:hover, .nav-item.active .nav-link {
            color: var(--primary-dark) !important;
        }

        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-lg);
            border-radius: 12px;
            padding: 15px 0;
            margin-top: 15px;
            border-top: 4px solid var(--accent-color);
        }

        .dropdown-item {
            font-weight: 500;
            padding: 10px 25px;
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .dropdown-item:hover {
            background-color: var(--bg-light);
            color: var(--accent-hover);
            padding-left: 30px;
        }

        /* Hero Banner */
        .hero-banner {
            position: relative;
            background: linear-gradient(110deg, rgba(10, 17, 40, 0.95) 0%, rgba(10, 17, 40, 0.8) 50%, rgba(10, 17, 40, 0.4) 100%), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 140px 0 220px 0; 
            color: var(--bg-white);
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,183,3,0.15) 0%, rgba(255,183,3,0) 70%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-banner h1 {
            color: var(--bg-white);
            font-size: 3.8rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .hero-banner h1 span {
            color: var(--accent-color);
            display: block;
        }

        .hero-banner p.lead {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            margin-bottom: 40px;
            font-weight: 400;
        }

        .feature-ticks {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 40px;
        }

        .feature-ticks span {
            font-size: 1.1rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .feature-ticks i {
            color: var(--accent-color);
            font-size: 1.3rem;
        }

        /* Buttons */
        .btn-custom {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            padding: 15px 35px;
            border-radius: 8px;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-custom-primary {
            background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
            color: var(--primary-dark);
            box-shadow: var(--shadow-accent);
        }

        .btn-custom-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .btn-custom-primary:hover::before {
            left: 100%;
        }
        
        .btn-custom-primary:hover {
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(255, 183, 3, 0.6);
        }

        .btn-whatsapp-outline {
            background: transparent;
            border: 2px solid #25D366;
            color: var(--bg-white);
        }

        .btn-whatsapp-outline:hover {
            background: #25D366;
            color: var(--bg-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
        }

        /* Overlapping Trust Cards */
        .quick-services-wrapper {
            margin-top: -120px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .quick-card {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: var(--shadow-lg);
            height: 100%;
            transition: var(--transition);
            border-bottom: 4px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .quick-card::before {
            content: '';
            position: absolute;
            top: 0; right: 0; width: 100px; height: 100px;
            background: var(--bg-light);
            border-radius: 0 0 0 100%;
            z-index: 0;
            transition: var(--transition);
        }

        .quick-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--accent-color);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        .quick-card:hover::before {
            background: var(--accent-color);
            opacity: 0.1;
            transform: scale(1.5);
        }

        .quick-icon {
            width: 75px;
            height: 75px;
            background: var(--bg-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--primary-main);
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            transition: var(--transition);
            transform: rotate(-5deg);
        }

        .quick-card:hover .quick-icon {
            background: var(--primary-main);
            color: var(--accent-color);
            transform: rotate(0deg);
        }

        .quick-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .quick-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .quick-card-link {
            display: inline-flex;
            align-items: center;
            font-weight: 700;
            color: var(--primary-dark);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Section Titles */
        .section-padding {
            padding: 100px 0;
        }

        .bg-light-gray {
            background-color: var(--bg-light);
        }

        .title-wrapper {
            text-align: center;
            margin-bottom: 60px;
        }

        .subtitle {
            color: var(--accent-hover);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
        }

        .title-wrapper h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .title-wrapper p {
            color: var(--text-muted);
            font-size: 1.15rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* ========================================================
           PURE CSS CREATIVE ENERGY CORE (No Images) 
           ======================================================== */
        .pure-css-reactor {
            position: relative;
            width: 100%;
            max-width: 450px;
            aspect-ratio: 1 / 1;
            margin: 0 auto;
            background: radial-gradient(circle at center, var(--primary-main) 0%, var(--primary-dark) 100%);
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3), inset 0 0 40px rgba(0,0,0,0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 183, 3, 0.1);
            overflow: hidden;
        }

        /* Arka plan ızgarası (Circuit Grid) */
        .reactor-grid {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 1;
        }

        /* Akan devre akımları (Flowing Electricity Lines) */
        .circuit-line {
            position: absolute;
            background: rgba(255, 183, 3, 0.1);
            z-index: 2;
            overflow: hidden;
        }
        .circuit-line.horizontal { width: 100%; height: 2px; }
        .circuit-line.vertical { height: 100%; width: 2px; }

        .line-1 { top: 20%; left: 0; }
        .line-2 { bottom: 30%; left: 0; }
        .line-3 { left: 25%; top: 0; }
        .line-4 { right: 25%; top: 0; }

        .energy-flow {
            position: absolute;
            background: var(--accent-color);
            box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
        }
        .horizontal .energy-flow { width: 40px; height: 100%; top: 0; animation: flow-x 3s linear infinite; }
        .vertical .energy-flow { height: 40px; width: 100%; left: 0; animation: flow-y 4s linear infinite; }
        .line-2 .energy-flow { animation-direction: reverse; animation-duration: 5s; }
        .line-4 .energy-flow { animation-direction: reverse; animation-duration: 2.5s; }

        @keyframes flow-x { 0% { left: -50px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
        @keyframes flow-y { 0% { top: -50px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

        /* Merkez Çekirdek (Core) */
        .core-center {
            position: relative;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle, var(--accent-hover) 0%, var(--accent-color) 100%);
            border-radius: 50%;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--primary-dark);
            box-shadow: 0 0 30px rgba(255, 183, 3, 0.6), inset 0 0 20px rgba(255,255,255,0.5);
            animation: core-beat 1.5s infinite alternate ease-in-out;
        }

        .core-center i {
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        @keyframes core-beat {
            0% { transform: scale(0.95); box-shadow: 0 0 20px rgba(255, 183, 3, 0.4), inset 0 0 10px rgba(255,255,255,0.3); }
            100% { transform: scale(1.05); box-shadow: 0 0 60px rgba(255, 183, 3, 0.9), inset 0 0 30px rgba(255,255,255,0.8); }
        }

        /* Yörünge Halkaları (Orbit Rings) */
        .orbit-ring {
            position: absolute;
            border-radius: 50%;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            z-index: 4;
        }
        .orbit-1 {
            width: 220px; height: 220px;
            border: 2px dashed rgba(255, 183, 3, 0.4);
            animation: spin 12s linear infinite;
        }
        .orbit-2 {
            width: 320px; height: 320px;
            border: 2px dotted rgba(255, 183, 3, 0.2);
            animation: spin 20s linear infinite reverse;
        }

        @keyframes spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

        /* Floating Stats Badges */
        .floating-stat {
            position: absolute;
            background: rgba(10, 17, 40, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 183, 3, 0.3);
            padding: 15px 25px;
            border-radius: 16px;
            text-align: center;
            z-index: 10;
            box-shadow: 0 15px 30px rgba(0,0,0,0.4);
            color: var(--bg-white);
        }
        
        .stat-badge-1 {
            top: 15%; left: -20px;
            animation: float 4s ease-in-out infinite;
        }
        
        .stat-badge-2 {
            bottom: 15%; right: -20px;
            animation: float 5s ease-in-out infinite reverse;
            border-color: var(--success-color);
        }

        .floating-stat h4 {
            color: var(--accent-color);
            font-size: 2rem;
            margin: 0;
            line-height: 1;
            text-shadow: 0 0 10px rgba(255,183,3,0.5);
        }

        .stat-badge-2 h4 {
            color: var(--success-color);
            text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        }

        .floating-stat span {
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #9CA3AF;
            margin-top: 5px;
            display: block;
        }

        /* Live indicator */
        .live-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: var(--accent-color);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent-color);
            animation: pulse-yellow 1.5s infinite;
        }

        .electric-list {
            list-style: none;
            padding: 0;
            margin: 30px 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .electric-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 600;
            color: var(--text-dark);
            background: var(--bg-white);
            padding: 15px;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .electric-list li::before {
            content: '';
            position: absolute;
            left: 0; top: 0; height: 100%; width: 4px;
            background: var(--accent-color);
            box-shadow: 0 0 10px var(--accent-color);
        }

        .electric-list li:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
            border-color: rgba(255, 183, 3, 0.3);
        }

        .electric-list i {
            color: var(--accent-color);
            font-size: 1.4rem;
        }

        /* Detailed Services Grid */
        .service-list-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-left: 4px solid var(--bg-light);
        }

        .service-list-card:hover {
            transform: translateX(10px);
            border-left-color: var(--accent-color);
            box-shadow: var(--shadow-md);
            background-color: var(--primary-dark);
        }

        .service-list-icon {
            width: 50px;
            height: 50px;
            background: var(--bg-light);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-main);
            transition: var(--transition);
        }

        .service-list-card:hover .service-list-icon {
            background: rgba(255, 183, 3, 0.1);
            color: var(--accent-color);
        }

        .service-list-card h4 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-dark);
            transition: var(--transition);
        }

        .service-list-card:hover h4 {
            color: var(--bg-white);
        }

        /* Process Steps */
        .process-container {
            position: relative;
        }

        .process-container::after {
            content: '';
            position: absolute;
            top: 45px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: dashed 2px var(--accent-color);
            z-index: 0;
            opacity: 0.5;
        }

        .process-step-item {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .step-number {
            width: 90px;
            height: 90px;
            background: var(--bg-white);
            border: 4px solid var(--bg-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: var(--primary-main);
            margin: 0 auto 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            font-weight: 800;
        }

        .process-step-item:hover .step-number {
            border-color: var(--accent-color);
            background: var(--primary-dark);
            color: var(--accent-color);
            transform: scale(1.1);
        }

        .process-step-item h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* Areas (Neighborhoods) */
        .area-pill {
            display: block;
            background: var(--bg-white);
            border: 1px solid rgba(0,0,0,0.05);
            padding: 15px 20px;
            border-radius: 50px;
            text-align: center;
            color: var(--primary-dark);
            font-weight: 600;
            font-size: 1rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .area-pill::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 0%; height: 100%;
            background: var(--primary-main);
            transition: var(--transition);
            z-index: -1;
        }

        .area-pill:hover {
            color: var(--accent-color);
            border-color: var(--primary-main);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .area-pill:hover::before {
            width: 100%;
        }

        /* FAQ Customization */
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 12px !important;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .accordion-button {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--primary-dark);
            padding: 20px 25px;
            background-color: var(--bg-white);
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-dark);
            color: var(--accent-color);
            box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
        }

        .accordion-button::after {
            background-size: 1.2rem;
        }

        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) saturate(100%) invert(75%) sepia(50%) saturate(1637%) hue-rotate(352deg) brightness(101%) contrast(106%); /* Approximation to accent color */
        }

        .accordion-body {
            padding: 25px;
            color: var(--text-muted);
            line-height: 1.8;
            background-color: #FAFAFA;
        }

        /* Call To Action Section */
        .cta-box {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-main));
            border-radius: 24px;
            padding: 70px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-box::before {
            content: '\F4B3'; /* Lightning icon */
            font-family: 'bootstrap-icons';
            position: absolute;
            font-size: 20rem;
            color: rgba(255, 255, 255, 0.03);
            right: -50px;
            bottom: -50px;
            line-height: 1;
            transform: rotate(-15deg);
        }

        .cta-box h2 {
            color: var(--bg-white);
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-box p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .footer {
            background-color: #070B19;
            color: #9CA3AF;
            padding: 80px 0 30px;
            border-top: 5px solid var(--accent-color);
        }

        .footer h4 {
            color: var(--bg-white);
            font-size: 1.3rem;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .footer-brand i {
            color: var(--accent-color);
            margin-right: 10px;
            font-size: 1.8rem;
            vertical-align: middle;
        }

        .footer-brand span {
            color: var(--bg-white);
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            vertical-align: middle;
            letter-spacing: -0.03em;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #9CA3AF;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
        }

        .footer-links a::before {
            content: '\F285';
            font-family: 'bootstrap-icons';
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--accent-color);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-color);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .footer-contact-text h5 {
            color: var(--bg-white);
            font-size: 0.9rem;
            margin: 0 0 5px 0;
            font-weight: 600;
        }

        .footer-contact-text a, .footer-contact-text span {
            color: #9CA3AF;
            font-size: 1rem;
        }

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

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--bg-white);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-size: 1.2rem;
        }

        .social-links a:hover {
            background: var(--accent-color);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 30px;
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* Responsive Fixes */
        @media (max-width: 991.98px) {
            .hero-banner { padding: 100px 0 150px 0; text-align: center; }
            .hero-banner h1 { font-size: 2.8rem; }
            .feature-ticks { align-items: center; }
            .quick-services-wrapper { margin-top: -80px; }
            .process-container::after { display: none; }
            .pure-css-reactor { margin-bottom: 60px; max-width: 350px;}
            .stat-badge-1 { left: 0; top: 5%; }
            .stat-badge-2 { right: 0; bottom: 5%; }
            .cta-box h2 { font-size: 2.2rem; }
            .footer-bottom { justify-content: center; text-align: center; }
        }
        @media (max-width: 767.98px) {
            .hero-banner h1 { font-size: 2.2rem; }
            .btn-custom { width: 100%; justify-content: center; margin-bottom: 10px; }
            .electric-list { grid-template-columns: 1fr; }
            .pure-css-reactor { max-width: 280px; }
            .core-center { width: 90px; height: 90px; font-size: 2.5rem; }
            .orbit-1 { width: 150px; height: 150px; }
            .orbit-2 { width: 220px; height: 220px; }
            .floating-stat { padding: 10px 15px; }
            .floating-stat h4 { font-size: 1.5rem; }
        }

/* =========================================================
   PHP dosyalarından taşınan ek CSS blokları
   Kaynak: header/footer/sayfa dosyaları
   Not: PHP içindeki <style> blokları kaldırılmıştır.
   ========================================================= */

/* === header.php dosyasından taşındı (style blok 1) === */
.navbar .dropdown-menu.kec-mega-menu {
            width: min(880px, 94vw);
            padding: 18px;
            border: 0;
            border-radius: 18px;
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
        }

        .kec-mega-title {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--primary-dark);
            padding: 0 8px 12px;
            margin-bottom: 10px;
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }

        .kec-mega-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 7px 10px;
        }

        .kec-mega-grid .dropdown-item {
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: normal;
            border-radius: 10px;
            padding: 9px 10px;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.35;
            color: #1f2937;
        }

        .kec-mega-grid .dropdown-item i {
            flex: 0 0 auto;
            color: var(--primary-dark);
            font-size: 13px;
        }

        .kec-mega-grid .dropdown-item span {
            display: inline-block;
        }

        .kec-mega-grid .dropdown-item:hover,
        .kec-mega-grid .dropdown-item.active {
            background: rgba(255, 193, 7, 0.18);
            color: var(--primary-dark);
        }

        @media (min-width: 992px) {
            .navbar .nav-item.dropdown {
                position: relative;
            }

            .navbar .dropdown-menu.kec-mega-menu {
                right: 0;
                left: auto;
            }
        }

        @media (max-width: 991.98px) {
            .navbar .dropdown-menu.kec-mega-menu {
                width: 100%;
                max-height: 60vh;
                overflow-y: auto;
                padding: 12px;
                box-shadow: none;
                border-radius: 12px;
            }

            .kec-mega-grid {
                grid-template-columns: 1fr;
            }
        }

/* === hakkimizda.php dosyasından taşındı (style blok 1) === */
.page-breadcrumb-strip {    position: relative;    padding: 58px 0;    background:        radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.18), transparent 28%),        linear-gradient(135deg, #061126 0%, #0f172a 100%);    overflow: hidden;}.page-breadcrumb-strip::before {    content: "";    position: absolute;    inset: 0;    background-image:        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);    background-size: 34px 34px;    opacity: .55;}.page-breadcrumb-strip .container {    position: relative;    z-index: 2;}.breadcrumb-content {    display: flex;    align-items: center;    justify-content: space-between;    gap: 25px;}.breadcrumb-content h1 {    font-family: 'Poppins', sans-serif;    font-size: clamp(34px, 4vw, 54px);    font-weight: 900;    color: #fff;    margin: 0;    letter-spacing: -1px;}.page-breadcrumb-strip .breadcrumb {    display: inline-flex;    align-items: center;    padding: 12px 18px;    border-radius: 999px;    background: rgba(255,255,255,0.08);    border: 1px solid rgba(255,255,255,0.12);}.page-breadcrumb-strip .breadcrumb-item,.page-breadcrumb-strip .breadcrumb-item.active {    color: rgba(255,255,255,0.75);    font-weight: 600;}.page-breadcrumb-strip .breadcrumb-item a {    color: #ffb703;    text-decoration: none;    font-weight: 800;}.page-breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {    color: rgba(255,255,255,0.55);}.about-main-section {    padding-top: 80px !important;}@media (max-width: 767.98px) {    .page-breadcrumb-strip {        padding: 42px 0;    }    .breadcrumb-content {        flex-direction: column;        align-items: flex-start;    }    .page-breadcrumb-strip .breadcrumb {        padding: 10px 14px;    }}

/* === hizmetlerimiz-2.php dosyasından taşındı (style blok 1) === */
.page-breadcrumb-strip {
        position: relative;
        padding: 58px 0;
        background:
            radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.18), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        overflow: hidden;
    }

    .page-breadcrumb-strip::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 34px 34px;
        opacity: .55;
    }

    .page-breadcrumb-strip .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }

    .breadcrumb-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 900;
        color: #fff;
        margin: 0;
        letter-spacing: -1px;
    }

    .page-breadcrumb-strip .breadcrumb {
        display: inline-flex;
        align-items: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
    }

    .page-breadcrumb-strip .breadcrumb-item,
    .page-breadcrumb-strip .breadcrumb-item.active {
        color: rgba(255,255,255,0.75);
        font-weight: 600;
    }

    .page-breadcrumb-strip .breadcrumb-item a {
        color: #ffb703;
        text-decoration: none;
        font-weight: 800;
    }

    .page-breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255,255,255,0.55);
    }

    .services-intro-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 18%, rgba(255,183,3,.18), transparent 28%),
            linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 48px;
        border: 1px solid rgba(15, 23, 42, .06);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    }

    .services-intro-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        color: #0f172a;
        font-size: clamp(34px, 4vw, 56px);
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }

    .services-intro-box p {
        max-width: 820px;
        color: #64748b;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .dynamic-service-card {
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 32px;
        border-radius: 28px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, .07);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
        text-decoration: none;
        overflow: hidden;
        transition: all .25s ease;
    }

    .dynamic-service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #ffb703, #fb8500);
        opacity: .95;
    }

    .dynamic-service-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 24px 60px rgba(15, 23, 42, .13);
    }

    .dynamic-service-icon {
        width: 68px;
        height: 68px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        background: #0f172a;
        color: #ffb703;
        font-size: 31px;
        margin-bottom: 24px;
    }

    .dynamic-service-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 850;
        font-size: 24px;
        color: #0f172a;
        margin-bottom: 14px;
    }

    .dynamic-service-card p {
        color: #64748b;
        line-height: 1.75;
        margin-bottom: 24px;
        flex: 1;
    }

    .dynamic-service-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0f172a;
        font-weight: 800;
        font-size: 15px;
    }

    .dynamic-service-link i {
        color: #fb8500;
        transition: transform .2s ease;
    }

    .dynamic-service-card:hover .dynamic-service-link i {
        transform: translateX(4px);
    }

    .service-process-card {
        height: 100%;
        padding: 30px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid rgba(15,23,42,.06);
        box-shadow: 0 16px 38px rgba(15,23,42,.08);
    }

    .service-process-card span {
        width: 54px;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: rgba(255, 183, 3, .18);
        color: #0f172a;
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .service-process-card h3 {
        font-family: 'Poppins', sans-serif;
        color: #0f172a;
        font-size: 22px;
        font-weight: 850;
        margin-bottom: 12px;
    }

    .service-process-card p {
        color: #64748b;
        line-height: 1.7;
        margin: 0;
    }

    .services-cta-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 12%, rgba(255,183,3,.24), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        padding: 52px;
        color: #fff;
        box-shadow: 0 24px 60px rgba(15,23,42,.18);
    }

    .services-cta-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 4vw, 48px);
        margin-bottom: 16px;
    }

    .services-cta-box p {
        max-width: 760px;
        color: rgba(255,255,255,.72);
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    @media (max-width: 767.98px) {
        .page-breadcrumb-strip {
            padding: 42px 0;
        }

        .breadcrumb-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .services-intro-box {
            padding: 30px;
        }

        .services-cta-box {
            padding: 32px;
        }
    }
	.services-intro-box .btn-whatsapp-outline {
    background: #25D366 !important;
    border: 2px solid #25D366 !important;
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}

.services-intro-box .btn-whatsapp-outline i,
.services-intro-box .btn-whatsapp-outline span {
    color: #fff !important;
}

.services-intro-box .btn-whatsapp-outline:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: #fff !important;
    transform: translateY(-2px);
}
.services-cta-box .btn-whatsapp-outline {
    background: #25D366 !important;
    border: 2px solid #25D366 !important;
    color: #fff !important;
}

.services-cta-box .btn-whatsapp-outline:hover {
    background: #128C7E !important;
    border-color: #128C7E !important;
    color: #fff !important;
}

/* === bolgelerimiz.php dosyasından taşındı (style blok 1) === */
.page-breadcrumb-strip {
        position: relative;
        padding: 58px 0;
        background:
            radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.18), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        overflow: hidden;
    }

    .page-breadcrumb-strip::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 34px 34px;
        opacity: .55;
    }

    .page-breadcrumb-strip .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }

    .breadcrumb-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 900;
        color: #fff;
        margin: 0;
        letter-spacing: -1px;
    }

    .page-breadcrumb-strip .breadcrumb {
        display: inline-flex;
        align-items: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
    }

    .page-breadcrumb-strip .breadcrumb-item,
    .page-breadcrumb-strip .breadcrumb-item.active {
        color: rgba(255,255,255,0.75);
        font-weight: 600;
    }

    .page-breadcrumb-strip .breadcrumb-item a {
        color: #ffb703;
        text-decoration: none;
        font-weight: 800;
    }

    .page-breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255,255,255,0.55);
    }

    .areas-intro-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 18%, rgba(255,183,3,.18), transparent 28%),
            linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 48px;
        border: 1px solid rgba(15, 23, 42, .06);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    }

    .areas-intro-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        color: #0f172a;
        font-size: clamp(34px, 4vw, 56px);
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }

    .areas-intro-box p {
        max-width: 850px;
        color: #64748b;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .areas-intro-box .btn-whatsapp-outline {
        background: #25D366 !important;
        border: 2px solid #25D366 !important;
        color: #fff !important;
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
    }

    .areas-intro-box .btn-whatsapp-outline:hover {
        background: #128C7E !important;
        border-color: #128C7E !important;
        color: #fff !important;
        transform: translateY(-2px);
    }

    .dynamic-area-card {
        position: relative;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 28px;
        border-radius: 26px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, .07);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
        text-decoration: none;
        overflow: hidden;
        transition: all .25s ease;
    }

    .dynamic-area-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 5px;
        background: linear-gradient(90deg, #ffb703, #fb8500);
    }

    .dynamic-area-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 24px 60px rgba(15, 23, 42, .13);
    }

    .dynamic-area-icon {
        width: 62px;
        height: 62px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 19px;
        background: #0f172a;
        color: #ffb703;
        font-size: 29px;
        margin-bottom: 22px;
    }

    .dynamic-area-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 850;
        font-size: 23px;
        color: #0f172a;
        margin-bottom: 12px;
    }

    .dynamic-area-card p {
        color: #64748b;
        line-height: 1.7;
        margin-bottom: 22px;
        flex: 1;
    }

    .dynamic-area-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0f172a;
        font-weight: 800;
        font-size: 15px;
    }

    .dynamic-area-link i {
        color: #fb8500;
        transition: transform .2s ease;
    }

    .dynamic-area-card:hover .dynamic-area-link i {
        transform: translateX(4px);
    }

    .area-info-card {
        height: 100%;
        padding: 30px;
        border-radius: 24px;
        background: #fff;
        border: 1px solid rgba(15,23,42,.06);
        box-shadow: 0 16px 38px rgba(15,23,42,.08);
    }

    .area-info-card i {
        width: 54px;
        height: 54px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: rgba(255, 183, 3, .18);
        color: #0f172a;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .area-info-card h3 {
        font-family: 'Poppins', sans-serif;
        color: #0f172a;
        font-size: 22px;
        font-weight: 850;
        margin-bottom: 12px;
    }

    .area-info-card p {
        color: #64748b;
        line-height: 1.7;
        margin: 0;
    }

    .areas-cta-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 12%, rgba(255,183,3,.24), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        padding: 52px;
        color: #fff;
        box-shadow: 0 24px 60px rgba(15,23,42,.18);
    }

    .areas-cta-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 4vw, 48px);
        margin-bottom: 16px;
    }

    .areas-cta-box p {
        max-width: 760px;
        color: rgba(255,255,255,.72);
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .areas-cta-box .btn-whatsapp-outline {
        background: #25D366 !important;
        border: 2px solid #25D366 !important;
        color: #fff !important;
    }

    .areas-cta-box .btn-whatsapp-outline:hover {
        background: #128C7E !important;
        border-color: #128C7E !important;
        color: #fff !important;
    }

    @media (max-width: 767.98px) {
        .page-breadcrumb-strip {
            padding: 42px 0;
        }

        .breadcrumb-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .areas-intro-box {
            padding: 30px;
        }

        .areas-cta-box {
            padding: 32px;
        }
    }

/* === iletisim.php dosyasından taşındı (style blok 1) === */
.page-breadcrumb-strip {
        position: relative;
        padding: 58px 0;
        background:
            radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.18), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        overflow: hidden;
    }

    .page-breadcrumb-strip::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 34px 34px;
        opacity: .55;
    }

    .page-breadcrumb-strip .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }

    .breadcrumb-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 900;
        color: #fff;
        margin: 0;
        letter-spacing: -1px;
    }

    .page-breadcrumb-strip .breadcrumb {
        display: inline-flex;
        align-items: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
    }

    .page-breadcrumb-strip .breadcrumb-item,
    .page-breadcrumb-strip .breadcrumb-item.active {
        color: rgba(255,255,255,0.75);
        font-weight: 600;
    }

    .page-breadcrumb-strip .breadcrumb-item a {
        color: #ffb703;
        text-decoration: none;
        font-weight: 800;
    }

    .page-breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255,255,255,0.55);
    }

    .contact-intro-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 18%, rgba(255,183,3,.18), transparent 28%),
            linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 48px;
        border: 1px solid rgba(15, 23, 42, .06);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    }

    .contact-intro-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        color: #0f172a;
        font-size: clamp(34px, 4vw, 56px);
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }

    .contact-intro-box p {
        max-width: 820px;
        color: #64748b;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .contact-intro-box .btn-whatsapp-outline,
    .contact-form-card .btn-whatsapp-outline,
    .contact-cta-box .btn-whatsapp-outline {
        background: #25D366 !important;
        border: 2px solid #25D366 !important;
        color: #fff !important;
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
    }

    .contact-intro-box .btn-whatsapp-outline:hover,
    .contact-form-card .btn-whatsapp-outline:hover,
    .contact-cta-box .btn-whatsapp-outline:hover {
        background: #128C7E !important;
        border-color: #128C7E !important;
        color: #fff !important;
        transform: translateY(-2px);
    }

    .contact-info-card {
        height: 100%;
        display: flex;
        gap: 18px;
        padding: 28px;
        border-radius: 26px;
        background: #fff;
        border: 1px solid rgba(15,23,42,.07);
        box-shadow: 0 18px 45px rgba(15,23,42,.08);
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        background: #0f172a;
        color: #ffb703;
        font-size: 27px;
    }

    .contact-info-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 850;
        color: #0f172a;
        font-size: 21px;
        margin-bottom: 8px;
    }

    .contact-info-card p,
    .contact-info-card a {
        color: #64748b;
        line-height: 1.65;
        text-decoration: none;
        margin: 0;
        font-weight: 600;
    }

    .contact-info-card a:hover {
        color: #fb8500;
    }

    .contact-form-card {
        height: 100%;
        padding: 38px;
        border-radius: 30px;
        background: #fff;
        border: 1px solid rgba(15,23,42,.07);
        box-shadow: 0 18px 45px rgba(15,23,42,.08);
    }

    .contact-form-card h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        color: #0f172a;
        margin-bottom: 14px;
    }

    .contact-form-card p {
        color: #64748b;
        line-height: 1.75;
        margin-bottom: 26px;
    }

    .contact-form-card .form-label {
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 8px;
    }

    .contact-form-card .form-control,
    .contact-form-card .form-select {
        min-height: 54px;
        border-radius: 16px;
        border: 1px solid rgba(15,23,42,.12);
        background: #f8fafc;
        padding: 13px 16px;
        color: #0f172a;
        box-shadow: none;
    }

    .contact-form-card textarea.form-control {
        min-height: 150px;
        resize: vertical;
    }

    .contact-form-card .form-control:focus,
    .contact-form-card .form-select:focus {
        border-color: #ffb703;
        background: #fff;
        box-shadow: 0 0 0 .2rem rgba(255, 183, 3, .16);
    }

    .contact-side-card {
        height: 100%;
        padding: 38px;
        border-radius: 30px;
        background:
            radial-gradient(circle at 85% 15%, rgba(255,183,3,.20), transparent 32%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        color: #fff;
        box-shadow: 0 18px 45px rgba(15,23,42,.16);
    }

    .contact-side-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: 30px;
        margin-bottom: 16px;
    }

    .contact-side-card p {
        color: rgba(255,255,255,.72);
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .contact-side-list {
        list-style: none;
        margin: 0 0 28px;
        padding: 0;
    }

    .contact-side-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 14px;
        color: rgba(255,255,255,.82);
        font-weight: 700;
    }

    .contact-side-list li i {
        color: #ffb703;
        font-size: 20px;
    }

    .contact-map-box {
        overflow: hidden;
        border-radius: 30px;
        border: 1px solid rgba(15,23,42,.08);
        box-shadow: 0 18px 45px rgba(15,23,42,.08);
        background: #fff;
        min-height: 420px;
    }

    .contact-map-box iframe {
        width: 100%;
        height: 420px;
        display: block;
        border: 0;
    }

    .contact-cta-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 12%, rgba(255,183,3,.24), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        padding: 52px;
        color: #fff;
        box-shadow: 0 24px 60px rgba(15,23,42,.18);
    }

    .contact-cta-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 4vw, 48px);
        margin-bottom: 16px;
    }

    .contact-cta-box p {
        max-width: 760px;
        color: rgba(255,255,255,.72);
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    @media (max-width: 767.98px) {
        .page-breadcrumb-strip {
            padding: 42px 0;
        }

        .breadcrumb-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-intro-box,
        .contact-form-card,
        .contact-side-card,
        .contact-cta-box {
            padding: 30px;
        }

        .contact-info-card {
            flex-direction: column;
        }
    }

/* === blog.php dosyasından taşındı (style blok 1) === */
.page-breadcrumb-strip {
        position: relative;
        padding: 58px 0;
        background:
            radial-gradient(circle at 85% 20%, rgba(255, 183, 3, 0.18), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        overflow: hidden;
    }

    .page-breadcrumb-strip::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
        background-size: 34px 34px;
        opacity: .55;
    }

    .page-breadcrumb-strip .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 25px;
    }

    .breadcrumb-content h1 {
        font-family: 'Poppins', sans-serif;
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 900;
        color: #fff;
        margin: 0;
        letter-spacing: -1px;
    }

    .page-breadcrumb-strip .breadcrumb {
        display: inline-flex;
        align-items: center;
        padding: 12px 18px;
        border-radius: 999px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
    }

    .page-breadcrumb-strip .breadcrumb-item,
    .page-breadcrumb-strip .breadcrumb-item.active {
        color: rgba(255,255,255,0.75);
        font-weight: 600;
    }

    .page-breadcrumb-strip .breadcrumb-item a {
        color: #ffb703;
        text-decoration: none;
        font-weight: 800;
    }

    .page-breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255,255,255,0.55);
    }

    .blog-intro-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 18%, rgba(255,183,3,.18), transparent 28%),
            linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        padding: 48px;
        border: 1px solid rgba(15, 23, 42, .06);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    }

    .blog-intro-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        color: #0f172a;
        font-size: clamp(34px, 4vw, 56px);
        letter-spacing: -1.5px;
        margin-bottom: 18px;
    }

    .blog-intro-box p {
        max-width: 850px;
        color: #64748b;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .blog-intro-box .btn-whatsapp-outline,
    .blog-cta-box .btn-whatsapp-outline {
        background: #25D366 !important;
        border: 2px solid #25D366 !important;
        color: #fff !important;
        box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
    }

    .blog-intro-box .btn-whatsapp-outline:hover,
    .blog-cta-box .btn-whatsapp-outline:hover {
        background: #128C7E !important;
        border-color: #128C7E !important;
        color: #fff !important;
        transform: translateY(-2px);
    }

    .blog-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 28px;
        border: 1px solid rgba(15, 23, 42, .07);
        overflow: hidden;
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
        text-decoration: none;
        transition: all .25s ease;
    }

    .blog-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 24px 60px rgba(15, 23, 42, .13);
    }

    .blog-card-image {
        position: relative;
        min-height: 230px;
        background:
            radial-gradient(circle at 80% 20%, rgba(255,183,3,.18), transparent 30%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        overflow: hidden;
    }

    .blog-card-image img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        display: block;
    }

    .blog-card-image-placeholder {
        height: 230px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffb703;
        font-size: 62px;
    }

    .blog-card-date {
        position: absolute;
        left: 18px;
        bottom: 18px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 13px;
        border-radius: 999px;
        background: rgba(255,255,255,.92);
        color: #0f172a;
        font-weight: 800;
        font-size: 13px;
        box-shadow: 0 10px 24px rgba(15,23,42,.14);
    }

    .blog-card-body {
        padding: 28px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .blog-card-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        color: #fb8500;
        font-size: 13px;
        font-weight: 800;
        margin-bottom: 13px;
    }

    .blog-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 24px;
        font-weight: 850;
        line-height: 1.28;
        color: #0f172a;
        margin-bottom: 14px;
    }

    .blog-card p {
        color: #64748b;
        line-height: 1.75;
        margin-bottom: 24px;
        flex: 1;
    }

    .blog-card-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #0f172a;
        font-weight: 900;
        font-size: 15px;
    }

    .blog-card-link i {
        color: #fb8500;
        transition: transform .2s ease;
    }

    .blog-card:hover .blog-card-link i {
        transform: translateX(4px);
    }

    .blog-side-card {
        position: sticky;
        top: 110px;
        padding: 30px;
        border-radius: 28px;
        background:
            radial-gradient(circle at 88% 12%, rgba(255,183,3,.20), transparent 30%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        color: #fff;
        box-shadow: 0 18px 45px rgba(15,23,42,.16);
    }

    .blog-side-card h3 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: 28px;
        margin-bottom: 14px;
    }

    .blog-side-card p {
        color: rgba(255,255,255,.72);
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .blog-side-list {
        list-style: none;
        margin: 0 0 26px;
        padding: 0;
    }

    .blog-side-list li {
        display: flex;
        gap: 10px;
        align-items: center;
        color: rgba(255,255,255,.82);
        font-weight: 700;
        margin-bottom: 13px;
    }

    .blog-side-list i {
        color: #ffb703;
    }

    .blog-cta-box {
        position: relative;
        overflow: hidden;
        border-radius: 32px;
        background:
            radial-gradient(circle at 88% 12%, rgba(255,183,3,.24), transparent 28%),
            linear-gradient(135deg, #061126 0%, #0f172a 100%);
        padding: 52px;
        color: #fff;
        box-shadow: 0 24px 60px rgba(15,23,42,.18);
    }

    .blog-cta-box h2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 900;
        font-size: clamp(30px, 4vw, 48px);
        margin-bottom: 16px;
    }

    .blog-cta-box p {
        max-width: 760px;
        color: rgba(255,255,255,.72);
        font-size: 18px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    @media (max-width: 991.98px) {
        .blog-side-card {
            position: static;
            margin-top: 30px;
        }
    }

    @media (max-width: 767.98px) {
        .page-breadcrumb-strip {
            padding: 42px 0;
        }

        .breadcrumb-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .blog-intro-box,
        .blog-cta-box {
            padding: 30px;
        }
    }

/* === footer.php dosyasından taşındı (style blok 1) === */
.footer-main-row {
    align-items: flex-start;
}

.footer-equal-col {
    display: flex;
}

.footer-col-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Logo alanı */
.footer-logo-brand {
    display: block;
    margin-bottom: 18px !important;
}

.footer-logo-brand a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo-brand img {
    max-width: 240px;
    height: auto;
    display: block;
    background: #fff;
    padding: 9px 12px;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

/* Sol açıklama yazısı küçültüldü */
.footer-about-text {
    max-width: 390px;
    margin-top: 0;
    margin-bottom: 22px !important;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

/* Sosyal ikonlar açıklamanın hemen altında */
.footer-social-under-text {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 0;
    padding: 0;
}

.footer-social-under-text a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: all .2s ease;
}

.footer-social-under-text a:hover {
    background: #ffb703;
    color: #061126;
    transform: translateY(-2px);
}

.footer-social-under-text i {
    font-size: 18px;
    line-height: 1;
}

/* Başlık ve link sütunları daha eşit dursun */
.footer h4 {
    margin-bottom: 30px;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links li a {
    font-size: 16px;
    line-height: 1.45;
}

/* İletişim sütunu */
.footer-contact-item {
    margin-bottom: 20px;
}

.footer-contact-text h5 {
    margin-bottom: 5px;
    font-size: 16px;
}

.footer-contact-text span,
.footer-contact-text a {
    font-size: 16px;
    line-height: 1.55;
}

/* WhatsApp yazısı sağ sütunda sadece başlık gibi kalsın */
.footer-contact-text h5 a {
    color: #fff;
    text-decoration: none;
}

.footer-contact-text h5 a:hover {
    color: #ffb703;
}

/* Footer alt alan */
.footer-bottom {
    align-items: center;
    margin-top: 56px;
}

@media (max-width: 1199.98px) {
    .footer-logo-brand img {
        max-width: 220px;
    }

    .footer-about-text {
        font-size: 15px;
        line-height: 1.6;
    }

    .footer-links li a,
    .footer-contact-text span,
    .footer-contact-text a {
        font-size: 15px;
    }
}

@media (max-width: 991.98px) {
    .footer-equal-col {
        display: block;
    }

    .footer-col-inner {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .footer-logo-brand img {
        max-width: 220px;
    }

    .footer-about-text {
        max-width: 100%;
        font-size: 15px;
    }

    .footer-social-under-text {
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 35px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

/* =========================================================
   Mobil header logo / hamburger kayma düzeltmesi
   ========================================================= */
.kec-main-navbar .kec-navbar-container {
    align-items: center;
}

.kec-navbar-brand {
    width: auto !important;
    max-width: 230px;
    flex: 0 0 auto;
    margin-right: 12px;
    padding-top: 0;
    padding-bottom: 0;
}

.kec-header-logo-img {
    display: block;
    width: auto !important;
    max-width: 190px;
    max-height: 62px;
    height: auto;
    object-fit: contain;
}

.kec-navbar-toggler {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin-left: auto;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.kec-navbar-toggler i {
    font-size: 2.65rem;
    line-height: 1;
    color: var(--primary-dark);
}

.kec-mobile-submenu-toggle {
    flex: 0 0 auto;
    color: var(--primary-dark);
}

@media (max-width: 991.98px) {
    .kec-main-navbar {
        padding: 10px 0;
    }

    .kec-main-navbar .kec-navbar-container {
        flex-wrap: wrap;
    }

    .kec-navbar-brand {
        max-width: calc(100% - 68px);
        margin-right: 0;
    }

    .kec-header-logo-img {
        max-width: 178px;
        max-height: 58px;
    }

    .kec-main-navbar .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        margin-top: 10px;
    }

    .kec-main-navbar .navbar-nav {
        align-items: stretch !important;
    }

    .kec-main-navbar .nav-link {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .kec-hover-dropdown > .d-flex {
        width: 100%;
    }

    .kec-hover-dropdown .dropdown-menu.show {
        position: static;
        float: none;
        width: 100%;
        margin-top: 0;
        border: 0;
        box-shadow: none;
    }
}

@media (max-width: 380px) {
    .kec-header-logo-img {
        max-width: 160px;
    }
}
