/* ============================================================================
Can Isıtma
   ============================================================================ */

:root {
    /* Industrial Color Palette 2026 */
    --primary: #f97316; /* Safety Orange - Main Accent */
    --primary-dark: #c2410c;
    --primary-light: #fb923c;
    
    --secondary: #0f172a; /* Deep Steel Blue - Backgrounds */
    --secondary-light: #1e293b;
    --secondary-lighter: #334155;
    
    --surface: #ffffff;
    --surface-alt: #f1f5f9;
    
    --text-main: #0f172a;
    --text-light: #64748b;
    --text-white: #f8fafc;
    
    --border: #e2e8f0;
    --border-dark: #1e293b;
    
    --success: #10b981;
    --danger: #ef4444;
    
    /* Technical Specs */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-neon: 0 0 15px rgba(249, 115, 22, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--surface-alt);
    line-height: 1.6;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    line-height: 1.2;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================================
   UI COMPONENTS
   ============================================================================ */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 1px;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before { left: 100%; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--surface);
    color: var(--surface);
}

.btn-outline:hover {
    background: var(--surface);
    color: var(--secondary);
}

.btn-accent {
    background-color: var(--primary);
    color: white;
    font-size: 14px;
    padding: 10px 24px;
}

.btn-accent:hover {
    background-color: var(--primary-dark);
}

.btn-black {
    background-color: var(--secondary);
    color: white;
}

.btn-black:hover {
    background-color: black;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

/* ============================================================================
   HEADER & NAV
   ============================================================================ */

.top-bar {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span, .top-contact a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-right: 20px;
    color: #cbd5e1;
}

.top-contact a:hover { color: var(--primary); }

.header {
    background: white;
    height: 90px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-md);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: var(--radius-sm);
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    color: var(--secondary);
    line-height: 1;
}

.brand-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--secondary);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--primary); }

/* Mega Dropdown */
.dropdown-trigger { position: relative; height: 100%; display: flex; align-items: center; }
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 800px;
    background: white;
    border-top: 4px solid var(--primary);
    box-shadow: var(--shadow-lg);
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.dropdown-trigger:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-lighter);
    transition: var(--transition);
}

.mega-item:hover {
    background-color: var(--surface-alt);
    color: var(--primary);
    transform: translateX(5px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
}

/* ============================================================================
   HERO SECTION - INDUSTRIAL 2026
   ============================================================================ */

.hero-section {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--secondary);
    color: white;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 70% 50%, #1e293b 0%, #0f172a 100%);
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--primary);
    color: transparent;
    display: block;
}

.hero-desc {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-box { display: flex; flex-direction: column; }
.stat-num { font-size: 32px; font-weight: 800; font-family: var(--font-heading); color: white; }
.stat-label { font-size: 12px; color: var(--text-light); letter-spacing: 1px; }

/* Hero Visual Animation */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-circle-outer {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

.tech-circle-inner {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    animation: spin 20s linear infinite reverse;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

.hero-img-container {
    position: relative;
    z-index: 2;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-main-img {
    width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--secondary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 5s ease-in-out infinite;
}

.floating-card i { color: var(--primary); }
.c1 { top: 40px; left: -40px; animation-delay: 1s; }
.c2 { bottom: 60px; right: -30px; animation-delay: 2s; }

/* ============================================================================
   SECTIONS
   ============================================================================ */

.section { padding: 100px 0; }
.tech-strip {
    background: var(--primary);
    color: white;
    padding: 20px 0;
    overflow: hidden;
}

.strip-content {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-head h2 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.accent-color { color: var(--primary); }
.light-head h2 { color: white; }
.light-head p { color: #cbd5e1; }

.title-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Services Grid */
.services-section { background-color: var(--surface-alt); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.tech-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.card-border {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--secondary-light);
    transition: var(--transition);
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.tech-card:hover .card-border { background: var(--primary); }

.card-icon {
    width: 60px; height: 60px;
    background: var(--surface-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.tech-card:hover .card-icon {
    background: var(--primary);
    color: white;
}

.tech-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.tech-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.tech-card:hover .read-more { color: var(--primary); gap: 12px; }

.dark-section {
    background-color: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 0; /* ÖNEMLİ: Arka plan z-index düşük */
}

.section-bg-pattern {
    position: absolute;
    opacity: 0.05;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="white"/></svg>');
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    z-index: 0; /* ÖNEMLİ: En arkada */
    pointer-events: none; /* ÖNEMLİ: Tıklamaları engellemesin */
}

.regions-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.region-chip {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer; /* ÖNEMLİ: Mouse imlecini pointer yap */
    position: relative;
    z-index: 2; /* ÖNEMLİ: Üstte olsun */
    pointer-events: auto; /* ÖNEMLİ: Tıklanabilir olsun */
}

.chip-icon { 
    color: var(--primary); 
    font-size: 12px; 
}
.region-chip:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.05);
    color: white; /* Yazı rengini beyaz yap hover'da */
}
.region-chip:hover .chip-icon { 
    color: white; 
}

/* Testimonials */
.reviews-slider {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 40px;
    scroll-snap-type: x mandatory;
}

.review-box {
    min-width: 350px;
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    scroll-snap-align: start;
    position: relative;
    border: 1px solid var(--border);
}

.quote-icon {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 40px;
    color: var(--surface-alt);
}

.review-stars { color: #fbbf24; margin-bottom: 15px; font-size: 14px; }
.review-content { font-style: italic; color: var(--text-light); margin-bottom: 20px; font-size: 15px; }

.review-meta { display: flex; align-items: center; gap: 15px; }
.review-avatar {
    width: 45px; height: 45px;
    background: var(--secondary);
    color: white;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-weight: 700;
}
.review-info strong { display: block; font-size: 15px; color: var(--secondary); }
.review-info span { font-size: 12px; color: var(--text-light); }

/* CTA Area */
.tech-cta {
    background: var(--surface-alt);
    padding: 80px 0;
}

.cta-inner {
    background: linear-gradient(135deg, var(--primary), #ea580c);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-inner::after {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
}

.cta-text { position: relative; z-index: 1; max-width: 600px; }
.cta-text h2 { color: white; font-size: 36px; margin-bottom: 15px; }
.cta-text p { color: rgba(255,255,255,0.9); font-size: 18px; }

.cta-btns { position: relative; z-index: 1; display: flex; gap: 15px; }

/* ============================================================================
   INTERNAL PAGES
   ============================================================================ */
.page-header {
    background: var(--secondary);
    color: white;
    padding: 60px 0;
    position: relative;
}

.page-header h1 {
    font-size: 42px;
    color: white;
    margin-top: 15px;
}

.breadcrumb-trail { font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumb-trail a { color: rgba(255,255,255,0.8); }
.breadcrumb-trail a:hover { color: var(--primary); }
.breadcrumb-trail .sep { margin: 0 8px; }
.breadcrumb-trail .active { color: var(--primary); font-weight: 600; }

.page-content-wrapper { padding: 60px 0; background: var(--surface-alt); }

.layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.content-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* Content Typography */
.content-box h2 { font-size: 28px; margin: 30px 0 20px; color: var(--secondary); border-left: 4px solid var(--primary); padding-left: 20px; }
.content-box h3 { font-size: 22px; margin: 25px 0 15px; color: var(--secondary-lighter); }
.content-box p { margin-bottom: 20px; font-size: 16px; color: var(--text-light); }
.content-box ul { margin-bottom: 25px; padding-left: 20px; }
.content-box li { list-style-type: disc; margin-bottom: 10px; color: var(--text-main); }
.lead { font-size: 18px; font-weight: 500; color: var(--secondary); }

.smart-link { color: var(--primary); font-weight: 600; border-bottom: 1px dotted var(--primary); }

.info-box {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 30px 0;
}

.article-cta {
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}
.cta-icon { font-size: 30px; color: var(--primary); }
.cta-info h3 { margin: 0; font-size: 20px; color: white; }
.cta-info p { margin: 0; font-size: 14px; color: #cbd5e1; }
.article-cta .btn { margin-left: auto; }

/* Sidebar */
.widget {
    background: white;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    overflow: hidden;
}

.widget-head {
    background: var(--secondary);
    padding: 15px 20px;
    color: white;
}
.widget-head h3 { font-size: 16px; margin: 0; color: white; display: flex; align-items: center; gap: 10px; }

.widget-body { padding: 20px; }

.loc-link, .side-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}
.loc-link:hover, .side-link:hover {
    background: var(--surface-alt);
    color: var(--primary);
    padding-left: 15px;
}

.loc-header-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border);
}
.btn-back { font-size: 13px; color: var(--primary); font-weight: 600; }

.contact-card { text-align: center; }
.contact-num { display: block; font-size: 24px; font-weight: 800; color: var(--primary); margin: 10px 0; }
.contact-mail { color: var(--text-light); font-size: 14px; }

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
    background: var(--secondary);
    color: #cbd5e1;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid-pattern {
    position: absolute;
    top:0; right:0; width: 300px; height: 300px;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.f-logo { font-size: 24px; font-weight: 800; color: white; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); }
.f-logo i { color: var(--primary); }
.f-desc { font-size: 14px; line-height: 1.8; color: #94a3b8; }

.footer-links h4, .footer-contact h4 {
    color: white; font-size: 16px; margin-bottom: 25px; position: relative;
    padding-bottom: 10px;
}
.footer-links h4::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--primary);
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: #94a3b8; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; font-size: 14px; }
.footer-contact i { color: var(--primary); }

.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

/* ============================================================================
   MOBILE & RESPONSIVE
   ============================================================================ */

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1005;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed; top: 0; right: -300px;
    width: 300px; height: 100%;
    background: var(--surface);
    z-index: 1006;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);
    display: flex; flex-direction: column;
}
.mobile-menu.active { right: 0; }

.mobile-head {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.m-brand { font-weight: 800; font-family: var(--font-heading); font-size: 20px; color: var(--secondary); }
.close-menu { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--text-light); }

.mobile-body { padding: 20px; overflow-y: auto; }
.m-link {
    display: flex; align-items: center; gap: 12px;
    padding: 15px 0;
    font-weight: 600; font-family: var(--font-heading); color: var(--secondary);
    border-bottom: 1px solid var(--surface-alt);
    font-size: 15px;
}
.m-link.highlight { color: var(--primary); }

.m-dropdown-list {
    display: none;
    background: var(--surface-alt);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin-top: 5px;
}
.m-dropdown-list.active { display: block; }
.m-dropdown-list a { display: block; padding: 10px; font-size: 14px; color: var(--text-light); }

/* Floating Buttons */
.floating-actions {
    position: fixed; bottom: 30px; right: 30px;
    display: flex; flex-direction: column; gap: 15px;
    z-index: 999;
}
.float-btn {
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.float-btn.whatsapp { background: #25d366; }
.float-btn.phone { background: var(--primary); }
.float-btn:hover { transform: scale(1.1); }

/* Media Queries */
@media (max-width: 1024px) {
    .nav-menu, .btn-glitch { display: none; }
    .mobile-toggle { display: block; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-visual { display: none; }
    .hero-buttons, .hero-stats-row { justify-content: center; }
    .strip-content { font-size: 14px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .cta-inner { flex-direction: column; text-align: center; gap: 30px; }
    .layout-grid { grid-template-columns: 1fr; }
    .sidebar { order: 2; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 42px; }
    .strip-content { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .footer-links h4::after { left: 50%; transform: translateX(-50%); }
    .social-links { justify-content: center; }
    .footer-contact li { justify-content: center; }
    .f-logo { justify-content: center; }
}