@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Refined Brand Colors */
    --navy: #1A365D;
    --navy-light: #2D3748;
    --azure: #2B6CB0;
    --green: #48BB78;
    --solar-orange: #F59E0B;
    --pure-white: #FFFFFF;
    --offset-white: #F8FAFC;
    --light-grey: #F1F5F9;

    /* GRadients */
    --main-gradient: linear-gradient(135deg, var(--navy) 0%, #102A43 100%);
    --accent-gradient: linear-gradient(90deg, #F59E0B 0%, #48BB78 100%);
    --btn-gradient: linear-gradient(135deg, #48BB78 0%, #38A169 100%);

    /* Shadows & Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(26, 54, 93, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

    /* Container & Spacing */
    --container-max-width: 1200px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy-light);
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('Görseller/istockphoto-2032036470-612x612.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- REVEAL ANIMATION SYSTEM --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
}

/* Directional reveals */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-rotate {
    opacity: 0;
    transform: perspective(800px) rotateY(12deg) translateX(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active,
.reveal-right.active,
.reveal-scale.active,
.reveal-rotate.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* --- ANIMATED GRADIENT TEXT --- */
.gradient-text {
    background: linear-gradient(135deg, #48BB78, #2B6CB0, #F59E0B, #48BB78);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- FLOATING ANIMATION --- */
.float {
    animation: floatY 4s ease-in-out infinite;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* --- GLOW PULSE --- */
.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(72, 187, 120, 0.15); }
    50% { box-shadow: 0 0 40px rgba(72, 187, 120, 0.35), 0 0 80px rgba(72, 187, 120, 0.1); }
}

/* --- COUNTER ANIMATION --- */
.counter-number {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-number.counting {
    transform: scale(1.05);
}

/* --- CARD TILT HOVER --- */
.tilt-card {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* --- HERO CONTENT ENTRANCE --- */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero .reveal.active {
    animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero .hero-tag {
    animation: heroFadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero h1 {
    animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero p {
    animation: heroFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

/* --- FEATURE CARD ANIMATIONS --- */
.feature-card {
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(72, 187, 120, 0.06), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(72, 187, 120, 0.15);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.2);
}

/* Staggered card entrance */
.feature-grid .feature-card:nth-child(1) { transition-delay: 0.05s; }
.feature-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: 0.15s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: 0.2s; }

/* --- STATS COUNTER ANIMATION --- */
.bento-item h2 {
    transition: all 0.4s ease;
}

.bento-item:hover h2 {
    transform: scale(1.08);
    text-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.bento-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(72, 187, 120, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bento-item:hover::before {
    opacity: 1;
}

/* --- IMAGE REVEAL --- */
.image-wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.image-wrapper:hover img {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* --- IMPORTANCE FEATURE ANIMATION --- */
.importance-feature {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.importance-feature:hover {
    transform: translateX(8px);
}

.importance-feature:hover .importance-icon-circle {
    transform: scale(1.12) rotate(-8deg);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.25);
}

/* --- FAQ SMOOTH ANIMATION --- */
.faq-item {
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-item:hover {
    transform: translateX(4px);
    border-color: rgba(72, 187, 120, 0.3);
}

.faq-icon {
    transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.faq-active .faq-icon {
    transform: rotate(180deg);
}

/* --- SECTION DIVIDER --- */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--azure));
    border-radius: 4px;
    margin: 0 auto 30px;
    animation: dividerExpand 1s ease forwards;
    transform-origin: center;
}

@keyframes dividerExpand {
    from { width: 0; opacity: 0; }
    to { width: 80px; opacity: 1; }
}

/* --- SUBTLE PARALLAX on scroll (CSS-only) --- */
@media (prefers-reduced-motion: no-preference) {
    .hero-video-container {
        will-change: transform;
    }
    
    .product-section .image-wrapper,
    .importance-section .image-wrapper {
        will-change: transform;
    }
}

/* --- FOOTER LINK ANIMATIONS --- */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- SCROLL PROGRESS INDICATOR --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--azure), var(--solar-orange));
    z-index: 9999;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

header.scrolled {
    padding: 0.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 80px;
    position: relative;
}

/* --- Scrolled: Premium Floating Glass Bar --- */
header.scrolled .container {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(248, 250, 252, 0.88) 50%,
            rgba(255, 255, 255, 0.92) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(26, 54, 93, 0.08),
        0 2px 8px rgba(72, 187, 120, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    padding: 0.5rem 2.5rem !important;
    animation: headerSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Animated gradient border glow on scrolled header */
header.scrolled .container::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 61px;
    background: linear-gradient(90deg,
            rgba(72, 187, 120, 0.3),
            rgba(43, 108, 176, 0.15),
            rgba(245, 158, 11, 0.2),
            rgba(72, 187, 120, 0.3));
    background-size: 300% 100%;
    animation: gradientBorderShift 6s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

header.scrolled:hover .container::before {
    opacity: 1;
}

@keyframes gradientBorderShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes headerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* --- Nav Links: Transparent State --- */
header:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

header.scrolled .nav-links a {
    color: var(--navy);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

header.scrolled .nav-links {
    background: rgba(26, 54, 93, 0.04);
    border-color: rgba(26, 54, 93, 0.06);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 0.55rem 1.4rem;
    letter-spacing: 0.3px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 50px;
    z-index: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.nav-links a:hover::before {
    background: rgba(72, 187, 120, 0.12);
    box-shadow: 0 0 20px rgba(72, 187, 120, 0.08);
}

.nav-links a:hover {
    color: var(--green) !important;
    transform: translateY(-1px);
    text-shadow: 0 0 20px rgba(72, 187, 120, 0.3) !important;
}

/* Animated glowing underline on hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    border-radius: 2px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 8px rgba(72, 187, 120, 0.4);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* --- Logo --- */
.logo {
    position: relative;
}

.logo img {
    transform: translateY(8px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.15));
}

.logo:hover img {
    transform: translateY(6px) scale(1.05);
    filter: drop-shadow(0 4px 20px rgba(72, 187, 120, 0.3));
}

/* --- PV Logo Link --- */
.pv-logo-link {
    margin-left: 15px;
    display: flex;
    align-items: center;
    position: relative;
    width: 170px;
    height: 55px;
}

.pv-logo-link img {
    height: 110px;
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    z-index: 10;
}

.pv-logo-link:hover img {
    transform: translateY(-50%) scale(1.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

/* --- Social Link: Premium Circle --- */
.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-decoration: none;
    margin-left: 4px;
    align-self: center;
    position: relative;
    overflow: hidden;
}

/* Shimmer sweep on social link */
.header-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.5s;
}

.header-social-link:hover::before {
    left: 100%;
}

header.scrolled .header-social-link {
    background: rgba(26, 54, 93, 0.06);
    color: #1A365D;
    border-color: rgba(26, 54, 93, 0.12);
}

.header-social-link:hover {
    background: linear-gradient(135deg, #0077B5, #00A0DC);
    color: white !important;
    transform: translateY(-3px) rotate(5deg) scale(1.08);
    box-shadow:
        0 8px 20px rgba(0, 119, 181, 0.35),
        0 0 0 3px rgba(0, 119, 181, 0.15);
    border-color: transparent;
}

.header-social-link i,
.header-social-link svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

/* --- BUTTONS --- */
.btn-primary {
    background: var(--btn-gradient);
    color: var(--pure-white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.25);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.2px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(72, 187, 120, 0.35);
    filter: brightness(1.08);
}

/* Header-specific CTA button enhancements */
.header-cta .btn-primary {
    font-size: 0.82rem;
    padding: 0.55rem 1.3rem;
    letter-spacing: 0.3px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* WhatsApp button in header - branded green with pulse */
.header-cta .btn-primary[href*="wa.me"] {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
    animation: waPulse 3s ease-in-out infinite;
}

.header-cta .btn-primary[href*="wa.me"]:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45) !important;
    animation: none;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 0 4px rgba(37, 211, 102, 0.1);
    }
}

/* Teklif Al button - premium gradient */
.header-cta .btn-primary[href*="teklif"] {
    background: linear-gradient(135deg, #48BB78 0%, #2B6CB0 100%);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.25);
}

.header-cta .btn-primary[href*="teklif"]:hover {
    box-shadow: 0 10px 30px rgba(43, 108, 176, 0.4);
}

.btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E0;
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    padding: 220px 0 160px;
    background: #020617;
    /* Fallback color */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient to keep text readable without heavily tinting the video */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(72, 187, 120, 0.1);
    color: var(--green);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--navy-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* --- BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.bento-item {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(72, 187, 120, 0.2);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 187, 120, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--green);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* --- HAMBURGER TOGGLE BUTTON --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: rgba(72, 187, 120, 0.1);
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2.5px;
    background: white;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

header.scrolled .hamburger-line {
    background: var(--navy);
}

/* Hamburger → X animation */
.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

/* --- MOBILE NAV PANEL --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: linear-gradient(180deg, #0f172a 0%, #1a2744 100%);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* Mobile Nav Links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 16px 16px 8px;
    gap: 4px;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border-radius: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    background: rgba(72, 187, 120, 0.12);
    color: var(--green);
    transform: translateX(4px);
}

.mobile-nav-links a i {
    color: var(--green);
    opacity: 0.7;
    flex-shrink: 0;
}

.mobile-nav-links a:hover i {
    opacity: 1;
}

/* Mobile Nav CTA Buttons */
.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 24px;
    margin-top: 8px;
}

.mobile-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.mobile-nav-btn.wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.mobile-nav-btn.wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.mobile-nav-btn.primary {
    background: linear-gradient(135deg, #48BB78, #2B6CB0);
    color: white;
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.3);
}

.mobile-nav-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.45);
}

/* Mobile Nav Footer */
.mobile-nav-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-nav-partner img {
    filter: brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.mobile-nav-partner:hover img {
    opacity: 0.8;
}

.mobile-nav-socials {
    display: flex;
    gap: 12px;
}

.mobile-nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    text-decoration: none;
}

.mobile-nav-socials a:hover {
    background: rgba(72, 187, 120, 0.15);
    color: var(--green);
    border-color: rgba(72, 187, 120, 0.3);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {

    /* Show hamburger, hide desktop nav */
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none !important;
    }

    .header-cta .btn-primary {
        display: none;
    }

    .header-cta .pv-logo-link,
    .header-cta .header-social-link {
        display: none !important;
    }

    /* Header container spacing */
    header .container {
        padding: 0.5rem 1rem;
        min-height: 60px;
    }

    header.scrolled .container {
        border-radius: 20px;
        padding: 0.4rem 1.2rem !important;
        margin-top: 8px;
    }

    /* Hero */
    .hero {
        padding: 140px 0 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: -50px;
    }

    .feature-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Bento Grid */
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Importance Grid */
    .importance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Product Grid */
    .product-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-section h2 {
        font-size: 2.2rem;
    }
}

/* --- TABLET & SMALL SCREENS --- */
@media (max-width: 768px) {

    /* Header */
    header .container {
        padding: 0.4rem 0.8rem;
        min-height: 56px;
    }

    header.scrolled .container {
        border-radius: 18px;
        padding: 0.3rem 1rem !important;
        margin-top: 6px;
    }

    .header-cta .pv-logo-link {
        width: 100px;
        height: 40px;
    }

    .header-cta .pv-logo-link img {
        height: 70px;
    }

    .header-cta .header-social-link {
        width: 36px;
        height: 36px;
    }

    .logo img {
        height: 28px !important;
    }

    /* Hero */
    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    /* Feature Cards: Single column */
    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: -40px;
    }

    .feature-card {
        padding: 20px 16px;
        gap: 14px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .feature-card h3 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Stats */
    .bento-item h2 {
        font-size: 2.5rem !important;
    }

    /* Section Headings */
    .product-section h2 {
        font-size: 1.8rem;
    }

    .importance-content h2 {
        font-size: 2rem;
    }

    /* FAQ */
    .faq-question {
        font-size: 1rem;
        padding: 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.faq-active .faq-answer {
        padding: 0 20px 20px;
    }

    /* Map */
    .map-section h2 {
        font-size: 2rem !important;
    }
}

/* --- SMALL PHONES --- */
@media (max-width: 480px) {
    .header-cta .pv-logo-link {
        display: flex;
        width: 70px;
        height: 30px;
        margin-left: 0;
    }
    
    .header-cta .pv-logo-link img {
        height: 45px;
    }

    header .container {
        padding: 0.4rem 0.6rem;
    }

    header.scrolled .container {
        border-radius: 16px;
        padding: 0.3rem 0.8rem !important;
    }

    .logo img {
        height: 26px !important;
    }

    /* Hero */
    .hero {
        padding: 110px 0 70px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    /* Feature Cards: Single column */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: -35px;
    }

    .feature-card {
        flex-direction: row;
        align-items: center;
        padding: 18px 16px;
        gap: 16px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }

    .feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    /* Sections padding */
    .product-section {
        padding: 60px 0;
    }

    .importance-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-section h2 {
        font-size: 1.6rem !important;
    }

    .product-section h2 {
        font-size: 1.5rem;
    }

    .importance-content h2 {
        font-size: 1.6rem;
    }

    /* Bento single column */
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item h2 {
        font-size: 2rem !important;
    }
}

/* --- FEATURE CARDS --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--pure-white);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.04);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.feature-card>* {
    position: relative;
    z-index: 2;
    /* Arka plan görüntüsünün üzerinde kalması için */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Overlay for images to keep text readable */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 10, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Individual Card Images */
.card-enerji::before {
    background-image: url('Görseller/enerji.jpg');
}

.card-isg::before {
    background-image: url('Görseller/isg.jpg');
}

.card-saf::before {
    background-image: url('Görseller/saf.jpg');
}

.card-robot::before {
    background-image: url('Görseller/robotla\ temizlik.jpg');
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white !important;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.15);
}

/* --- ENERGY EFFICIENCY DETAIL PAGE --- */
.detail-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4)), url('Görseller/Paragraf metniniz 1.png');
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.level-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.impact-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Outfit';
}

.badge-low {
    background: #E6FFFA;
    color: #319795;
}

.badge-medium {
    background: #FFFAF0;
    color: #D69E2E;
}

.badge-high {
    background: #FFF5F5;
    color: #E53E3E;
}

.level-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.level-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .level-grid {
        grid-template-columns: 1fr;
    }

    .level-card {
        padding: 30px;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 187, 120, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--green);
    color: var(--pure-white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--navy);
}

.feature-card p {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }
}

/* --- PRODUCT SECTION --- */
.product-section {
    padding: 100px 0;
    background: transparent;
}

.product-section h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--navy);
}

.btn-about {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 12px 35px;
    border-radius: 100px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.2);
}

.product-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 4rem;
    max-width: 900px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.bullet-list li::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2348BB78" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-dot-2"><circle cx="12" cy="12" r="10"/><path d="M12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" fill="%2348BB78"/></svg>') no-repeat center;
    background-size: contain;
}

/* --- IMPORTANCE SECTION --- */
.importance-section {
    padding: 120px 0;
    background: transparent;
}

.importance-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 10, 0.15);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(45, 55, 72, 0.05));
    padding: 12px;
    /* Dış çerçeve boşluğu */
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    perspective: 1000px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    /* Kırpılmadan tam halini göstermek için */
    border-radius: 20px;
    display: block;
    transition: transform 0.8s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    box-shadow: 0 40px 100px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.overlay-buttons {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.overlay-btn {
    background: white;
    padding: 10px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.overlay-btn:hover {
    transform: translateX(10px);
    background: var(--green);
    color: white;
}

.overlay-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.mini-tag-group {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.mini-tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-tag.green {
    background: var(--green);
    color: white;
}

.mini-tag.grey {
    background: #e2e8f0;
    color: var(--green);
}

.importance-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--navy);
}

.importance-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.importance-icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

.importance-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.importance-feature p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.support-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
}


/* --- FOOTER --- */
footer {
    padding: 0;
    background: linear-gradient(175deg, #0a1628 0%, #0d1f3c 40%, #0a2218 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

/* Decorative glow behind footer */
footer::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(72, 187, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Gradient accent line */
.footer-accent-line {
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--azure), var(--solar-orange), var(--green));
    background-size: 300% 100%;
    animation: gradientSlide 6s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Footer main grid */
.footer-main {
    display: grid;
    grid-template-columns: 1.3fr 2fr 1.2fr;
    gap: 60px;
    padding: 80px 0 60px;
    position: relative;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 42px;
    transition: all 0.4s ease;
    filter: brightness(1.1);
}

.footer-logo:hover img {
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(72, 187, 120, 0.3));
    transform: scale(1.03);
}

.footer-tagline {
    color: rgba(160, 174, 192, 0.85);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 24px 0 30px;
}

/* Social icons */
.footer-social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(160, 174, 192, 0.8);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-icon:hover {
    transform: translateY(-4px);
    color: white;
    background: rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.2);
}

.social-icon.social-wa:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.2);
    color: #25D366;
}

.social-icon i, .social-icon svg {
    width: 18px;
    height: 18px;
}

/* Navigation group */
.footer-nav-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-heading {
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-nav-col:hover .footer-heading::after {
    width: 40px;
}

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

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

.footer-links a {
    color: rgba(160, 174, 192, 0.8);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-transform: none;
    position: relative;
}

.footer-links a i {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    color: var(--green);
}

.footer-links a:hover {
    color: var(--pure-white);
    transform: translateX(4px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact column */
.footer-contact-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: rgba(160, 174, 192, 0.85);
}

.footer-contact-item:hover {
    background: rgba(72, 187, 120, 0.06);
    border-color: rgba(72, 187, 120, 0.15);
    transform: translateX(4px);
}

.contact-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(72, 187, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
    transition: all 0.3s ease;
}

.contact-icon-wrap i {
    width: 16px;
    height: 16px;
}

.footer-contact-item:hover .contact-icon-wrap {
    background: rgba(72, 187, 120, 0.2);
    transform: scale(1.08);
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(160, 174, 192, 0.5);
    margin-bottom: 2px;
    font-weight: 600;
}

.footer-contact-item a {
    color: rgba(160, 174, 192, 0.85);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-contact-item:hover a,
.footer-contact-item:hover span {
    color: var(--pure-white);
}

/* Footer bottom */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(113, 128, 150, 0.7);
    font-size: 0.8rem;
    margin: 0;
}

.footer-bottom strong {
    color: rgba(160, 174, 192, 0.9);
    font-weight: 700;
}

.footer-partner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(113, 128, 150, 0.6);
    font-size: 0.78rem;
    transition: all 0.3s ease;
}

.footer-partner:hover {
    color: rgba(160, 174, 192, 0.9);
}

.footer-partner img {
    transition: all 0.3s ease;
    opacity: 0.6;
}

.footer-partner:hover img {
    opacity: 1;
    filter: brightness(1.2);
}

/* Old Footer Styles for Subpages */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--pure-white);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col p {
    color: rgba(160, 174, 192, 0.9);
    line-height: 1.8;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--green);
}

/* Footer responsive */
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-nav-group {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 0 30px;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
        align-items: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-nav-group {
        grid-column: span 1;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .footer-contact {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-nav-group {
        grid-template-columns: 1fr 1fr;
    }

    .footer-heading {
        font-size: 0.75rem;
    }
}

/* --- FLOATING WHATSAPP --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.wa-float i {
    width: 30px;
    height: 30px;
}

.wa-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 2px 10px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* --- CERTIFICATIONS SECTION --- */
.cert-section {
    padding: 50px 0 30px;
    background: transparent;
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 25px;
}

.cert-item {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    filter: grayscale(80%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cert-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* --- FAQ ACCORDION --- */
.faq-section {
    padding: 100px 0;
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    user-select: none;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--navy-light);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0;
}

.faq-item.faq-active .faq-answer {
    padding: 0 30px 30px;
    max-height: 300px;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.4s ease;
    color: var(--green);
}

.faq-item.faq-active .faq-icon {
    transform: rotate(180deg);
}

/* --- INTERACTIVE MAP (USER PREFERRED MODE) --- */
.map-section {
    padding: 120px 0;
    background: #020617;
    color: white;
    overflow: hidden;
}

.map-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: #050b1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.map-view {
    position: relative;
    width: 100%;
    padding-top: 50%;
    /* 2:1 Widescreen Aspect Ratio */
    background-image: url('Görseller/Ekran görüntüsü 2026-04-03 035853.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
}

/* Central glowing core */
.map-hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 10px #fff,
        0 0 20px #f6e05e,
        0 0 40px #f6e05e,
        0 0 60px rgba(246, 224, 94, 0.4);
    z-index: 2;
}

/* Pulsing radar effect */
.map-hotspot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(246, 224, 94, 0.6);
    border-radius: 50%;
    animation: hotspotPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 1;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(246, 224, 94, 0.7);
    }

    70% {
        transform: scale(3.5);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(246, 224, 94, 0);
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(246, 224, 94, 0);
    }
}

.map-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    color: white;
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 0.85rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    text-align: left;
}

.map-hotspot:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-city {
    font-weight: 800;
    font-size: 0.95rem;
    color: #f6e05e;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tooltip-stats {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-stats::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
}

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

.tooltip-list li {
    padding: 4px 0;
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .map-container {
        border-radius: 0;
        padding: 60px 15px;
        background: #020617;
        border: none;
    }

    .map-hotspot::before {
        width: 6px;
        height: 6px;
    }

    .map-tooltip {
        min-width: 160px;
        padding: 12px;
    }
}


/* --- LOGO CAROUSEL --- */
.logo-carousel-section {
    padding: 90px 0;
    /* More vertical breathing room */
    overflow: hidden;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-slider {
    position: relative;
    width: 100%;
    height: 120px;
    /* Taller slider */
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 50s linear infinite;
    /* Slower, smoother scroll for larger logos */
    gap: 100px;
    /* More space between logos */
    align-items: center;
    padding-left: 100px;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 65px;
    /* Larger logo height */
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    /* Soft shadow */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.logo-track img:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    /* Stronger shadow */
    transform: scale(1.2) translateY(-5px);
    /* More prominent lift and scale */
    z-index: 10;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-track img {
        height: 35px;
    }

    .logo-track {
        gap: 40px;
    }
}

/* --- ÖZEL TEKLİF SAYFASI --- */
.proposal-header {
    text-align: center;
    margin-bottom: 20px;
}
.proposal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(72, 187, 120, 0.1);
    color: var(--green);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.proposal-badge i {
    width: 16px;
    height: 16px;
}
.proposal-header h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.proposal-header h1 .highlight {
    color: var(--green);
}
.proposal-subtitle {
    font-size: 1.1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.stat-box {
    background: white;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}
.stat-box:hover {
    transform: translateY(-3px);
}
.stat-icon {
    width: 45px;
    height: 45px;
    color: var(--green);
    background: rgba(72, 187, 120, 0.1);
    padding: 10px;
    border-radius: 12px;
}
.stat-info {
    display: flex;
    flex-direction: column;
}
.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3px;
}
.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}
.content-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
}
.content-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}
.scope-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.scope-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.icon-check {
    width: 32px;
    height: 32px;
    background: var(--green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}
.icon-check i {
    width: 16px;
    height: 16px;
}
.scope-list strong {
    display: block;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.scope-list p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.price-card-wrapper {
    position: sticky;
    top: 120px;
}
.price-card {
    background: linear-gradient(135deg, var(--navy) 0%, #1e293b 100%);
    color: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}
.price-card.contact-only {
    background: linear-gradient(135deg, var(--green) 0%, #38a169 100%);
}
.price-header {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
}
.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    text-align: center;
    color: #f6e05e;
    line-height: 1.1;
    margin-bottom: 5px;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.price-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}
.price-features li i {
    color: var(--green);
    width: 18px;
    height: 18px;
}
.btn-approve {
    background: var(--green);
    color: white;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-approve:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.2);
    color: white;
}
.contact-only .btn-approve {
    background: white;
    color: var(--green);
}
.contact-only .btn-approve:hover {
    background: #f8fafc;
    color: var(--green-dark);
}
@media (max-width: 991px) {
    .price-card-wrapper {
        margin-top: 40px;
        position: static;
    }
    .proposal-header h1 {
        font-size: 2.2rem;
    }
}

/* =============================================
   MOBILE OPTIMIZATION FIXES (v24.0)
   ============================================= */

/* --- FIX 1: WhatsApp Button - Smaller on Mobile --- */
@media (max-width: 768px) {
    .wa-float {
        width: 48px;
        height: 48px;
        bottom: 20px;
        left: 20px;
    }

    .wa-float i {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .wa-float {
        width: 44px;
        height: 44px;
        bottom: 16px;
        left: 16px;
    }

    .wa-float i {
        width: 20px;
        height: 20px;
    }
}

/* --- FIX 2: Stats Cards - Reduce Size on Mobile --- */
@media (max-width: 768px) {
    .bento-item[style*="padding: 40px"] {
        padding: 25px !important;
    }

    .bento-item h2[style*="font-size: 3.5rem"] {
        font-size: 2.2rem !important;
    }

    .bento-item p[style*="font-weight: 600"] {
        font-size: 0.9rem !important;
    }

    /* Stats grid itself */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    /* Reduce stats section padding */
    section.py-5[style*="padding: 60px 0"] {
        padding: 30px 0 !important;
        margin-top: 20px !important;
    }
}

@media (max-width: 480px) {
    .bento-item[style*="padding: 40px"] {
        padding: 20px 16px !important;
        border-radius: 16px !important;
    }

    .bento-item h2[style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
        margin-bottom: 2px !important;
    }

    .bento-item p[style*="font-weight: 600"] {
        font-size: 0.85rem !important;
    }

    /* Make stats grid horizontal on small phones */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 10px !important;
    }

    section.py-5[style*="padding: 60px 0"] {
        padding: 20px 0 !important;
        margin-top: 10px !important;
    }
}

/* --- FIX 3: Section Spacing - Reduce on Mobile --- */
@media (max-width: 768px) {
    .product-section {
        padding: 50px 0 !important;
    }

    .importance-section {
        padding: 50px 0 !important;
    }

    .faq-section {
        padding: 50px 0 !important;
    }

    .map-section {
        padding: 60px 0 !important;
    }

    .cert-section {
        padding: 30px 0 20px !important;
    }

    /* Reduce heading margins */
    .map-section div[style*="margin-bottom: 80px"] {
        margin-bottom: 40px !important;
    }

    .faq-section div[style*="margin-bottom: 60px"] {
        margin-bottom: 30px !important;
    }

    /* About Us section */
    section[id="hakkimizda"][style*="padding: 100px 0"] {
        padding: 50px 0 !important;
    }

    section[id="hakkimizda"] h2[style*="font-size: 3rem"] {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 40px 0 !important;
    }

    .importance-section {
        padding: 40px 0 !important;
    }

    .faq-section {
        padding: 40px 0 !important;
    }

    .map-section {
        padding: 40px 0 !important;
    }

    section[id="hakkimizda"][style*="padding: 100px 0"] {
        padding: 40px 0 !important;
    }

    section[id="hakkimizda"] h2[style*="font-size: 3rem"] {
        font-size: 1.6rem !important;
        margin-bottom: 1rem !important;
    }

    section[id="hakkimizda"] p[style*="font-size: 1.1rem"] {
        font-size: 0.95rem !important;
    }
}

/* --- FIX 4: Header PV Logo - Better Mobile Sizing --- */
@media (max-width: 480px) {
    .header-cta .pv-logo-link {
        margin-left: 0;
    }

    .logo img {
        height: 24px !important;
    }

    .header-cta {
        gap: 6px;
    }
}

@media (max-width: 375px) {
    .header-cta {
        gap: 8px;
    }

    .logo img {
        height: 22px !important;
    }
}

/* --- FIX 5: Importance Section - Better Mobile Layout --- */
@media (max-width: 768px) {
    .importance-grid {
        gap: 24px !important;
    }

    .importance-section .image-wrapper {
        max-height: 250px;
        border-radius: 16px;
    }

    .importance-section .image-wrapper img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .importance-content h2 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }

    .importance-feature {
        gap: 12px;
    }

    .importance-icon-circle {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .importance-feature h4 {
        font-size: 1rem;
    }

    .importance-feature p {
        font-size: 0.9rem;
    }
}

/* --- FIX 6: Map Section Title - Mobile Sizing --- */
@media (max-width: 768px) {
    .map-section h2[style*="font-size: 3.5rem"] {
        font-size: 1.8rem !important;
        margin-top: 12px !important;
    }

    .map-section p[style*="font-size: 1.15rem"] {
        font-size: 0.95rem !important;
        margin-top: 15px !important;
    }
}

@media (max-width: 480px) {
    .map-section h2[style*="font-size: 3.5rem"] {
        font-size: 1.5rem !important;
    }

    .map-section p[style*="font-size: 1.15rem"] {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
}

/* --- FIX 7: Product Section - Mobile Text Sizing --- */
@media (max-width: 480px) {
    .product-section h2 {
        font-size: 1.4rem !important;
    }

    .product-intro {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
    }

    .bullet-list li {
        font-size: 0.95rem;
    }

    .btn-about {
        padding: 10px 28px;
        font-size: 0.9rem;
    }
}

/* --- FIX 8: FAQ Mobile Polish --- */
@media (max-width: 480px) {
    .faq-section h2[style*="font-size: 2.5rem"] {
        font-size: 1.6rem !important;
    }

    .faq-question {
        font-size: 0.9rem !important;
        padding: 16px !important;
    }

    .faq-answer {
        font-size: 0.85rem !important;
    }

    .faq-item.faq-active .faq-answer {
        padding: 0 16px 16px !important;
    }
}

/* --- FIX 9: General Mobile Typography --- */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    /* Prevent horizontal scroll from logo carousel */
    .logo-carousel-section {
        padding: 40px 0 !important;
    }

    .logo-slider {
        height: 60px;
    }

    .logo-track img {
        height: 28px;
    }

    .logo-track {
        gap: 30px;
        padding-left: 30px;
    }
}