/* ==========================================================================
   BASE & RESET (Energetic Light Theme - PURE DM SANS)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --primary-blue: #0047aa;
    --primary-green: #8cb500;
    --sky-blue: #a1dcf7;
    --vibrant-green: #009245;
    
    --text-main: #1e293b;
    --text-muted: #475569;
    --text-rich-heading: #0a1930; 
    
    --glass-highlight: rgba(255, 255, 255, 1);
    --ease-cinematic: cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-rich-heading);
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* ==========================================================================
   PROGRESS BAR & PRELOADER
   ========================================================================== */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 4px; width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    z-index: 10000;
    transition: width 0.1s linear;
}

.page-transition-overlay {
    position: fixed; inset: 0;
    background: var(--bg-white);
    z-index: 10001;
    transition: opacity 1s var(--ease-cinematic), visibility 1s;
}

.page-transition-overlay.hidden {
    opacity: 0; visibility: hidden;
}

/* NAV */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    background: transparent !important;
}

.logo {
    display: inline-flex;
    align-items: center;
    padding: 0; /* Removed padding */
    border-radius: 0; /* Removed radius */
    
    /* REMOVED: background */
    background: transparent !important; 
    
    /* REMOVED: blur and borders */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important; 
    
    transition: all 0.3s ease;
}

.logo img {
    width: 360px; 
    height: auto;
    display: block;
    
    /* Keeps the transparency trick for your renamed JPG */
    mix-blend-mode: multiply; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    padding: 0.5rem 1.0rem;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;

    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);

    transition: .4s ease;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.35);
}

/* Add this to your existing CSS so dropdowns work with the pills */
.nav-item {
    position: relative;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 1. THE DROPDOWN BOX: Forces vertical stacking */
.dropdown {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 35, 5, 0.95); /* Your dark green */
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    min-width: 220px; /* Slightly wider for better text fit */
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* 👈 ADD THESE TO FIX OVERLAP */
    display: flex;
    flex-direction: column; 
    gap: 8px; 
}

/* 2. THE DROPDOWN LINKS: Removes the "Pill" style */
.dropdown a {
    background: transparent !important; /* Removes the white pill color */
    border: none !important;            /* Removes the pill border */
    backdrop-filter: none !important;   /* Removes the extra blur */
    padding: 0.6rem 1rem !important;    /* Tighter padding */
    border-radius: 8px !important;      /* Subtle corners */
    display: block !important;
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* 3. HOVER EFFECT: For individual links inside */
.dropdown a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #a8e08a !important; /* Green highlight on hover */
}

.hero-cta {
    position: absolute;
    bottom: 4rem;
    right: clamp(3rem, 8vw, 8rem);
    display: flex;
    align-items: center;
    gap: 1.2rem;          /* 👈 THIS is the spacing you want */
    z-index: 5;
}


.glass-tile {
    position: relative;   /* ❌ no absolute anymore */
    padding: 2rem 3rem;
    max-width: 520px;

    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;

    transition: opacity .4s ease, transform .4s ease;
}

.scroll-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);

    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;

    cursor: pointer;
    transition: transform .25s ease, background .25s ease;
}

.scroll-icon img {
    width: 18px;
    height: auto;
    pointer-events: none;
}

.scroll-icon:hover {
    transform: translateY(4px);
    background: rgba(255,255,255,0.2);
}
/* ==========================================================================
   SCROLL REVEAL ENGINE
   ========================================================================== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--ease-cinematic); }
.reveal-left { opacity: 0; transform: translateX(40px); transition: all 0.8s var(--ease-cinematic); }
.reveal-right { opacity: 0; transform: translateX(-40px); transition: all 0.8s var(--ease-cinematic); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: all 0.8s var(--ease-cinematic); }
.revealed { opacity: 1; transform: translateY(0) translateX(0) scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

.split-reveal {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    animation: splitUp 1.2s var(--ease-cinematic) forwards;
}
@keyframes splitUp { 0% { transform: translateY(100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

/* ==========================================================================
   GLOBAL 2D HOVER COMPONENT (Replaces all 3D tilt)
   ========================================================================== */
.hover-lift {
    transition: transform 0.4s var(--ease-cinematic), box-shadow 0.4s var(--ease-cinematic), border-color 0.4s ease;
}
.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 71, 170, 0.15);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-fullbleed {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    padding-bottom: 4rem;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-image img {
    width: 100%; height: 100%; object-fit: cover;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-content {
    max-width: 650px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(25px);
    padding: 4rem;
    margin-top: 80px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.hero-text-content h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; 
    margin-bottom: 1.5rem; color: var(--primary-blue);
}

.hero-desc {
    font-size: 1.15rem; font-weight: 500; line-height: 1.75;
    color: var(--text-muted); margin-bottom: 2.5rem;
}

.hero-promise {
    font-size: 1.1rem; color: var(--text-rich-heading); font-weight: 600; line-height: 1.7;
    padding-left: 1.5rem; border-left: 4px solid var(--primary-green);
    background: linear-gradient(90deg, rgba(140, 181, 0, 0.1), transparent); padding-block: 12px;
}

/* Integrated Location Cards */
.hero-featured-locations {
    display: flex;
    gap: 1.2rem;
    margin-top: 3rem;
}

.featured-loc-card {
    flex: 1;
    height: 110px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.featured-loc-card:hover {
    border-color: var(--primary-green);
}

.loc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.loc-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.featured-loc-card:hover .loc-name {
    color: var(--primary-green);
}

.scroll-down-btn {
    position: absolute; bottom: 2rem; left: 50%; width: 60px; height: 60px;
    border-radius: 50%; background: rgba(255,255,255,0.95); border: 1px solid rgba(0,0,0,0.05);
    color: var(--primary-blue); font-size: 1.5rem; font-weight: bold;
    z-index: 10;
    cursor: pointer;
    margin-left: -30px; /* Centering fix since translate is replaced by hover-lift */
}

.scroll-down-btn:hover { 
    background: var(--primary-blue); 
    color: #fff; 
}

/* ==========================================================================
   ONGOING PROJECTS: Staggered Zig-Zag Layout
   ========================================================================== */
.staggered-section { padding: 12rem 0 8rem 0; background: var(--bg-white); }
.bg-alternate { background: var(--bg-light); }

.section-header { margin-bottom: 5rem; }
.section-title { font-size: 3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text-rich-heading); margin-bottom: 0.5rem; }
.title-underline { width: 0px; height: 5px; background: var(--primary-green); border-radius: 3px; margin-bottom: 2rem; transition: width 1s var(--ease-cinematic) 0.3s; }
.drawn { width: 80px; }
.center-line { margin-inline: auto; }

.staggered-row {
    display: flex; align-items: center; gap: 4rem; margin-bottom: 6rem;
    cursor: pointer; 
}
.staggered-row.reverse-row { flex-direction: row-reverse; }

.stagger-image {
    flex: 1; position: relative; height: 400px; border-radius: 30px; overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05);
    transition: box-shadow 0.4s ease;
}
.stagger-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-cinematic); }

.staggered-row:hover .stagger-image {
    box-shadow: 0 25px 60px rgba(0, 71, 170, 0.15);
}
.staggered-row:hover .stagger-image img { 
    transform: scale(1.05); 
}

.stagger-content { flex: 1; padding: 2rem; }
.stagger-content h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; letter-spacing: -0.02em; transition: color 0.3s; }
.staggered-row:hover .stagger-content h3 { color: var(--primary-blue); }
.stagger-content p { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; font-weight: 500;}

.project-pill {
    position: absolute; bottom: 20px; right: 20px;
    background: #fff; color: var(--primary-blue);
    padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); transition: all 0.4s;
}
.staggered-row:hover .project-pill { background: var(--primary-green); color: #fff; }

/* ==========================================================================
   COMPLETED PROJECTS: Bento Box Grid
   ========================================================================== */
.bento-section { padding: 8rem 0; }

.bento-grid {
    display: grid; grid-template-columns: 1.5fr 1fr; grid-template-rows: 1fr 1fr;
    gap: 2rem; min-height: 600px; 
}

.bento-card {
    position: relative; border-radius: 30px; overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.05);
    background: #fff; cursor: pointer; 
}

.bento-main { grid-row: 1 / span 2; }

.bento-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
.bento-card:hover img { transform: scale(1.05); }

.bento-content {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,25,48,0.95) 0%, rgba(10,25,48,0.4) 60%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem 2.5rem;
}
.bento-side .bento-content { padding: 2rem; }

.bento-content .project-pill { position: relative; bottom: auto; right: auto; align-self: flex-start; margin-bottom: 1.5rem; }
.bento-content h3 { color: #fff; font-size: 2rem; margin-bottom: 0.8rem; line-height: 1.2; transition: color 0.3s;}
.bento-card:hover .bento-content h3 { color: var(--sky-blue); }
.bento-side .bento-content h3 { font-size: 1.5rem; }
.bento-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.6; }

/* ==========================================================================
   MERGED ULTIMATE TESTIMONIALS
   ========================================================================== */
.testimonials-section { 
    padding: 8rem 0; position: relative; background: var(--bg-light); overflow: hidden; 
}

.testimonial-marquee-wrapper {
    position: relative; width: 100vw; margin-left: calc(-50vw + 50%); 
    display: flex; flex-direction: column; gap: 3rem; padding: 2rem 0;
    z-index: 2;
}

.marquee-row { display: flex;  width: max-content; }
.marquee-track { display: flex; gap: 2rem; padding-right: 2rem; animation: marqueeScroll 45s linear infinite; }
.marquee-track.reverse { animation: marqueeScrollReverse 45s linear infinite; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes marqueeScrollReverse { 0% { transform: translateX(-100%); } 100% { transform: translateX(0); } }

/* Simple, beautiful 2D lift for testimonial cards */
.testi-card-v2 {
    position: relative; width: 400px; height: 280px; border-radius: 24px; overflow: hidden;
    background: #000; box-shadow: 0 15px 35px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer; transition: transform 0.5s var(--ease-cinematic), box-shadow 0.5s var(--ease-cinematic);
}

.testi-card-v2 .testi-bg {
    position: absolute; inset: -5%; width: 110%; height: 110%; object-fit: cover;
    filter: brightness(0.3) blur(2px); transition: filter 0.6s var(--ease-cinematic), transform 0.6s var(--ease-cinematic); z-index: 0;
}

.testi-card-v2 .testi-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 25, 48, 0.9) 0%, rgba(10, 25, 48, 0.4) 100%);
    z-index: 1; transition: opacity 0.5s ease;
}

.testi-card-v2 .testi-content {
    position: relative; z-index: 2; padding: 2rem; height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
}

.company-icon-box {
    width: 45px; height: 45px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.2); margin-bottom: 1rem; transition: transform 0.4s ease, background 0.4s;
}
.company-icon-box svg { width: 24px; height: 24px; fill: #fff; }

.testi-card-v2 .testi-quote { color: #fff; font-size: 1.1rem; font-weight: 500; line-height: 1.5; font-style: italic; margin-bottom: 1rem; transition: color 0.3s ease; }
.testi-card-v2 .testi-author h4 { color: #fff; font-size: 1.15rem; margin-bottom: 0.2rem; }
.testi-card-v2 .testi-author span { color: var(--primary-green); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; }

/* Elegant 2D hover replacing the 3D physics */
.testi-card-v2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 71, 170, 0.25), 0 0 0 1px rgba(255,255,255,0.3); z-index: 50;
}
.testi-card-v2:hover .testi-bg { filter: brightness(0.5) blur(0px); transform: scale(1.05); }
.testi-card-v2:hover .testi-overlay { opacity: 0.8; }
.testi-card-v2:hover .company-icon-box { transform: translateY(-5px); background: var(--primary-green); border-color: var(--primary-green); }
.testi-card-v2:hover .testi-quote { color: var(--sky-blue); }


/* ==========================================================================
   DASHBOARD: Asymmetric Layout & Fixed Charts
   ========================================================================== */
.asymmetric-dashboard { padding: 8rem 0; }

.dashboard-layout { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; }
.kpi-vertical-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.kpi-glass-card {
    background: #fff; border-radius: 20px; padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    cursor: default;
}
.kpi-glass-card:hover { 
    border-color: rgba(0,0,0,0.1);
}

.kpi-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block;}

/* Sweet Counter Animation CSS */
.kpi-value { 
    font-size: 3.8rem; font-weight: 800; margin: 0.2rem 0; color: var(--primary-blue); letter-spacing: -0.05em; display: block;
}

/* Base state for counter animation */
.counter {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Revealed state triggered by JS */
.kpi-glass-card.revealed .counter {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.kpi-sub { font-size: 0.9rem; color: var(--vibrant-green); font-weight: 700; display: block;}

.charts-vertical-main { display: flex; flex-direction: column; gap: 3rem; }

.chart-glass-panel {
    background: #ffffff; border-radius: 30px; padding: 3rem;
    border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 20px 50px rgba(0,0,0,0.04); 
}
.chart-glass-panel h4 { font-size: 1.6rem; font-weight: 800; margin-bottom: 2rem; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 1rem;}

/* FIXED: Guaranteed Canvas Dimensions - No !important tags interfering */
.chart-wrapper { 
    position: relative; 
    height: 350px; 
    width: 100%; 
    display: block; 
}

/* ==========================================================================
   BHUMI GREEN ENERGY - NEW IMPROVED FOOTER CSS
   ========================================================================== */

.footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Increased right padding (140px) to create a safe zone for floating icons */
    padding: 80px 140px 60px 80px; 
    background: linear-gradient(145deg, #0047a5, #003579);
    color: #fff;
    font-family: "Poppins", -apple-system, sans-serif;
    position: relative;
    overflow: hidden;
    gap: 50px;
}

/* --- LEFT COLUMN --- */
.footer-left {
    flex: 1.2;
    min-width: 300px;
}

.footer-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-badges {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-badges span {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.dot {
    width: 10px;
    height: 10px;
    background: #00d063;
    border-radius: 50%;
    margin-right: 10px;
    box-shadow: 0 0 12px rgba(0, 208, 99, 0.6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    max-width: 450px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #00d063;
}

.footer-copy {
    font-size: 13px;
    opacity: 0.5;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* --- RIGHT COLUMN (FIXED) --- */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Keeps content away from the center */
    text-align: right;
    min-width: 350px;
}

.footer-desc {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 440px; /* Controlled width to avoid hitting social icons */
}

.footer-btn {
    padding: 14px 32px;
    border-radius: 50px;
    background: #ffffff;
    color: #003579;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-btn:hover {
    transform: scale(1.05) translateX(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
    border-radius: 8px;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 1;
}

/* --- FLOATING SOCIAL PANEL (POSITIONED IN SAFE ZONE) --- */
.footer-floating-icons {
    position: absolute;
    right: 40px; /* Positioned inside the 140px padding zone */
    top: 50%;
    transform: translateY(-50%); /* Perfectly centered vertically */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 10;
}

.circle-btn {
    width: 48px;
    height: 48px;
    background: #004fbb;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-btn:hover { 
    background: #00d063; 
    transform: translateY(-5px);
}

.side-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
}

.icon-btn {
    width: 42px;
    height: 42px;
    background: #0051c5;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.icon-btn:hover { 
    transform: scale(1.15) rotate(5deg);
    background: #0047a5;
}
/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .staggered-row, .staggered-row.reverse-row { flex-direction: column; gap: 2rem;}
    .hero-text-content { margin-left: 2rem; margin-right: 2rem;}
    .dashboard-layout { grid-template-columns: 1fr; }
    .kpi-vertical-sidebar { flex-direction: row; flex-wrap: wrap; }
    .kpi-glass-card { flex: 1; min-width: 200px;}
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-main { grid-row: auto; }
    .footer { padding: 60px 100px 60px 50px; }
}

@media (max-width: 900px) {
    .hero-featured-locations { flex-direction: column; }
    .footer { flex-direction: column; padding: 60px 40px; align-items: center; text-align: center; }
    .footer-left, .footer-right { width: 100%; align-items: center; }
    .footer-floating-icons { position: static; transform: none; flex-direction: row; margin-top: 40px; width: 100%; justify-content: center; }
    .side-icons { flex-direction: row; }
}

@media (max-width: 600px) {
    .hero-text-content { padding: 2rem; margin: 0 1rem; }
    .hero-text-content h1 { font-size: 2.5rem; }
    .section-title { font-size: 2.2rem; }
    .testi-card-v2 { width: 300px; height: 240px; }
}