/* --- FUTURE OF ENERGY THEME (NEON DESIGN) --- */

/* 1. FONTS & VARIABLES */
/* Fonts loaded in HTML for performance */

:root {
    /* Palette - Light Theme */
    --deep-bg: #f8fafc;
    /* Very Light Grey/White */
    --card-bg: #ffffff;
    /* White */
    --glass-border: rgba(0, 0, 0, 0.1);
    /* Light Grey Border */

    --neon-cyan: #0891b2;
    /* Cyan 600 - Readable on white */
    --neon-blue: #2563eb;
    /* Blue 600 */
    --neon-yellow: #ca8a04;
    /* Yellow 600 */

    --text-main: #1e293b;
    /* Slate 800 */
    --text-muted: #475569;
    /* Slate 600 */

    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-cyan) 100%);
    --glow-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Soft shadow instead of glow */
}

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

body {
    background-color: var(--deep-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    /* Modern Background - Subtle Mesh Gradient */
    background-image:
        radial-gradient(at 0% 0%, hsla(210, 80%, 85%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(220, 90%, 92%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(200, 80%, 85%, 1) 0, transparent 50%);
    background-attachment: fixed;
    /* Parallax effect */
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo,
.btn-primary,
.nav-links a {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* 2. HEADER & NAVBAR */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: box-shadow 0.3s ease;
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid transparent;
    /* Optional: remove border when shadow is active for cleaner look */
}

header .container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styling */
.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-blue);
    /* Changed to blue for visibility */
    letter-spacing: 2px;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
    letter-spacing: 1.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--neon-cyan);
    transition: transform 0.3s;
    box-shadow: 0 0 8px var(--neon-cyan);
    transform: scaleX(0);
    transform-origin: left;
}



.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    transform: scaleX(1);
}

.call-btn {
    background: transparent;
    border: 1px solid var(--neon-yellow);
    color: var(--neon-yellow) !important;
    padding: 10px 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 25%);
    /* Sci-fi Shape */
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    box-shadow: inset 0 0 10px rgba(255, 230, 0, 0.1);
    margin-left: 30px;
}

.call-btn:hover {
    background: rgba(255, 230, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.4), inset 0 0 10px rgba(255, 230, 0, 0.2);
    transform: translateY(-2px);
}

/* 3. HERO SECTION */
.hero-section {
    position: relative;
    min-height: 80vh;
    /* Reserve space to prevent CLS */
    /* height: 100vh; Removed to fit content */
    padding: 160px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background removed for LCP optimization - moved to img tag */
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

/* LCP Optimized Background Image */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Behind content */
}

/* Overlay for neon effect - REMOVED */

/* Specific overlay div - REMOVED */

.hero-content {
    position: relative;
    z-index: 2;
    /* Content on to p*/
    max-width: 900px;
    transform: translateY(-70px);
    /* Move content up to reveal background text */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--text-main);
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
    /* Added shadow for contrast */
}

/* Gradient Text removed for better readability, using solid color with shadow instead */
.hero-content h1 span {
    color: var(--neon-blue);
}

.hero-content p {
    font-size: 1.35rem;
    /* Increased size */
    color: #0f172a;
    /* Darker slate for better contrast */
    font-weight: 600;
    /* Bolder */
    margin-bottom: 2rem;
    margin-top: 40px;
    /* Added spacing from header */
    border-left: 4px solid var(--neon-blue);
    /* Thicker border */
    padding-left: 20px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.6);
    /* Semi-transparent bg */
    backdrop-filter: blur(4px);
    padding: 10px 20px;
    /* Padding around text */
    border-radius: 0 8px 8px 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Primary Button (Neon Blue) */
.btn-primary {
    background: var(--neon-blue);
    color: white;
    padding: 15px 40px;
    font-weight: 700;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 20px rgba(45, 91, 255, 0.4);
    border: none;
}

.btn-primary:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.6);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.8);
    /* Dark background for visibility */
    border: 2px solid var(--neon-blue);
    /* Thicker border */
    color: white;
    /* White text for contrast */
    padding: 15px 40px;
    font-weight: 700;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    color: white;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.view-all-container {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    display: inline-block;
    padding: 16px 50px;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
    background: transparent;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--neon-blue);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
}

/* Experience Badge - Sci-fi Style */
.experience-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    line-height: 1;
    font-family: 'Rajdhani', sans-serif;
}

.experience-badge .text {
    font-size: 0.7rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* 4. SECTIONS & CARDS */
section {
    padding: 6rem 0;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Info Cards (Glassmorphism) */
.info-section {
    background: var(--deep-bg);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--card-bg);
    border: 1px solid var(--neon-blue);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 15px var(--neon-cyan);
}

.info-card:hover {
    background: var(--neon-blue);
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.info-card:hover .icon,
.info-card:hover h3,
.info-card:hover p {
    color: white;
}

.info-card h3 {
    color: var(--text-main);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}


/* Service Cards (Grid) */
/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    /* Increased spacing */
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    background: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    transform: translateY(-5px);
}

.service-card:hover .card-content h3,
.service-card:hover .card-content p,
.service-card:hover .service-btn {
    color: white;
    text-shadow: none;
}

.card-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.5s, opacity 0.5s, filter 0.5s;
    filter: grayscale(40%);
}

.service-card:hover .card-image img {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: var(--text-main);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.service-btn {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s, text-shadow 0.3s;
}

.service-btn:hover {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}


/* 5. STATS & CTA */
.stats-section {
    background-color: #f1f5f9;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 80px 0;
    position: relative;
    /* subtle overlay for depth */
}

.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    pointer-events: none;
}

/* Ensure content is above the overlay */
/* Ensure content is above the overlay */
/* Ensure content is above the overlay */
.stats-grid {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    /* Center align cards */
    flex-wrap: wrap;
    gap: 30px;
    /* Adjusted gap */
}

/* New Stat Card Design - Optimized */
.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    /* Optimized transition */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-card:hover {
    background: var(--neon-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1;
    transition: color 0.3s;
}

.stat-card p {
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s;
}

/* Hover Effects for Text & Icon */
.stat-card:hover .stat-icon,
.stat-card:hover h3,
.stat-card:hover p {
    color: white;
}

/* Blog styles moved to blog.css */





/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-cyan) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    /* Force white text */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-weight: 500;
    color: white;
    /* Force white text */
}

.btn-white {
    display: inline-block;
    background: white;
    color: var(--neon-blue);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.btn-white:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: black;
}

/* 6. FOOTER */
footer {
    background: #f1f5f9;
    /* Slate 100 */
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 20px 0;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-main);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
}

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-brand .icon {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--neon-cyan);
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.3s;
    font-size: 1.1rem;
    background: rgba(37, 99, 235, 0.05);
}

.footer-social a:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 15px var(--neon-cyan);
    transform: translateY(-3px);
}

/* Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '›';
    font-size: 1.2rem;
    color: var(--neon-blue);
    transition: color 0.3s, transform 0.3s;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
}

.footer-col ul li a:hover::before {
    color: var(--neon-cyan);
    transform: translateX(5px);
    display: inline-block;
    /* Required for transform */
}

.footer-col ul li a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px var(--neon-cyan);
    transform: translateX(5px);
}

/* Contact List */
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.contact-list li .material-symbols-outlined {
    color: var(--neon-cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
    text-shadow: 0 0 5px var(--neon-cyan);
}

.phone-link,
.email-link {
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
}

.phone-link:hover,
.email-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}


/* 7. PAGE HEADERS (SUB PAGES) */
.page-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), var(--deep-bg)), url('image/banner.webp');
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
}

.page-header h1 {
    font-size: 3.5rem;
    color: white;
    /* Keep white on banner image */
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: var(--neon-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}


/* 8. MOBILE MENU */
.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(3, 6, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        border-bottom: 2px solid var(--neon-cyan);
        text-align: center;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

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

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

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        color: var(--neon-cyan);
        padding: 5px;
        transition: transform 0.3s, text-shadow 0.3s;
    }

    .mobile-menu-btn:hover {
        transform: scale(1.1);
        text-shadow: 0 0 10px var(--neon-cyan);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 10px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .call-btn {
        display: none;
        /* Mobilde menü içinde veya ayrı bir yerde gösterilebilir, şimdilik gizliyoruz */
    }
}

/* 9. REGIONS - Moved to regions.css */

/* Contact Form */
input,
select,
textarea {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    background: rgba(45, 91, 255, 0.1);
}

.submit-btn {
    background: var(--neon-blue);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    background: var(--neon-cyan);
    color: black;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

/* 10. FLOATING BUTTONS (FIXED - SMALL & BOTTOM LEFT/RIGHT) */
.float-wa {
    position: fixed;
    bottom: 20px;
    left: 20px;
    /* Alttan 20px, Soldan 20px */
    width: 50px;
    /* Küçültüldü (Normalde 60-70px olur) */
    height: 50px;
    z-index: 9999;
    transition: transform 0.3s, filter 0.3s;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.5));
    /* Hafif neon yeşil gölge */
}

.float-wa:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.8));
}

.float-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* Sağ altta arama butonu */
    width: 50px;
    height: 50px;
    background: var(--neon-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 0 20px rgba(45, 91, 255, 0.5);
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.float-call-btn:hover {
    transform: scale(1.1);
    background: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.8);
}

.float-call-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}


/* 11. GALLERY - Moved to gallery.css */

/* 12. CAMPAIGNS - Moved to campaigns.css */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.85;
}

.gallery-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
    transform: translateY(-5px);
}

.gallery-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

/* Lightbox support styling if needed later, basic hover effect represents interaction now */

/* 13. CONTACT PAGE STYLES */
/* 13. CONTACT - Moved to contact.css */

/* 11. COMMENTS SECTION - Moved to blog.css */

/* --- MOBILE & FLOATING ELEMENTS --- */
.float-wa {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.float-wa img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

/* Fix for Float Call Button if missing */
.float-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--neon-blue);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    animation: pulse 2s infinite;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Global Responsive Image Fix */
img {
    max-width: 100%;
    height: auto;
}

/* --- MOBILE FONT SIZE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
        /* Reduced from 2.5rem */
    }

    .section-title p {
        font-size: 0.85rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
        /* Reduced from 1.3rem */
    }

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

    .container {
        padding: 0 15px;
        /* Ensure padding prevents edge touching */
    }

    /* Page Header Mobile Adjustment */
    .page-header {
        padding: 80px 0 40px;
    }

    .page-header h1 {
        font-size: 1.5rem;
        /* Further reduced from 2rem */
        padding: 0 10px;
        line-height: 1.2;
        word-wrap: break-word;
        /* Handle long words */
    }

    .page-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}