/* =========================================
   NEON CYBERPUNK BENTO UI
   ========================================= */
:root {
    --bg-dark: #050b14; /* Deep space dark */
    --bg-card: rgba(15, 23, 42, 0.7); /* Translucent dark slate */
    --border-color: rgba(255, 255, 255, 0.1); /* Subtle white border */
    --neon-blue: #3b82f6; /* Bright neon blue */
    --neon-green: #a855f7; /* Electric purple/pink */
    --text-main: #f8fafc; /* Crisp white */
    --text-muted: #94a3b8; /* Muted slate */
    --font-main: 'Outfit', sans-serif;
    --glass-blur: blur(16px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    top: -50px; left: -50px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}

/* Moving Mesh Background (Dark Mode) */
body::before {
    content: '';
    position: fixed;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.08) 0%, transparent 30%);
    animation: rotateBg 40s linear infinite;
    z-index: -1; pointer-events: none;
}
@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }

/* Typography */
h1 { font-size: clamp(3rem, 5vw, 5rem); line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 2rem; }
h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.neon-text {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.neon-icon {
    color: var(--neon-blue);
    text-shadow: none;
}
.neon-icon.large { font-size: 3rem; margin-bottom: 1rem; }

/* Glass Card Foundation */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Deeper shadow for dark mode */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), 0 0 20px rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Buttons */
.btn-neon {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--neon-blue);
    color: #ffffff;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn-neon::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}
.btn-neon:hover {
    background: var(--neon-green);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
    transform: translateY(-3px) scale(1.02);
    color: #ffffff;
}
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.btn-outline:hover { color: var(--text-main); }
.full-width { width: 100%; text-align: center; }

/* Navbar */
.glass-nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: rgba(9, 11, 15, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}
.glass-nav.scrolled {
    background: rgba(9, 11, 15, 0.85);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.nav-container {
    display: flex; justify-content: space-between; align-items: center;
    max-width: 1200px; margin: 0 auto; padding: 1.5rem 2rem;
    transition: padding 0.4s ease;
}
.glass-nav.scrolled .nav-container {
    padding: 0.5rem 2rem;
}
.logo { font-size: 1.5rem; font-weight: 800; text-decoration: none; color: #ffffff; display: flex; align-items: center; gap: 0.5rem; }
.logo img { height: 110px; width: auto; transition: height 0.4s ease; }
.glass-nav.scrolled .logo img { height: 60px !important; }
.logo span { background: linear-gradient(90deg, var(--neon-blue), var(--neon-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #e2e8f0; text-decoration: none; font-weight: 600; transition: color 0.3s; }
.nav-links a:hover { color: var(--neon-blue); }
.mobile-menu-btn { display: none; background: none; border: none; color: #ffffff; font-size: 1.5rem; cursor: pointer; }

/* Split Hero Section */
.hero-split {
    display: flex; min-height: 100vh;
    padding: 8rem 2rem 4rem; max-width: 1400px; margin: 0 auto;
    align-items: center; gap: 4rem;
}
.hero-left { flex: 1; z-index: 2; }
.badge {
    display: inline-block; padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem;
    color: var(--neon-blue);
}
.hero-left p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-buttons { display: flex; gap: 1rem; align-items: center; }

/* Hero Staggered Animation */
@keyframes fadeUpAnim {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-left > * {
    opacity: 0;
    animation: fadeUpAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-left .badge { animation-delay: 0.1s; }
.hero-left h1 { animation-delay: 0.2s; }
.hero-left p { animation-delay: 0.3s; }
.hero-left .hero-buttons { animation-delay: 0.4s; }

.hero-right {
    flex: 1; position: relative; height: 600px;
    display: flex; align-items: center; justify-content: center;
}
.floating-img {
    position: absolute; border-radius: 24px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.floating-img img { width: 100%; height: 100%; object-fit: cover; }
.img-1 { width: 300px; height: 400px; z-index: 2; transform: translateY(-30px); animation: float 6s ease-in-out infinite; }
.img-2 { width: 250px; height: 350px; z-index: 1; right: 0; bottom: 50px; transform: translateX(30px); animation: float 8s ease-in-out infinite reverse; filter: brightness(0.7); }
.hero-glow {
    position: absolute; width: 400px; height: 400px;
    background: var(--neon-blue); filter: blur(150px); opacity: 0.1;
    z-index: 0; border-radius: 50%;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* Bento Box Grid */
.bento-section { padding: 2rem 0 4rem; }
.bento-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}
.bento-box {
    position: relative; overflow: hidden; display: flex; flex-direction: column;
    padding: 2rem; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.bento-box:hover {
    transform: translateY(-8px) scale(1.02); 
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}
.neon-border { border-color: var(--neon-blue); box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1); }
.bento-large { grid-column: span 2; grid-row: span 2; justify-content: flex-end; }
.bento-medium { grid-column: span 2; grid-row: span 1; justify-content: flex-end; }
.bento-small { grid-column: span 1; grid-row: span 1; justify-content: center; align-items: center; text-align: center; }

.bento-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -1; opacity: 0.5; transition: opacity 0.3s;
}
.bento-box:hover .bento-bg { opacity: 0.8; }
.bento-content { position: relative; z-index: 1; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.bento-content.center { text-shadow: none; }

/* Brands Marquee */
.brands-section {
    padding: 3rem 0;
    background: rgba(37, 99, 235, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}
.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}
.marquee-content span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0 1rem;
    transition: color 0.3s ease;
}
.marquee-content span:not(.dot):hover {
    color: var(--neon-blue);
}
.marquee-content .dot {
    color: var(--neon-green);
    opacity: 0.5;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gallery Section */
.gallery-section { padding: 4rem 0; background: rgba(37, 99, 235, 0.01); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border: 1px solid var(--border-color);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    border-color: var(--neon-blue);
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Detailed Services 8-Grid (Now 9-Grid) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-item {
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.service-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.service-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    border-color: var(--border-color);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
    border-color: var(--neon-blue);
}
.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Reviews & Form Split */
.reviews-section { padding: 4rem 0; }
.split-reviews { display: flex; gap: 4rem; }
.reviews-list { flex: 1; }
.review-form-container { flex: 1; padding: 2.5rem; }
.testimonials-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 1.5rem; 
    max-height: 550px; 
    overflow-y: auto; 
    padding-right: 1rem; 
}
/* Custom Scrollbar for Reviews */
.testimonials-grid::-webkit-scrollbar { width: 6px; }
.testimonials-grid::-webkit-scrollbar-track { background: rgba(37, 99, 235, 0.05); border-radius: 10px; }
.testimonials-grid::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 10px; }

.testimonial-card { padding: 1.5rem; }
.stars { color: #f59e0b; margin-bottom: 0.5rem; }

.review-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.review-form input, .review-form textarea {
    width: 100%; padding: 1rem; background: #f1f5f9;
    border: 1px solid var(--border-color); border-radius: 12px;
    color: var(--text-main); font-family: var(--font-main); outline: none;
    transition: border-color 0.3s;
}
.review-form input:focus, .review-form textarea:focus { border-color: var(--neon-blue); }
.review-form textarea { min-height: 120px; resize: vertical; }
.rating-input { text-align: left; }
.star-rating i { font-size: 1.5rem; color: #4a5568; cursor: pointer; transition: transform 0.2s; margin-right:0.25rem;}
.star-rating i:hover { transform: scale(1.2); }

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

/* FAQ */
.faq-section { padding: 4rem 0; }
.faq-list { max-width: 800px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { overflow: hidden; }
.faq-question {
    padding: 1.5rem; font-weight: 600; font-size: 1.1rem;
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: color 0.3s;
}
.faq-question:hover { color: var(--neon-blue); }
.faq-question i { transition: transform 0.3s ease; }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--neon-blue); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.4s ease; color: var(--text-muted); }
.faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 200px; }

/* Footer */
.footer { margin-top: 4rem; padding: 4rem 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.footer-logo { height: 180px; width: auto; transition: transform 0.3s; }
.footer-logo:hover { transform: scale(1.05); }

/* Scroll Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Chatbot & WP */
.whatsapp-btn, .ai-bot-btn {
    position: fixed; bottom: 2rem; width: 60px; height: 60px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white; cursor: pointer; z-index: 1000;
    transition: transform 0.3s; border: none;
}
.whatsapp-btn {
    right: 2rem; background: #25d366; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: pulse 2s infinite; text-decoration: none;
}
.whatsapp-btn:hover, .ai-bot-btn:hover { transform: scale(1.1); animation: none; }
.ai-bot-btn {
    left: auto; right: 2rem; bottom: 6.5rem;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
    box-shadow: 0 4px 20px rgba(0,210,255,0.4); animation: float-bot 3s infinite;
}

@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 15px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }
@keyframes float-bot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Gemini Logo Spin Animation */
.gemini-icon { animation: gemini-spin 6s linear infinite; display: inline-block; }
@keyframes gemini-spin { 0% { transform: rotate(0deg) scale(1); } 50% { transform: rotate(180deg) scale(1.1); } 100% { transform: rotate(360deg) scale(1); } }

/* Chatbox */
.ai-chatbox {
    position: fixed; bottom: 11rem; right: 2rem; left: auto; width: 320px; height: 420px;
    display: flex; flex-direction: column; opacity: 0; pointer-events: none;
    transform: translateY(20px) scale(0.95); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: bottom right; z-index: 999;
}
.ai-chatbox.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.ai-chat-header {
    padding: 1rem; border-bottom: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(37, 99, 235, 0.05);
}
.ai-chat-title { font-weight: 600; color: var(--neon-blue); display: flex; gap: 0.5rem; align-items: center; }
.ai-chat-close { background: none; border: none; color: var(--text-main); cursor: pointer; font-size: 1.2rem; }
.ai-chat-body { flex: 1; padding: 1rem; overflow-y: auto; display: flex; flex-direction: column; gap: 1rem; }
.ai-message { max-width: 85%; padding: 0.75rem 1rem; border-radius: 12px; font-size: 0.9rem; }
.ai-message.bot { background: #f1f5f9; color: var(--text-main); align-self: flex-start; border: 1px solid var(--border-color); border-bottom-left-radius: 2px; }
.ai-message.user { background: var(--neon-blue); color: white; font-weight: 600; align-self: flex-end; border-bottom-right-radius: 2px; }
.ai-chat-footer { padding: 1rem; border-top: 1px solid var(--border-color); display: flex; gap: 0.5rem; }
.ai-chat-footer input { flex: 1; background: #f1f5f9; border: 1px solid var(--border-color); border-radius: 20px; padding: 0.5rem 1rem; color: var(--text-main); outline: none; }
.ai-chat-footer button { width: 35px; height: 35px; border-radius: 50%; border: none; background: var(--neon-blue); color: white; cursor: pointer; }

/* Online Service Center & i18n */
.lang-btn.active {
    background: rgba(255,255,255,0.2) !important;
}
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.tab-btn:hover {
    border-color: var(--neon-blue);
    color: var(--text-main);
}
.tab-btn.active {
    background: var(--neon-blue);
    color: white;
    border-color: var(--neon-blue);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-main);
    outline: none;
    transition: border-color 0.3s;
}
.form-input:focus {
    border-color: var(--neon-blue);
}
.file-upload-wrapper {
    position: relative;
    width: 100%;
}
.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border: 2px dashed var(--neon-blue);
    border-radius: 12px;
    color: var(--neon-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}
.file-upload-label:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .bento-layout { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: span 1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .services-8-grid { grid-template-columns: repeat(2, 1fr); }
    .split-reviews { flex-direction: column; }
    .hero-split { flex-direction: column; text-align: center; padding-top: 6rem; gap: 2rem; }
    .hero-buttons { justify-content: center; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    /* Global Compact Spacing */
    section { padding: 2rem 0 !important; }
    .container { padding: 0 1rem; }
    h1 { font-size: 2rem; margin-bottom: 0.75rem; }
    h2 { font-size: 1.5rem; margin-bottom: 1rem; }
    h3 { font-size: 1.2rem; }
    p { font-size: 0.9rem; }
    
    .nav-links { display: none; }
    .nav-links.mobile-menu-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000000;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: center;
        align-items: center;
        gap: 1rem;
    }
    .mobile-menu-btn { display: block; }
    
    /* Mobile Logo Scaling */
    .logo img { height: 75px; }
    .glass-nav.scrolled .logo img { height: 50px !important; }
    .glass-nav.scrolled .nav-container { padding: 0.5rem 1rem; }
    
    /* Fix Hero Overlap - Compact */
    .hero-split { padding-top: 8.5rem !important; padding-bottom: 1rem !important; min-height: auto; gap: 1rem; }
    .hero-right { display: none; /* Hide bulky images on phone for ultimate compactness */ }
    
    /* Fix Bento Overlap - Compact */
    .bento-layout { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 0.75rem; }
    .bento-medium, .bento-large, .bento-small { grid-column: span 1; grid-row: span 1; }
    .bento-box { padding: 1rem !important; min-height: auto; }
    
    /* Fix Detailed Services & Gallery Grid - Compact */
    .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
    .services-8-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .service-item { padding: 1rem !important; gap: 0.25rem; }
    .service-icon { font-size: 2rem; margin-bottom: 0.25rem; }
    
    /* Fix Stats & Marquee - Compact */
    .stats-grid { grid-template-columns: 1fr; gap: 0.75rem; }
    .stat-card { padding: 1.5rem 1rem !important; }
    .stat-number { font-size: 2.5rem; }
    .marquee-content span { font-size: 1rem; margin: 0 0.5rem; }
    
    /* Fix Chatbot */
    .whatsapp-btn { right: 1rem; bottom: 1rem; width: 50px; height: 50px; font-size: 1.5rem; }
    .ai-bot-btn { right: 1rem; bottom: 5rem; width: 50px; height: 50px; font-size: 1.5rem; }
    .ai-chatbox { left: 1rem; right: 1rem; width: auto; bottom: 9rem; height: 350px; }
    
    /* Form & Footer - Compact */
    .glass-card { padding: 1rem !important; border-radius: 16px; }
    .map-container { min-height: 250px; }
    .footer-details { flex-direction: column; gap: 0.5rem; font-size: 0.85rem; }
    .footer-logo { height: 100px; }
}

/* =========================================
   FAT FOOTER (SEO OPTIMIZED)
   ========================================= */
.fat-footer {
    background: #020617; /* Very deep dark for contrast */
    color: var(--text-muted);
    padding: 4rem 0 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-contact .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        gap: 0.5rem;
    }
    .work-item {
        flex-direction: column;
        text-align: center;
    }
}

.footer-col h4 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 40px; height: 3px;
    background: var(--neon-blue);
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.footer-socials a:hover {
    color: white;
    background: var(--neon-blue);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--neon-blue);
    transform: translateX(5px);
}
.footer-links a::before {
    content: '';
    color: var(--neon-blue);
    margin-right: 8px;
}

.footer-works {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.work-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: transform 0.3s ease;
}
.work-item:hover {
    transform: translateX(5px);
}

.work-item img {
    width: 60px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
}

.work-item-info h5 {
    color: var(--text-main);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    font-weight: 500;
}
.work-item-info span {
    color: var(--neon-blue);
    font-size: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-row i {
    color: var(--neon-blue);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}
.contact-row p {
    margin: 0;
    color: var(--text-muted);
}
.contact-row strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    background: #000;
}
