/* GLOBAL VARIABLES & RESET */
:root {
    --primary: #0a3d62;     
    --secondary: #f39c12;   
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* GLOBAL SAFETY LOCK: Prevents horizontal scrolling bugs on mobile */
html, body { overflow-x: hidden; }

body { color: var(--text-dark); line-height: 1.7; background-color: var(--white); display: flex; flex-direction: column; min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
main { flex: 1; margin-top: 80px; } 

/* Typography Upgrade (Poppins Font) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
* { font-family: 'Poppins', sans-serif; }

/* Entrance Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade { opacity: 0; }
.animate-fade.visible { animation: fadeInUp 0.8s ease forwards; }

/* BUTTONS */
.btn-primary { background: var(--secondary); color: var(--white); padding: 10px 24px; border-radius: 30px; text-decoration: none; font-weight: 600; transition: var(--transition); display: inline-block; box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); }
.btn-primary:hover { background: #e67e22; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); }
.large-btn { padding: 15px 40px; font-size: 1.1rem; }

/* PULSE ANIMATION FOR MAIN BUTTON */
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(243, 156, 18, 0); } 100% { box-shadow: 0 0 0 0 rgba(243, 156, 18, 0); } }
.pulse-btn { animation: pulse 2s infinite; }

/* Back-to-Top Button */
#backToTop { position: fixed; bottom: 90px; right: 30px; background: var(--secondary); color: white; border: none; width: 45px; height: 45px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: none; box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4); z-index: 999; transition: transform 0.3s, background 0.3s; }
#backToTop:hover { transform: translateY(-5px); background: #d68910; }

/* NAVBAR (MULTI-PAGE SETUP) - FROSTED GLASS UPGRADE */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 5%;
    background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4); box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: fixed; width: 100%; top: 0; z-index: 1000;
}
.nav-logo { height: 80px; width: auto; }
.nav-links { list-style: none !important; display: flex !important; flex-direction: row !important; gap: 35px; align-items: center; margin: 0; padding: 0; }
.nav-links li a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 1.05rem; transition: color 0.3s ease; }
.nav-links li a:hover, .nav-links li a.active-link { color: var(--secondary); }
.mobile-socials, .mobile-only { display: none !important; }
.nav-links i { display: none !important; }

/* NAVIGATION DROPDOWN MENU */
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); box-shadow: 0 15px 35px rgba(0,0,0,0.1); list-style: none; min-width: 240px; border-radius: 8px; padding: 10px 0; overflow: hidden; z-index: 1001; border-top: 3px solid var(--secondary); }
.dropdown-menu li a { display: block; padding: 12px 20px; color: var(--text-dark); font-size: 0.95rem; transition: var(--transition); border-bottom: none; }
.dropdown-menu li a:hover { background: var(--bg-light); color: var(--secondary); padding-left: 25px; }
.dropdown:hover .dropdown-menu { display: block; animation: fadeIn 0.3s ease; }

.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; }
.menu-toggle .bar { height: 3px; width: 25px; background-color: var(--primary); transition: all 0.3s ease; }
.nav-right-section { display: flex; align-items: center; gap: 20px; }
.header-icons { display: flex; gap: 15px; font-size: 1.1rem; color: var(--primary); }
.header-icons a { color: var(--primary); text-decoration: none; transition: transform 0.3s ease; }
.header-icons a:hover { color: var(--secondary); transform: scale(1.2); }

/* FOOTER */
footer { background: #052238; color: rgba(255,255,255,0.5); text-align: center; padding: 40px 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; text-align: left; }
.footer-col h3 { color: var(--white); margin-bottom: 20px; font-size: 1.3rem; border-bottom: 2px solid rgba(255,255,255,0.1); padding-bottom: 10px;}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 30px; left: 30px; background-color: #25d366; color: #fff; border-radius: 50px; padding: 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; transition: transform 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1); }

/* HERO SECTION WITH VIDEO BACKGROUND */
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding-top: 100px; background-color: #11619b; }
.hero-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translateX(-50%) translateY(-50%); object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(38, 115, 173, 0.9) 0%, rgba(10, 61, 98, 0.7) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 800px; padding: 0 20px; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; margin-bottom: 20px; line-height: 1.1; color: #fff; letter-spacing: -1px;}
.hero-content p { font-size: 1.25rem; margin-bottom: 35px; opacity: 0.9; font-weight: 300;}

/* Floating Welcome Stats */
.stats-container { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; background: linear-gradient(135deg, var(--primary), #052238); padding: 50px 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(10, 61, 98, 0.2); color: white; transform: translateY(-50px); position: relative; z-index: 10; margin: 0 5%; }
.stat-box { flex: 1; min-width: 200px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-box:last-child { border-right: none; }
.stat-box h3 { font-size: 3.5rem; color: var(--secondary); margin-bottom: 5px; line-height: 1; font-weight: 800; }
.stat-box p { color: rgba(255,255,255,0.8); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; margin: 0; font-weight: 500;}

/* =========================================
   SERVICES BENTO GRID CSS
   ========================================= */
.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 25px;
    margin-top: 40px;
}
.service-bento-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    border: 1px solid rgba(10, 61, 98, 0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}
.service-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.08), rgba(10, 61, 98, 0.03));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}
.service-bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(10, 61, 98, 0.12);
    border-color: rgba(243, 156, 18, 0.4);
}
.service-bento-card:hover::before {
    opacity: 1;
}

.service-bento-card.residential {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 60%, rgba(243, 156, 18, 0.05));
}
.service-bento-card.corporate {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(180deg, #ffffff 60%, rgba(10, 61, 98, 0.05));
}
.service-bento-card.packing {
    grid-column: span 1;
}
.service-bento-card.vehicle {
    grid-column: span 1;
}

.bento-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(243, 156, 18, 0.15);
    color: var(--secondary);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bento-badge.dark-badge {
    background: rgba(10, 61, 98, 0.1);
    color: var(--primary);
}

.service-bento-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-bento-content .service-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(243, 156, 18, 0.1);
    color: var(--secondary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}
.service-bento-card:hover .service-icon-wrapper {
    background: var(--secondary);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}
.service-bento-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}
.service-bento-content p {
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}
.service-bento-btn {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease, color 0.3s ease;
}
.service-bento-card:hover .service-bento-btn {
    color: var(--secondary);
    gap: 12px;
}

/* =========================================
   WHY CHOOSE US GRID
   ========================================= */
@keyframes driveTruck {
    0% { left: -30%; transform: rotate(0deg); }
    48% { transform: rotate(-2deg); }
    50% { transform: rotate(0deg); }
    52% { transform: rotate(2deg); }
    100% { left: 120%; transform: rotate(0deg); }
}
.animated-truck { animation: driveTruck 7s linear infinite; }

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card { 
    background: var(--white); 
    padding: 30px 25px; 
    border-radius: 20px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
    border: 1px solid #f1f2f6; 
    transition: all 0.3s ease; 
    display: flex; 
    gap: 20px; 
    align-items: flex-start; 
}
.feature-card:hover { 
    transform: translateY(-8px); 
    border-color: rgba(243, 156, 18, 0.3); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}
.feature-icon { 
    min-width: 55px; 
    height: 55px; 
    background: rgba(243, 156, 18, 0.1); 
    border-radius: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 1.6rem; 
    color: var(--secondary); 
    transition: all 0.3s ease; 
}
.feature-card:hover .feature-icon { 
    background: var(--secondary); 
    color: white; 
    transform: scale(1.05); 
}

/* Timeline Process Steps */
.process-container { position: relative; z-index: 1; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; text-align: center; position: relative; }
@media (min-width: 900px) {
    .process-steps::before { content: ''; position: absolute; top: 45px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, transparent, var(--secondary), transparent); opacity: 0.5; z-index: -1; }
}
.step-circle { width: 90px; height: 90px; background: var(--white); color: var(--primary); font-size: 2rem; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 25px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 4px solid var(--bg-light); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.process-steps div:hover .step-circle { background: var(--secondary); color: var(--white); border-color: var(--secondary); transform: scale(1.15) translateY(-5px); box-shadow: 0 15px 30px rgba(243, 156, 18, 0.3); }

/* FAQ ACCORDION UI */
.faq-item { border-bottom: 1px solid #e1e8ed; margin-bottom: 10px; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 1.15rem; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s; }
.faq-question:hover { color: var(--secondary); }
.faq-question i { transition: transform 0.4s ease; color: var(--text-light); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-light); font-size: 1.05rem; line-height: 1.8; margin: 0; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-item.active .faq-question { color: var(--secondary); }
.faq-item.active .faq-question i { transform: rotate(180deg); color: var(--secondary); }

/* BENTO GRID GALLERY UI */
.bento-section { padding: 40px 5% 80px; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, 250px); gap: 20px; max-width: 1200px; margin: 40px auto 0; }
.bento-item { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; cursor: pointer; }
.bento-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.bento-item:hover img { transform: scale(1.08); }
.bento-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(10, 61, 98, 0.95), transparent); padding: 40px 20px 20px; color: white; transform: translateY(100%); transition: transform 0.4s ease; }
.bento-item:hover .bento-overlay { transform: translateY(0); }
.bento-overlay h4 { color: var(--secondary); font-size: 1.3rem; margin-bottom: 5px; }
.bento-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-item:nth-child(2) { grid-column: span 2; grid-row: span 1; }
.bento-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
.bento-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }

/* TESTIMONIAL CAROUSEL UI */
.testimonial-carousel-wrapper { position: relative; display: flex; align-items: center; justify-content: center; padding: 0 50px; margin-top: 40px; width: 100%; box-sizing: border-box; }
.carousel-track-container { overflow: hidden; width: 100%; border-radius: 16px; padding: 20px 0; }
.carousel-track { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; transition: transform 0.5s ease-in-out; align-items: stretch; }
.carousel-slide { min-width: calc(33.333% - 20px) !important; max-width: calc(33.333% - 20px) !important; flex-shrink: 0 !important; box-sizing: border-box; } 
.review-card { background: var(--bg-light); padding: 40px 30px; border-radius: 16px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); text-align: center; position: relative; border: 1px solid #eee; height: 100%; display: flex; flex-direction: column; justify-content: space-between; transition: transform 0.3s; }
.review-card:hover { transform: translateY(-5px); }
.review-text { font-style: italic; color: #333; margin-bottom: 25px; line-height: 1.7; white-space: normal !important; word-wrap: break-word; flex-grow: 1; }
.stars { color: #f1c40f; font-size: 1.5rem; margin-bottom: 15px; letter-spacing: 2px; }
.client-name { font-weight: bold; color: var(--primary); font-size: 1.1rem; }
.client-location { font-size: 0.9rem; color: #666; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: var(--white); color: var(--primary); border: 2px solid #eee; width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; z-index: 10; box-shadow: 0 4px 10px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.carousel-btn:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.prev-btn { left: 0; }
.next-btn { right: 0; }

/* ADVANCED UI: GALLERY, BLOG & PAGE HEADERS */
.page-header { background: var(--primary); color: white; padding: 80px 20px; text-align: center; margin-bottom: 20px; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 25px; padding: 40px 0; }
.gallery-item { position: relative; height: 300px; border-radius: 12px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(10, 61, 98, 0.95)); color: white; padding: 30px 20px 20px; transform: translateY(100%); transition: transform 0.3s ease; }
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-caption h4 { color: var(--secondary); margin-bottom: 5px; font-size: 1.2rem;}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; padding: 40px 0; }
.blog-card { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease; border: 1px solid #f1f2f6; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.blog-image { height: 220px; background-size: cover; background-position: center; }
.blog-content { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.blog-date { color: var(--secondary); font-weight: 700; font-size: 0.9rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px;}
.blog-content h3 { color: var(--primary); margin-bottom: 15px; font-size: 1.4rem; line-height: 1.3;}
.blog-content p { color: var(--text-light); margin-bottom: 20px; flex: 1; }
.read-more { color: var(--primary); font-weight: bold; text-decoration: none; align-self: flex-start; border-bottom: 2px solid transparent; transition: border-color 0.3s; padding-bottom: 3px;}
.read-more:hover { border-color: var(--secondary); color: var(--secondary); }
.blog-article-content { max-width: 800px; margin: 0 auto; padding: 40px 20px; font-size: 1.1rem; line-height: 1.8;}
.blog-article-content h2 { margin: 40px 0 20px; font-size: 2rem; }
.blog-article-content img { width: 100%; border-radius: 12px; margin-bottom: 30px; box-shadow: var(--shadow); }

/* =========================================
   MOBILE RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 900px) {
    .stats-container { transform: translateY(-20px); padding: 30px 20px; flex-direction: column; gap: 40px; }
    .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; }
    .stat-box:last-child { border-bottom: none; padding-bottom: 0; }
    
    .services-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .service-bento-card.residential,
    .service-bento-card.corporate,
    .service-bento-card.packing,
    .service-bento-card.vehicle {
        grid-column: span 1;
        grid-row: span 1;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .navbar { position: fixed; top: 0; left: 0; width: 100%; height: 75px !important; background-color: #ffffff; padding: 0 5%; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: space-between; }
    .nav-right-section, .header-icons, .nav-btn { display: none !important; }
    .nav-logo { height: 40px; }
    .hero-section { padding-top: 100px !important; }
    .page-header { padding-top: 100px !important; margin-top: 0 !important; }

    .menu-toggle { display: flex !important; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
    .menu-toggle .bar { width: 30px; height: 3px; background-color: var(--primary); border-radius: 3px; transition: all 0.3s ease-in-out; }

    .nav-links { position: fixed; top: 0; left: -100%; width: 75% !important; max-width: 320px !important; height: 100vh; background: rgba(10, 61, 98, 0.98) !important; backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px) !important; display: flex !important; flex-direction: column !important; justify-content: flex-start; padding: 90px 20px 20px 20px !important; margin: 0; box-shadow: 10px 0 30px rgba(0,0,0,0.5); transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 999; overflow-y: auto !important; }
    .nav-links.active { left: 0; }
    .nav-links li { width: 100%; list-style: none; border-bottom: none; }
    .nav-links a { color: #ffffff !important; border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important; padding: 15px 10px !important; display: flex !important; align-items: center; gap: 15px; font-weight: 500; font-size: 1.1rem; text-decoration: none; transition: background 0.3s; }
    .nav-links a:hover, .nav-links a.active-link { color: var(--secondary) !important; background: rgba(255, 255, 255, 0.05) !important; border-left: 4px solid var(--secondary) !important; padding-left: 15px !important; }

    .mobile-only { display: block !important; }
    .nav-links i { display: inline-block !important; } 

    .dropdown-menu { position: static; display: none; background: rgba(0, 0, 0, 0.2) !important; border-left: 2px solid rgba(255, 255, 255, 0.2) !important; margin: 5px 0 10px 10px !important; border-radius: 0 8px 8px 0 !important; padding: 5px 0 !important; box-shadow: none; }
    .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu, .dropdown:active .dropdown-menu { display: block; }
    .dropdown-menu a { color: rgba(255, 255, 255, 0.7) !important; font-size: 0.95rem !important; border-bottom: none !important; padding: 10px 15px !important; }

    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .whatsapp-float { left: auto !important; right: 20px !important; bottom: 20px !important; }
    #backToTop { right: 20px !important; bottom: 85px !important; width: 40px !important; height: 40px !important; }

    .mobile-socials { display: flex !important; flex-direction: row !important; justify-content: flex-start; gap: 25px; padding: 25px 10px 100px 10px !important; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.1) !important; }
    .mobile-socials a { color: #ffffff !important; border-bottom: none !important; padding: 0 !important; font-size: 1.6rem !important; display: inline-block !important; }
    .mobile-socials a:hover { color: var(--secondary) !important; }

    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-item { min-height: 250px; }
    .bento-item:nth-child(1), .bento-item:nth-child(2), .bento-item:nth-child(3), .bento-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }

    .carousel-slide { min-width: 100% !important; max-width: 100% !important; }
    .testimonial-carousel-wrapper { padding: 0 40px; }
    .carousel-btn { width: 40px; height: 40px; font-size: 1rem; }
    .prev-btn { left: 5px; }
    .next-btn { right: 5px; }
}

/* =========================================
   SERVICES SLIDE-OUT DRAWER UI
   ========================================= */
.drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(10, 61, 98, 0.7); z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.4s ease; backdrop-filter: blur(4px); }
.drawer-overlay.active { opacity: 1; visibility: visible; }
.service-drawer { position: fixed; top: 0; right: -100%; width: 450px; max-width: 100%; height: 100vh; background: var(--white); box-shadow: -10px 0 30px rgba(0,0,0,0.15); z-index: 2000; transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); overflow-y: auto; padding: 40px 30px; display: flex; flex-direction: column; }
.service-drawer.open { right: 0; }
.close-drawer-btn { position: absolute; top: 20px; right: 25px; background: none; border: none; font-size: 2.5rem; color: var(--text-light); cursor: pointer; transition: color 0.3s; }
.close-drawer-btn:hover { color: var(--secondary); }
.drawer-header-img { width: 100%; height: 200px; border-radius: 12px; object-fit: cover; margin-bottom: 25px; margin-top: 20px; }
.drawer-content h2 { font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
.drawer-content p { font-size: 1.05rem; color: var(--text-dark); margin-bottom: 20px; line-height: 1.7; }
.drawer-content ul { list-style: none; margin-bottom: 30px; }
.drawer-content ul li { margin-bottom: 15px; font-weight: 500; display: flex; align-items: flex-start; gap: 10px; }
.drawer-content ul li::before { content: '✅'; font-size: 1.1rem; }

@media (max-width: 500px) {
    .service-drawer { width: 100%; padding: 30px 20px; }
}

/* =========================================
   PREMIUM TESTIMONIAL CAROUSEL STYLES
   ========================================= */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 1050px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0; /* Creates space so the box-shadows don't get cut off */
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Desktop: Show 3 slides at a time */
.carousel-slide {
    min-width: calc(33.333% - 20px); 
    flex-shrink: 0;
}

.review-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 4px solid var(--secondary);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #f39c12; /* Google Review Gold */
    font-size: 1.3rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.client-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.client-location {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.carousel-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(10, 61, 98, 0.2);
}

.carousel-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
}

/* Mobile Responsiveness: Show 1 slide at a time */
@media (max-width: 900px) {
    .carousel-slide {
        min-width: 100%; /* Take up full width on phones */
    }
    .testimonial-carousel-wrapper {
        gap: 0;
    }
    .carousel-btn {
        position: absolute;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .carousel-btn:hover {
        transform: translateY(-50%) scale(1.1);
    }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
    .carousel-track-container { padding: 20px 10px; }
}