:root {
            --primary-color: #003366; 
            --secondary-color: #d32f2f; 
            --text-color: #333;
            --light-bg: #f4f4f4;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        html {
            overflow-x: hidden;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        /* --- HEADER (ÜST MENÜ) --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .top-bar {
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 8px 0;
            font-size: 0.9rem;
        }

        .container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .top-bar-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }

        .top-bar-inner:not(.container) {
            max-width: 1500px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        .top-bar-info {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .top-bar-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .top-bar-social a {
            color: var(--white);
            margin-left: 8px;
            font-size: 0.95rem;
            opacity: 0.9;
            transition: 0.3s;
        }

        .top-bar-social a:hover {
            opacity: 1;
            transform: translateY(-1px);
        }

        .lang-toggle {
            display: inline-flex;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 999px;
            overflow: hidden;
        }

        .lang-btn {
            background: transparent;
            color: var(--white);
            border: none;
            padding: 4px 10px;
            font-size: 0.8rem;
            cursor: pointer;
        }

        .lang-btn.active {
            background: var(--white);
            color: var(--secondary-color);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo i {
            color: var(--secondary-color);
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-weight: 600;
            color: var(--primary-color);
            transition: 0.3s;
        }

        .nav-links .dropdown .dropdown-menu.mega-menu .mega-col ul li a:hover {
            background-color: var(--secondary-color) !important;
            color: var(--white) !important;
        }

        header .nav-links a[href*="iletisim"] {
            background-color: var(--secondary-color);
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 5px;
        }

        header .nav-links a[href*="iletisim"]:hover {
            background-color: #b71c1c;
        }

        .quote-btn {
            background-color: var(--secondary-color);
            color: var(--white) !important;
            padding: 10px 25px;
            border-radius: 5px;
        }

        .quote-btn:hover {
            background-color: #b71c1c;
        }

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-slide-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(153, 83, 83, 0.7), rgba(153, 83, 83, 0.7));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            color: var(--white);
            text-align: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .hero-slide.active .hero-content {
            opacity: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 800;
            color: var(--white);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--white);
        }

        .hero-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 12px;
        }

        .hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .hero-dot:hover {
            background-color: rgba(255, 255, 255, 0.8);
            transform: scale(1.2);
        }

        .hero-dot.active {
            background-color: var(--white);
            border-color: var(--secondary-color);
            transform: scale(1.3);
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 15;
            background-color: rgba(255, 255, 255, 0.3);
            border: none;
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-arrow:hover {
            background-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-50%) scale(1.1);
        }

        .hero-arrow-left {
            left: 30px;
        }

        .hero-arrow-right {
            right: 30px;
        }

        @media (max-width: 768px) {
            .hero-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .hero-arrow-left {
                left: 15px;
            }

            .hero-arrow-right {
                right: 15px;
            }
        }

        .cta-btn {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            transition: 0.3s;
        }

        .cta-btn:hover {
            background-color: #b71c1c;
            transform: translateY(-3px);
        }

        .tracking-bar {
            background: var(--white);
            padding: 30px 0;
            border-bottom: 1px solid #eee;
        }

        .tracking-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tracking-text h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 6px;
        }

        .tracking-text p {
            color: #666;
        }

        .tracking-form {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .tracking-form input {
            min-width: 260px;
            padding: 12px 16px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 0.95rem;
        }

        .tracking-btn {
            background: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 12px 22px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        .tracking-btn:hover {
            background: #b71c1c;
        }

        .testimonials {
            background: var(--white);
            padding: 70px 0;
        }

        .section-sub {
            margin-top: 12px;
            color: #666;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            background: #f7f8fa;
            padding: 24px;
            border-radius: 14px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
        }

        .testimonial-quote {
            font-size: 1rem;
            margin-bottom: 16px;
            color: #333;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--primary-color);
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: #666;
        }

        .solutions {
            background: var(--white);
            padding: 65px 0;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .solution-card {
            background: var(--white);
            padding: 24px;
            border-radius: 14px;
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
            text-align: left;
        }

        .solution-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(211, 47, 47, 0.12);
            color: var(--secondary-color);
            margin-bottom: 12px;
            font-size: 1.4rem;
        }

        .solution-card h3 {
            margin-bottom: 8px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        .solution-card p {
            color: #555;
        }

        .business-cta {
            background: linear-gradient(135deg, #003366 0%, #0b3f6f 45%, #d32f2f 100%);
            color: var(--white);
            padding: 60px 0;
        }

        .business-cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
        }

        .business-cta h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .business-cta-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cta-outline {
            border: 2px solid var(--white);
            color: var(--white);
            padding: 12px 22px;
            border-radius: 6px;
            font-weight: 600;
            transition: 0.3s;
        }

        .cta-outline:hover {
            background: var(--white);
            color: var(--primary-color);
        }

        .news {
            background: var(--white);
            padding: 70px 0;
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .news-card {
            background: #f7f8fa;
            padding: 22px;
            border-radius: 14px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
        }

        .news-meta {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 10px;
        }

        .news-card h3 {
            color: var(--primary-color);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .news-link {
            display: inline-block;
            margin-top: 10px;
            color: var(--secondary-color);
            font-weight: 600;
        }

        .tariff-calc {
            background: #f2f3f6;
            padding: 60px 0;
            border-top: 1px solid #e6e9ee;
            border-bottom: 1px solid #e6e9ee;
        }

        .tariff-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .tariff-text h2 {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 6px;
        }

        .tariff-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 10px;
            align-items: center;
            width: min(820px, 100%);
        }

        .tariff-form input,
        .tariff-form select {
            padding: 12px 14px;
            border-radius: 6px;
            border: 1px solid #ddd;
            font-size: 0.95rem;
            background: var(--white);
        }

        .services {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .section-title span {
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 40px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .service-card a {
            display: inline-block;
            margin-top: 15px;
            color: var(--secondary-color);
            font-weight: 600;
            transition: 0.3s;
        }

        .service-card a:hover {
            color: var(--primary-color);
        }

        /* --- DROPDOWN MENU --- */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            flex-direction: column;
            gap: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-radius: 5px;
            min-width: 250px;
            z-index: 999;
        }

        .dropdown:hover .dropdown-menu {
            display: flex;
        }

        .dropdown-menu li {
            padding: 0;
        }

       .dropdown-menu a {
            display: block;
            padding: 15px 20px;
            color: var(--primary-color);
            transition: 0.3s;
        }
        .dropdown-menu a:hover {
            background-color: var(--light-bg);
            color: var(--secondary-color);
        }

        .about {
            padding: 80px 0;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-text {
            flex: 1;
        }

        .about-image {
            flex: 1;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        /* --- FOOTER --- */
        footer {
            background-color: #1a1a1a;
            color: #ccc;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a:hover {
            color: var(--secondary-color);
        }

        .copyright {
            text-align: center;
            border-top: 1px solid #333;
            padding-top: 20px;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            /* Mobil menüde linkler her zaman koyu renk */
            .nav-links a {
                color: var(--text-color) !important;
            }

            header .nav-links a[href*="iletisim"] {
                background-color: var(--secondary-color);
                color: var(--white) !important;
            }

            .nav-links .quote-btn {
                background-color: var(--secondary-color);
                color: white !important;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.2rem;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .top-bar {
                display: none; 
            }
        }


.dropdown {
    position: static;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f9f9f9;
    border-top: 2px solid var(--secondary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 0;
    padding: 30px 12%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 120px; /* Sütunlar arası geniş boşluk */
    z-index: 999;
}

.mega-menu::before {
    content: "";
    position: absolute;
    top: -35px; /* Navigasyon menüsü ile açılır menü arasındaki boşluk */
    left: 0;
    width: 100%;
    height: 35px;
    background: transparent;
}



.dropdown:hover .mega-menu {

    display: flex;

}



.mega-col {
    flex: 1;
    max-width: 280px; /* Sütunların gereğinden fazla genişlemesini engeller */
}

/* Mega menü başlıkları: Görseldeki gibi kırmızı, büyük harf ve çizgisiz */
.mega-col h3 {
    border-bottom: 1px solid var(--secondary-color);
    margin-bottom: 15px; 
    padding-bottom: 0;
    color: var(--secondary-color); /* Kırmızı yapıldı */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase; /* Tüm harfler büyük */
}

/* Mega menü listeleri: Alt boşluklar */
.mega-col ul li {
    margin-bottom: 2px; 
}
.mega-col ul li a {
    color: var(--text-color); /* Siyah/Koyu Gri ton */
    font-size: 0.95rem;
    transition: 0.3s;
}

/* Mega menü içindeki linkler: Normal yazılar koyu gri */
.dropdown-menu.mega-menu a {
    padding: 4px 0; /* Yatay ve dikey boşluklar */
    color: var(--text-color); /* Siyah/Koyu Gri ton */
    font-size: 1rem;
}

.dropdown-menu.mega-menu a:hover {
    background-color: transparent; 
    color: var(--secondary-color);
    padding-left: 5px; /* Hafif sağa kayma efekti */
}


.mega-col ul li a:hover {

    color: var(--secondary-color);

}

/* FEATURES VE STATS BİRLEŞİK BÖLÜM */

.features-stats {
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    margin: 0;
}


.features-stats .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    max-width: 1400px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}


.feature-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card-inner {
    position: relative;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #111;
}

.feature-card-media {
    position: absolute;
    inset: 0;
    background-image: var(--card-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.feature-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 26px;
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.85) 100%);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-card-overlay h3 {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.feature-card-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-card-title {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.6px;
    margin-top: 8px;
}

.feature-card-inner:hover .feature-card-media {
    transform: scale(1.06);
}

.feature-card-inner:hover .feature-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (hover: none) {
    .feature-card-overlay {
        opacity: 1;
        transform: translateY(0);
    }
}

/* STATS SECTION */
.stats-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-section .section-title {
    text-align: center;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    width: 100%;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .features-stats {
        min-height: auto;
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .feature-card-inner {
        min-height: 240px;
    }

    .feature-card-overlay {
        padding: 20px;
    }

    .services-strip {
        min-height: auto;
        padding: 20px 0;
    }

    .services-strip-arrow {
        display: none;
    }

    .service-chip {
        flex: 0 0 160px;
    }
}


/* INTEGRATED */

.integrated {
    background: var(--white);
    padding: 80px 0;
}


.integrated-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;
    gap: 40px;

}

.integrated-grid.reverse {
    direction: rtl;
}

.integrated-grid.reverse > * {
    direction: ltr;
}

.integrated-full-width {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding: 25px;
    background: #f5f5f5;
    border-left: 4px solid #d32f2f;
    border-radius: 8px;
    line-height: 1.8;
}

.integrated-full-width p {
    margin: 0;
    color: #333;
}


.integrated h2 {

    color: #c40000;

    font-size: 36px;

}


.world-img {
    padding-left: 100px;
    max-height: 550px;
}



/* SLOGAN */

.slogan {

    background: #d50000;

    color: white;

    text-align: center;

    padding: 100px 20px;

    font-size: 30px;

}

.nav-links a.active {

    border-bottom: 3px solid var(--secondary-color);

    padding-bottom: 5px;

}

/* PAGE SECTION */
.page-section {
    padding-top: 0px !important;
    padding: 60px 20px;
    background-color: var(--white);
    min-height: calc(100vh - 300px);
}

.page-section h1 {
    color: var(--primary-color);
    font-size: 42px;
    margin-bottom: 40px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 20px;
}

.page-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.page-content h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-content h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 12px;
}

.page-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.page-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.page-content ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.values-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 5px solid var(--secondary-color);
    margin: 40px 0;
}

.values-content {
    display: flex;
    flex-direction: column;
}

.values-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.values-image {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.values-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-section {
        margin-top: 100px;
        padding: 30px 15px;
    }
    
    .page-section h1 {
        font-size: 32px;
    }
    
    .page-content h2 {
        font-size: 22px;
    }
    
    .page-content h3 {
        font-size: 18px;
    }

    .integrated-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .integrated-grid.reverse {
        direction: ltr;
    }

    .integrated {
        padding: 50px 0;
    }

    .world-img {
        padding-left: 0;
        max-height: none;
        width: 100%;
        max-width: 100%;
    }

    .values-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .integrated {
        padding: 50px 0;
    }

    .hero2 {
        height: 40vh !important;
        min-height: 300px;
    }

    .hero-content2 h1 {
        font-size: 1.8rem !important;
    }

    .hero-content2 p {
        font-size: 1rem !important;
    }

    .services-grid-page {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===== TRANSPARENT HEADER ===== */

header {

position: fixed;
top: 0;
left: 0;
width: 100%;

background: transparent;
box-shadow: none;

transition: all 0.3s ease;

}

/* top bar transparent */

header .top-bar {

background: transparent;

}

/* transparent halde yazılar beyaz */

header:not(.scrolled) .nav-links a {

color: var(--white);

}

header:not(.scrolled) .menu-toggle {
    color: var(--white);
}

header:not(.scrolled) .nav-links .dropdown .dropdown-menu .mega-col ul li a{

color: var(--text-color) !important;

}

header:not(.scrolled) .logo img {

filter: brightness(0) invert(1);

}

/* scroll olunca beyaz */

header.scrolled {

background: var(--white);

box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}

/* scroll olunca yazılar lacivert */

header.scrolled .nav-links a {

color: var(--text-color);

}

header.scrolled .menu-toggle {
    color: var(--text-color);
}

header.scrolled .logo img {

filter: none;

}

/* Solid header for pages without hero */
body.header-solid header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body.header-solid header .top-bar {
    background-color: var(--secondary-color);
}

body.header-solid header .nav-links a {
    color: var(--text-color);
}

body.header-solid header .menu-toggle {
    color: var(--text-color);
}

body.header-solid header .logo img {
    filter: none;
}

/* TOP BAR default görünür */
.top-bar {

transition: all 0.3s ease;

}

/* scroll olunca gizle */

header.scrolled .top-bar {

display: none;

}

/* scroll olunca header küçülsün */

header.scrolled nav {

padding: 10px 0;

}

.hero2 {
            background: linear-gradient(rgba(153, 83, 83, 0.7), rgba(153, 83, 83, 0.7));
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }

        .hero-content2 {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 10px;
            text-align: left;
        }

        .hero2 h1 {
            font-size: 3.5rem;
            margin-bottom: 10px;
            font-weight: 800;
        }

        .hero2 p {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        /* Inner pages: place hero text near bottom-left (homepage excluded by #hero) */
        .hero:not(#hero),
        .hero2 {
            justify-content: flex-start;
            align-items: flex-end;
            text-align: left;
            padding: 0 0 60px 80px;
        }

        .hero:not(#hero) .hero-content,
        .hero2 .hero-content2 {
            margin: 0;
            max-width: 700px;
        }

        @media (max-width: 768px) {
            .hero:not(#hero),
            .hero2 {
                padding: 0 0 40px 20px;
            }

            .hero2 h1 {
                font-size: clamp(1.6rem, 8vw, 2.2rem);
                line-height: 1.15;
                overflow-wrap: anywhere;
                word-break: break-word;
            }

            .hero2 p {
                font-size: clamp(0.95rem, 3.8vw, 1.1rem);
                line-height: 1.4;
            }
        }

/* =========================================
   HİZMETLERİMİZ SAYFASI STİLLERİ
   ========================================= */

.services-page-section {
    padding-top: 45px !important;
    padding: 80px 0;
    background-color: #f9f9f9;
}

.scroll-down-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 16px;
    border-radius: 50%;
    background: white;
    color: var(--secondary-color);
    animation: scrollHint 1.6s ease-in-out infinite;
}

.scroll-down-hint i {
    font-size: 1.2rem;
}

@keyframes scrollHint {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(6px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}

.services-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.services-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.category-section {
    padding: 40px 0;
    border-bottom: 2px solid #e0e0e0;
}

.category-section:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card-page {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-page:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-card-image i {
    font-size: 4rem;
}

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--secondary-color);
    color: white !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #b71c1c;
}

.service-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0055aa 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .cta-btn {
    background-color: var(--secondary-color);
    font-size: 1.1rem;
}

.cta-section .cta-btn:hover {
    background-color: #b71c1c;
}

/* =========================================
   ÜLKELER BÖLÜMÜ STİLLERİ
   ========================================= */

.countries-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.country-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.country-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transition: left 0.4s ease;
}

.country-card:hover::before {
    left: 0;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: wave 2s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.country-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.country-details {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* =========================================
   FOTOĞRAF GALERİSİ STİLLERİ
   ========================================= */

.photo-gallery-section {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.placeholder-image {
    opacity: 0.7;
}

.placeholder-image::after {
    content: 'Fotoğraf Eklenecek';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(211, 47, 47, 0.9);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
}

/* =========================================
   ŞİRKET FOTOĞRAFLARI BÖLÜMÜ
   ========================================= */

.company-photos-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.company-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.company-photo-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.company-photo-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.photo-caption {
    background: white;
    padding: 20px;
    text-align: center;
}

.photo-caption h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.photo-caption p {
    color: #666;
    font-size: 0.95rem;
}

/* =========================================
   HİZMET GÖRSELLERİ BÖLÜMÜ
   ========================================= */

.service-images-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-images-section .section-title h2 {
    color: white;
}

.service-images-section .section-title span {
    background-color: white;
}

.service-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.service-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
}

.service-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: filter 0.4s ease;
}

.service-image-item:hover img {
    filter: brightness(0.5);
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.image-overlay i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
    transition: transform 0.4s ease;
}

.service-image-item:hover .image-overlay i {
    transform: scale(1.2);
}

.image-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* =========================================
   İNTERAKTİF AVRUPA HARİTASI
   ========================================= */

.interactive-map-section {
    background: linear-gradient(135deg, #fff1f1 0%, #f6c6c6 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.interactive-map-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: moveBackground 60s linear infinite;
}

@keyframes moveBackground {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.map-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Sol Taraf - Başlık ve Buton */
.map-left {
    text-align: center;
}

.map-slogan {
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #003366;
    margin-bottom: 12px;
}

.map-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 30px;
}

.map-title span {
    color: #b74d4d;
    font-weight: 400;
    font-size: 2rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.map-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.map-btn:hover::before {
    left: 0;
}

.map-btn:hover {
    color: white;
    transform: translateX(5px);
}

.map-btn i {
    transition: transform 0.4s ease;
}

.map-btn:hover i {
    transform: translateX(5px);
}

.map-center .map-image {
    max-height: 550px;
    display: block;
    border-radius: 18px;
}

/* Orta Taraf - Harita */
.map-center {
    position: relative;
    padding-right: 120px !important;
}

.europe-svg-map {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.europe-svg-map svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

.country {
    fill: var(--primary-color);
    stroke: #f5f7fa;
    stroke-width: 1.5;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.country:hover {
    fill: #1a5490;
    stroke: var(--secondary-color);
    stroke-width: 2.5;
    filter: drop-shadow(0 8px 20px rgba(26, 84, 144, 0.4));
}

/* Türkiye için özel vurgu */
.country-turkey {
    fill: var(--secondary-color);
    stroke: var(--primary-color);
}

.country-turkey:hover {
    fill: #b82828;
    stroke: #1a5490;
}

/* Arka plan kontur */
.europe-background {
    fill: #f8f9fa;
    stroke: #d0d5db;
    opacity: 0.2;
}

.country-label {
    fill: white;
    font-size: 16px;
    font-weight: 600;
    pointer-events: none;
    text-anchor: middle;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Ülke Bilgi Kartı */
.country-info-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    max-width: 400px;
    z-index: 10;
    animation: fadeInScale 0.3s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.close-info {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-info:hover {
    transform: rotate(90deg);
}

.country-info-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.country-info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.country-info-card ul {
    list-style: none;
    padding: 0;
}

.country-info-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #333;
}

.country-info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Sağ Taraf - İstatistikler */
.map-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: right;
    padding: 20px 0;
    border-bottom: 2px solid rgba(211, 47, 47, 0.25);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.4;
}

.stat-label span {
    font-size: 0.9rem;
    color: #b74d4d;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

/* =========================================
   RESPONSİVE DÜZENLEMELER
   ========================================= */

@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .country-flag {
        font-size: 3rem;
    }

    .gallery-grid,
    .company-photos-grid,
    .service-images-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item,
    .service-image-item {
        height: 250px;
    }

    .container {
        padding: 0 15px;
    }

    header nav {
        padding: 15px 0;
    }

    .logo img {
        width: 150px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* İnteraktif Harita Responsive */
    .map-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-left {
        text-align: center;
    }

    .map-slogan {
        font-size: 1rem;
    }

    .map-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .map-title span {
        font-size: 1.5rem;
    }

    .map-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .map-center {
        padding-right: 0 !important;
    }

    .map-center .map-image {
        max-height: none;
        width: 100%;
        max-width: 100%;
    }

    .services-grid-3 {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .stat-item {
        text-align: center;
    }

    .country-info-card {
        max-width: 90%;
        padding: 20px;
    }

    .country-info-card h3 {
        font-size: 1.5rem;
    }

    .interactive-map-section {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .services-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .integrated {
        padding: 60px 0;
    }

    .world-img {
        padding-left: 50px;
        max-height: 450px;
    }

    .map-container {
        gap: 50px;
    }

    .map-title {
        font-size: 2.5rem;
    }

    .map-title span {
        font-size: 1.8rem;
    }

    .map-center {
        padding-right: 60px !important;
    }

    .interactive-map-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: 1fr;
    }

    .country-card {
        padding: 20px 15px;
    }

    .integrated {
        padding: 40px 0;
    }

    .integrated-grid h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .map-slogan {
        font-size: 0.85rem;
    }

    .map-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .map-title span {
        font-size: 1.2rem;
    }

    .map-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .interactive-map-section {
        padding: 40px 0;
    }

    /* Extra Small Screen Adjustments */
    .top-bar-inner {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
    }

    .top-bar-info {
        font-size: 0.8rem;
    }

    .top-bar-actions {
        gap: 12px;
    }

    .lang-toggle {
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .top-bar-social a {
        font-size: 0.9rem;
        padding: 0 4px;
    }

    .nav-links li a {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tariff-form {
        grid-template-columns: 1fr;
    }

    /* Values Cards Mobile */
    .values-cards {
        grid-template-columns: 1fr;
    }
}

/* VALUES CARDS SECTION */
.values-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(211, 47, 47, 0.15);
    border-color: #d32f2f;
}

.card-icon {
    font-size: 56px;
    color: #d32f2f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(211, 47, 47, 0.05) 100%);
    border-radius: 50%;
}

/* Technical Info Cards */
.technical-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.technical-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.technical-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.technical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #003366 0%, #d32f2f 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.technical-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.technical-card:hover::before {
    transform: scaleX(1);
}

.technical-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border-radius: 12px;
    margin-bottom: 20px;
}

.technical-card-icon i {
    font-size: 32px;
    color: white;
}

.technical-card-header {
    margin-bottom: 20px;
}

.technical-card-header h3 {
    font-size: 1.8rem;
    color: #003366;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.technical-card-header span {
    font-size: 0.95rem;
    color: #d32f2f;
    font-weight: 500;
    display: block;
}

.technical-card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

.technical-card.highlight-card {
    background: linear-gradient(135deg, #003366 0%, #004080 100%);
    border: none;
}

.technical-card.highlight-card .technical-card-icon {
    background: white;
}

.technical-card.highlight-card .technical-card-icon i {
    color: #003366;
}

.technical-card.highlight-card .technical-card-header h3,
.technical-card.highlight-card .technical-card-header span,
.technical-card.highlight-card .technical-card-body p {
    color: white;
}

.technical-card.highlight-card::before {
    background: white;
}

/* Responsive Technical Cards */
@media (max-width: 768px) {
    .technical-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .technical-card {
        padding: 25px;
    }
    
    .technical-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .technical-card-icon i {
        font-size: 28px;
    }
    
    .technical-card-header h3 {
        font-size: 1.5rem;
    }
}

.value-card h3 {
    color: #333;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
