/* --- Variables: Harvard Luxury Palette --- */
:root {
    --primary: #F28C28; /* Amber/Orange */
    --secondary: #1a1a1a; /* Rich Black */
    --bg-light: #fdfdfd; 
    --bg-card: #eef2f5;
    --white: #ffffff;
    --text-muted: #777777;
    --glass: rgba(255, 255, 255, 0.1);
    --transition: 0.3s ease-in-out;
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif; scroll-behavior: smooth; 
}

/* Universal Fix for Horizontal Scroll */
html, body { 
    background-color: var(--bg-light); 
    color: var(--secondary); 
    overflow-x: hidden !important;
    width: 100%;
    position: relative;
    max-width: 100vw;
}

/* --- 1. Floating Card Navbar --- */
.navbar-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: var(--white);
    padding: 12px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 10000;
}

.nav-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    flex-wrap: wrap;
    overflow: hidden;
}

.logo { display: flex; align-items: center; text-decoration: none; gap: 12px; }
.logo img { height: 40px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.brand-name { font-size: 1.1rem; font-weight: 800; color: var(--secondary); line-height: 1; letter-spacing: 1px; }
.brand-sub { font-size: 0.6rem; color: var(--primary); font-weight: 700; letter-spacing: 2px; }

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 10001;
}

.nav-menu { display: flex; list-style: none; gap: 25px; align-items: center; }
.nav-menu a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }

.btn-get-started {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
}
.btn-get-started:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(242, 140, 40, 0.3); }

/* --- 2. Hero & Header Sections --- */
.hero {
    height: 100vh; display: flex; align-items: center;
    justify-content: center; position: relative; overflow: hidden;
}

/* Hero Slider (Index Page) */
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide.active { opacity: 1; }
.hero-slider::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(75deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%); z-index: 2; }

.hero-wrapper { position: relative; z-index: 10; width: 90%; max-width: 1100px; color: #ffffff; }
.hero h1 { font-size: clamp(2.2rem, 8vw, 5.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.outline-text { -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5); color: transparent; }
.highlight { color: var(--primary); }

.services-hero {
    min-height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center;
    color: var(--white); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;
    padding: 100px 20px;
}

.hero-glass-box {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 40px 30px; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 850px; box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

/* --- 3. Stats Bar --- */
.stats-bar { display: flex; justify-content: space-around; align-items: center; background: #ffffff; padding: 40px 20px; width: 90%; max-width: 1200px; margin: -80px auto 60px; position: relative; z-index: 100; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border-bottom: 6px solid var(--primary); text-align: center; gap: 20px; }
.stat-item h3 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 5px; font-weight: 800; }
.stat-item p { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: #777; font-weight: 600; }

/* --- 4. Choose Section --- */
.choose-section { padding: 80px 0; background: #fff; }
.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 90%; max-width: 1200px; margin: 0 auto; }
.choose-image-wrapper { position: relative; }
.image-accent-box { position: absolute; bottom: -15px; right: -15px; width: 90%; height: 90%; background: var(--primary); z-index: 1; border-radius: 15px; }
.main-worker-img { position: relative; z-index: 2; width: 100%; border-radius: 15px; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.choose-content h2 { font-size: 2.8rem; color: var(--secondary); font-family: 'Playfair Display', serif; margin-bottom: 20px; }
.choose-list { list-style: none; margin: 25px 0; padding: 0; }
.choose-list li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; color: #444; font-weight: 600; font-size: 0.95rem; }
.choose-list i { color: var(--primary); }

/* --- 5. How It Works --- */
.how-works { padding: 100px 0; background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600'); background-attachment: fixed; background-size: cover; color: white; text-align: center; }
.how-works h2 { font-size: 2.5rem; font-family: 'Playfair Display', serif; margin-bottom: 50px; text-transform: uppercase;}
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; width: 90%; max-width: 1200px; margin: 0 auto; }
.step-card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 40px 25px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.step-number { width: 50px; height: 50px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; margin: 0 auto 20px; }

/* --- 6. Team Section --- */
.team-section { padding: 80px 0; background: #fff; text-align: center; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; width: 90%; max-width: 1200px; margin: 0 auto; }
.team-card { background: #f9f9f9; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.team-card img { width: 100%; height: 320px; object-fit: cover; }
.team-info { padding: 20px; }

/* --- 7. Estimate Form --- */
.estimate-section { padding: 80px 0; background: linear-gradient(rgba(10, 30, 50, 0.9), rgba(10, 30, 50, 0.9)), url('https://images.unsplash.com/photo-1494412519320-aa613dfb7738?q=80&w=1600'); background-size: cover; color: white; }
.estimate-container { width: 90%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: center; }
.estimate-text h2 { font-size: 3rem; font-family: 'Playfair Display', serif; margin-bottom: 15px; }
.phone-badge { display: inline-block; margin-top: 15px; padding: 12px 25px; background: var(--primary); color: white; text-decoration: none; border-radius: 50px; font-weight: 700; }
.est-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.est-input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2); padding: 14px; border-radius: 8px; color: white; outline: none; width: 100%; font-size: 0.9rem; }
.est-full { grid-column: span 2; }
.est-btn { grid-column: span 2; background: var(--primary); color: white; padding: 16px; font-weight: 800; text-transform: uppercase; cursor: pointer; transition: 0.3s; border: none; border-radius: 8px; }

/* --- 8. Content Wrappers --- */
.main-content-wrapper { width: 90%; max-width: 1200px; margin: 0 auto; padding: 60px 0; }

.page-header-card {
    height: 350px; border-radius: 30px; display: flex; align-items: center;
    justify-content: center; text-align: center; color: var(--white);
    margin-bottom: -100px; position: relative; z-index: 5;
    padding: 20px;
}

.about-card-inner {
    background: var(--white); border-radius: 30px;
    padding: 120px 40px 60px; box-shadow: 0 15px 60px rgba(0,0,0,0.05);
}

/* --- 9. About Page Styles --- */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=1600') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
    border-bottom-left-radius: 60px; border-bottom-right-radius: 60px;
}
.about-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 10px; padding: 0 20px; }
.breadcrumb { font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; color: var(--primary); font-weight: 700; }

.story-section { padding: 100px 0; }
.story-grid { width: 90%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-image { position: relative; }
.story-image img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.experience-badge {
    position: absolute; bottom: -30px; right: -30px; background: var(--primary); color: white;
    padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 15px 30px rgba(242, 140, 40, 0.3);
    z-index: 5;
}
.experience-badge h2 { font-size: 2.5rem; line-height: 1; margin-bottom: 5px; }

.story-content h2 { font-size: 2.8rem; font-family: 'Playfair Display', serif; color: var(--secondary); margin-bottom: 25px; }
.story-content p { color: #555; line-height: 1.8; margin-bottom: 20px; font-size: 1.05rem; }

/* Core Values */
.values-section { background: #f4f7f9; padding: 100px 0; text-align: center; }
.values-grid { width: 90%; max-width: 1200px; margin: 50px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.value-card { background: white; padding: 40px; border-radius: 20px; transition: 0.3s; border-bottom: 4px solid transparent; }
.value-card:hover { transform: translateY(-10px); border-bottom: 4px solid var(--primary); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.value-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.value-card h3 { margin-bottom: 15px; color: var(--secondary); }

/* --- 10. Services Page Styles --- */
.services-page-hero {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=1600') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
    border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; margin-bottom: -50px; z-index: 1;
}
.hero-badge { background: var(--primary); padding: 8px 25px; border-radius: 50px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; display: inline-block; margin-bottom: 20px; }
.services-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4.5rem); margin-bottom: 20px; }

.services-container { width: 90%; max-width: 1200px; margin: 0 auto; padding-bottom: 100px; position: relative; z-index: 10; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--white); padding: 50px 40px; border-radius: 25px; box-shadow: 0 15px 45px rgba(0,0,0,0.06); transition: 0.4s; border: 1px solid #f0f0f0; display: flex; flex-direction: column; justify-content: space-between; }
.service-card:hover { transform: translateY(-12px); border-color: var(--primary); }
.icon-box { width: 75px; height: 75px; background: rgba(242, 140, 40, 0.12); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; border-radius: 18px; margin-bottom: 25px; transition: 0.3s; }
.service-card:hover .icon-box { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.6rem; margin-bottom: 15px; font-weight: 700; color: var(--secondary); }
.service-card p { color: #6c757d; line-height: 1.8; margin-bottom: 25px; }
.btn-text { color: var(--primary); text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; display: flex; align-items: center; gap: 10px; }

/* Testimonials */
.testi-premium-section { padding: 120px 0; background: #fafafa; position: relative; }
.testi-header { text-align: center; margin-bottom: 60px; padding: 0 20px; }
.testi-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-family: 'Playfair Display', serif; color: var(--secondary); }
.swiper-testi { width: 100%; padding: 0 5% 70px; }
.premium-testi-card { background: #fff; border-radius: 30px; display: flex; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.06); border: 1px solid #eee; min-height: 300px; }
.p-client-side { width: 35%; padding: 50px; background: #fdfdfd; border-right: 1px solid #eee; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.p-client-img { width: 100px; height: 100px; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); margin-bottom: 15px; object-fit: cover; }
.p-content-side { width: 65%; padding: 50px 60px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.quote-icon { font-size: 3.5rem; color: #f2f2f2; position: absolute; top: 30px; left: 30px; }
.p-testi-text { font-size: 1.2rem; font-style: italic; line-height: 1.8; position: relative; z-index: 1; color: #444; }

/* --- 11. Contact Page Styles --- */
.contact-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), 
                url('https://images.unsplash.com/photo-1580674285054-bed31e145f59?q=80&w=1600') center/cover no-repeat;
    display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white);
    border-bottom-left-radius: 40px; border-bottom-right-radius: 40px;
    padding: 0 20px;
}
.contact-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 6vw, 4rem); margin-top: 10px; }

.contact-section { padding: 60px 0; }
.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: -100px auto 60px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.contact-info-card {
    background: var(--secondary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-item i { font-size: 1.3rem; color: var(--primary); margin-top: 5px; }
.info-item h4 { margin: 0 0 5px 0; font-size: 1.1rem; }
.info-item p { color: #ccc; font-size: 0.95rem; margin: 0; line-height: 1.5; }

/* Form Styling */
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--secondary); }
.form-control {
    width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; font-family: inherit; box-sizing: border-box; outline: none; transition: 0.3s;
}
.form-control:focus { border-color: var(--primary); }
.btn-submit {
    background: var(--primary); color: white; padding: 15px 40px; border: none; border-radius: 10px;
    font-weight: 700; cursor: pointer; width: 100%; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.btn-submit:hover { background: #e07b1d; transform: translateY(-2px); }

.map-section {
    width: 90%; max-width: 1200px; margin: 0 auto 80px; border-radius: 25px; overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05); height: 400px;
}

/* --- 12. Footer --- */
.footer { background: #0a1e32; color: #fff; padding: 80px 0 20px; }
.footer-grid { width: 90%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h3 { font-size: 1.2rem; margin-bottom: 25px; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ccc; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 15px; color: #ccc; font-size: 0.9rem; margin-bottom: 15px; }
.footer-contact i { color: var(--primary); margin-top: 4px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; transition: 0.3s; text-decoration: none; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-bottom { width: 90%; max-width: 1200px; margin: 50px auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.8rem; color: #777; }

/* --- 13. Global Utilities --- */
.whatsapp-btn {
    position: fixed; bottom: 25px; right: 25px; background: #25d366; 
    width: 60px; height: 60px; border-radius: 50%; display: flex; 
    align-items: center; justify-content: center; color: var(--white); font-size: 28px; z-index: 10002;
    text-decoration: none; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: 0.3s; box-sizing: border-box;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* --- RESPONSIVE BREAKPOINTS --- */

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
    .page-header-card { height: 300px; }
    .story-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .premium-testi-card { flex-direction: column; }
    .p-client-side { width: 100%; border-right: none; border-bottom: 1px solid #eee; padding: 30px; }
    .p-content-side { width: 100%; padding: 40px 30px; text-align: center; }
    .quote-icon { left: 50%; transform: translateX(-50%); top: 10px; opacity: 0.5; }
    .contact-container { grid-template-columns: 1fr; margin-top: -80px; width: 95%; }
}

@media (max-width: 992px) {
    /* Navbar Mobile Reset */
    .navbar-floating { 
        top: 10px; 
        left: 10px;
        right: 10px;
        transform: none;
        width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        padding: 10px 15px; 
        overflow: visible;
    }
    
    .nav-wrapper {
        width: 100%;
        overflow: visible;
    }
    
    .menu-toggle { 
        display: block !important; 
        order: 3;
    }
    
    .logo {
        order: 1;
    }
    
    .btn-get-started {
        order: 2;
        display: none !important;
    }
    
    .nav-menu {
        position: absolute; 
        top: calc(100% + 10px);
        left: 0; 
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column; 
        padding: 20px; 
        gap: 15px; 
        border-radius: 15px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        display: none;
        border: 1px solid #eee;
        z-index: 999;
        box-sizing: border-box;
    }
    
    .nav-menu.active { 
        display: flex; 
    }

    .nav-menu li { width: 100%; text-align: center; }
    
    .nav-menu a {
        padding: 10px 0;
        display: block;
    }

    /* Grid Adjustments */
    .stats-bar { grid-template-columns: 1fr; flex-direction: column; margin-top: -50px; }
    .choose-grid, .estimate-container, .steps-grid, .team-grid { grid-template-columns: 1fr; text-align: center; }
    .choose-list li { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-contact li, .social-links { justify-content: center; }
    .experience-badge { position: relative; bottom: 0; right: 0; margin: 20px auto 0; width: fit-content; }
    
    /* Form & Grid Adjustments */
    .info-card-row { grid-template-columns: 1fr; }
    .hero-glass-box h1 { font-size: 1.6rem; }
    .hero-glass-box p { font-size: 0.9rem; }
    .form-panel { padding: 25px; }
    
    .about-card-inner { padding: 80px 20px 40px; }
    
    .services-hero { border-radius: 0 0 25px 25px; min-height: 50vh; }
    .page-header-card { height: 250px; border-radius: 20px; }
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 15px; right: 15px; width: 50px; height: 50px; font-size: 24px;
    }
    
    .navbar-floating { 
        top: 8px;
        left: 8px;
        right: 8px;
        transform: none;
        width: calc(100vw - 16px);
        max-width: calc(100vw - 16px);
        padding: 8px 12px;
    }
    .navbar-floating .btn-get-started { 
        display: none !important; 
    }
    .nav-menu {
        width: calc(100vw - 16px) !important;
        max-height: 70vh;
        overflow-y: auto;
    }
    
    /* About Page */
    .about-hero { border-radius: 0; height: 40vh; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-contact li, .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    
    /* Services Page */
    .services-page-hero { height: 60vh; border-radius: 0; }
    .hero-glass-box { padding: 30px 20px; }
    .services-grid { grid-template-columns: 1fr; }
    
    /* Contact Page */
    .contact-hero { height: 40vh; min-height: 300px; border-radius: 0 0 30px 30px; }
    .contact-info-card, .contact-form-card { padding: 30px 20px; }
    .map-section { height: 300px; width: 95%; border-radius: 15px; }
}

@media (max-width: 600px) {
    .navbar-floating { 
        top: 6px;
        left: 6px;
        right: 6px;
        transform: none;
        width: calc(100vw - 12px);
        max-width: calc(100vw - 12px);
        padding: 6px 10px;
    }
    .nav-wrapper {
        gap: 8px;
    }
    .brand-name { font-size: 0.9rem; }
    .brand-sub { font-size: 0.5rem; }
    .nav-menu li { font-size: 0.85rem; }
    .nav-menu {
        width: calc(100vw - 12px) !important;
    }
    
    .hero h1 { font-size: 2.2rem; }
    .est-form-grid { grid-template-columns: 1fr; }
    .est-full { grid-column: span 1; }
}

