
        /* --- RENK PALETİ & DEĞİŞKENLER --- */
        :root {
            --primary: #123762; /* Logodaki Koyu Lacivert */
            --secondary: #F28C28; /* Logodaki Turuncu/Sarı */
            --secondary-hover: #d9771a;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- ÜST BİLGİ ÇUBUĞU (TOP BAR - GÜVEN İÇİN) --- */
        .top-bar {
            background-color: var(--primary);
            color: #cbd5e1;
            font-size: 13px;
            padding: 10px 0;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-bar i {
            color: var(--secondary);
            margin-right: 5px;
        }

        .top-bar-right .emergency-phone {
            background-color: var(--secondary);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
        }
        .top-bar-right .emergency-phone i {
            color: var(--white);
        }

        /* --- HEADER & NAVİGASYON --- */
        header {
            background-color: var(--white);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        /* Logonuz buraya gelecek */
        .logo img {
            max-height: 120px; /* Logoya göre ayarlanabilir */
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 500;
            font-size: 15px;
            color: var(--primary);
            transition: color 0.3s;
            text-transform: uppercase;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .header-btn {
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s;
            border: 2px solid var(--primary);
        }

        .header-btn:hover {
            background-color: transparent;
            color: var(--primary);
        }

        /* --- HERO SECTİON (GİRİŞ ALANI) --- */
        .hero {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            background: linear-gradient(to right, rgba(18, 55, 98, 0.95) 0%, rgba(18, 55, 98, 0.7) 100%), url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
            color: var(--white);
        }

        .hero-content {
            max-width: 650px;
        }

        .hero-badge {
            display: inline-block;
            background-color: rgba(242, 140, 40, 0.2);
            color: var(--secondary);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid var(--secondary);
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero h1 span {
            color: var(--secondary);
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: #e2e8f0;
            font-weight: 300;
        }

        .hero-btns {
            display: flex;
            gap: 15px;
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--white);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.3s;
        }

        .btn-primary:hover {
            background-color: var(--secondary-hover);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            padding: 15px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid var(--white);
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary);
        }

        /* --- STATS (GÜVEN İSTATİSTİKLERİ) --- */
        .stats {
            background-color: var(--white);
            padding: 40px 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
            position: relative;
            margin-top: -50px; /* Yukarıya bindirme efekti */
            border-radius: 10px;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            gap: 20px;
        }

        .stat-item {
            border-right: 1px solid var(--border);
        }
        .stat-item:last-child {
            border-right: none;
        }

        .stat-item i {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-item h3 {
            font-size: 36px;
            color: var(--secondary);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .stat-item p {
            color: var(--text-dark);
            font-weight: 600;
            font-size: 15px;
        }

        /* --- HİZMETLER BÖLÜMÜ --- */
        .section-padding {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .section-title {
            font-size: 36px;
            color: var(--primary);
            font-weight: 700;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background-color: var(--secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 10;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-image-container {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .service-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-image-container img {
            transform: scale(1.1);
        }

        .service-icon-badge {
            position: absolute;
            bottom: 0px;
            right: 25px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            border: 4px solid var(--white);
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: background-color 0.3s;
            z-index: 5;
        }

        .service-card:hover .service-icon-badge {
            background-color: var(--secondary);
        }

        .service-content-inner {
            padding: 35px 25px 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h3 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-light);
            font-size: 14px;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .read-more {
            color: var(--secondary);
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-top: auto;
        }
        
        .read-more i {
            transition: transform 0.3s;
        }

        .read-more:hover i {
            transform: translateX(5px);
        }

        /* --- NEDEN BİZ? (GÜVEN BÖLÜMÜ) --- */
        .why-us {
            background-color: var(--primary);
            color: var(--white);
            padding: 100px 0;
        }

        .why-us-content {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .why-us-text {
            flex: 1;
        }

        .why-us-text .section-title {
            color: var(--white);
            margin-bottom: 20px;
        }

        .why-us-text > p {
            color: #cbd5e1;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .feature-item {
            display: flex;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(242, 140, 40, 0.1);
            color: var(--secondary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        .feature-item h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--white);
        }

        .feature-item p {
            font-size: 14px;
            color: #94a3b8;
        }

        .why-us-image {
            flex: 1;
            position: relative;
        }

        .why-us-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            left: -30px;
            background-color: var(--secondary);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        .experience-badge h2 {
            font-size: 40px;
            color: var(--white);
            line-height: 1;
        }

        .experience-badge p {
            color: var(--white);
            font-weight: 600;
            font-size: 14px;
        }

        /* --- MÜŞTERİ YORUMLARI --- */
        .testimonials {
            background-color: var(--bg-light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .quote-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 40px;
            color: #f1f5f9;
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 20px;
        }

        .testimonial-text {
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-info img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .client-details h4 {
            color: var(--primary);
            font-size: 16px;
            font-weight: 700;
        }

        .client-details p {
            color: var(--text-light);
            font-size: 13px;
        }

        /* --- CTA (HIZLI AKSİYON ALANI) --- */
        .cta-section {
            background-color: var(--secondary);
            padding: 60px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: var(--white);
            font-size: 36px;
            margin-bottom: 15px;
        }

        .cta-section p {
            color: var(--white);
            font-size: 18px;
            margin-bottom: 30px;
        }

        .cta-section .btn-primary {
            background-color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .cta-section .btn-primary:hover {
            background-color: transparent;
            color: var(--primary);
        }

        /* --- FOOTER --- */
        footer {
            background-color: #0f172a;
            color: #94a3b8;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-about .logo img {
            filter: brightness(0) invert(1); /* Logoyu beyaza çevirir (varsa) */
            margin-bottom: 20px;
        }
        
        .footer-about .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .footer-about p {
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            color: var(--white);
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: var(--secondary);
        }

        .footer-title {
            color: var(--white);
            font-size: 20px;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer-links list-style {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--secondary);
        }

        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .footer-contact i {
            color: var(--secondary);
            font-size: 20px;
            margin-top: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
        }

        /* --- SABİT BUTONLAR --- */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--white);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .whatsapp-btn {
            background-color: #25D366;
        }

        .phone-btn {
            background-color: var(--primary);
        }

        /* --- RESPONSİVE (MOBİL) AYARLAR --- */
        @media (max-width: 992px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .why-us-content { flex-direction: column; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .experience-badge { bottom: 20px; left: 20px; }
        }

        @media (max-width: 768px) {
            .top-bar { display: none; }
            .nav-links { display: none; }
            .hero h1 { font-size: 36px; }
            .stats-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .features-list { grid-template-columns: 1fr; }
        }