/* ============================================ */
/* ENEECUBE PROJECTS - FULLY FIXED MOBILE CSS */
/* ============================================ */

:root {
    --bg-deep-solid: #070b19;
    --bg-surface-elevated: #0f162e;
    --bg-surface-card: #161f3f;
    --accent-primary: #00b4d8;
    --accent-primary-glow: rgba(0, 180, 216, 0.25);
    --accent-secondary: #90e0ef;
    --text-pure: #ffffff;
    --text-body-muted: #a5b1c9;
    --text-low-contrast: #627293;
    --border-subtle: rgba(144, 224, 239, 0.15);
    --border-focus: rgba(0, 180, 216, 0.6);
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-mono: 'Space Grotesk', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep-solid);
    color: var(--text-body-muted);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    color: var(--text-pure);
    font-family: var(--font-mono);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3rem; letter-spacing: -0.03em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 1.25rem; font-weight: 400; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-pure) 30%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white { color: var(--text-pure); }
.neutral-muted { color: var(--text-body-muted); font-size: 1.1rem; }
.hidden { display: none !important; }

/* Layout */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.items-center { align-items: center; }

.section-subtitle {
    display: inline-block;
    font-family: var(--font-mono);
    text-transform: uppercase;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    min-height: 48px; /* Better touch target */
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--bg-deep-solid);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    box-shadow: 0 0 25px var(--accent-primary-glow);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-pure);
    border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

.btn-large { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; }
.btn-text {
    background: none;
    border: none;
    color: var(--text-body-muted);
    font-family: var(--font-mono);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-text:hover { color: var(--text-pure); }

/* Utility Bar */
.utility-bar {
    background-color: #040710;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8rem;
    font-family: var(--font-mono);
}

.utility-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.utility-info span { margin-right: 2rem; }
.utility-info i { color: var(--accent-primary); margin-right: 0.35rem; }
.utility-socials a { margin-left: 1.25rem; color: var(--text-low-contrast); }
.utility-socials a:hover { color: var(--accent-primary); }

/* Navigation - Desktop First */
.main-header {
    background-color: rgba(7, 11, 25, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--text-pure);
}

.brand-logo span {
    color: var(--accent-primary);
    font-weight: 400;
    margin-left: 0.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-body-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link:hover,
.nav-link.active { color: var(--text-pure); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.burger-menu .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-pure);
    transition: all 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 0;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 11, 25, 0.85) 0%, rgba(7, 11, 25, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.hero-section h1 { margin-bottom: 1.5rem; }
.hero-section p { font-size: 1.25rem; max-width: 720px; margin: 0 auto 2rem auto; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-low-contrast);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
    z-index: 2;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 2px;
    animation: scrollAnimation 1.8s infinite;
}

@keyframes scrollAnimation {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* About Section */
.about-section { background-color: var(--bg-surface-elevated); }
.animated-border-box {
    position: relative;
    background-color: var(--bg-surface-card);
    border-radius: 12px;
    padding: 2rem;
    overflow: hidden;
}
.animated-border-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 20%, var(--accent-primary) 50%, transparent 80%);
    animation: rotateBorder 6s linear infinite;
    z-index: -2;
}
.animated-border-box::after {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: var(--bg-surface-card);
    border-radius: 10px;
    z-index: -1;
}
@keyframes rotateBorder { 100% { transform: rotate(360deg); } }

.about-visual-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.structural-icon { font-size: 2.5rem; color: var(--accent-primary); margin-bottom: 1rem; }
.metric-card {
    margin-top: 2rem;
    background-color: rgba(7, 11, 25, 0.9);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}
.metric-num { font-size: 2rem; font-weight: 700; color: var(--accent-primary); }
.lead-text { font-size: 1.1rem; color: var(--text-pure); margin-bottom: 1rem; }

/* Accordion */
.accordion-container { margin-top: 2rem; }
.accordion-item { border-bottom: 1px solid var(--border-subtle); padding: 1rem 0; }
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-pure);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
}
.accordion-header i:first-child { color: var(--accent-primary); margin-right: 0.5rem; }
.accordion-header .chevron { transition: var(--transition-smooth); }
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.accordion-content p { padding: 0.5rem 0 0 1.5rem; font-size: 0.9rem; margin: 0; }
.accordion-item.active .chevron { transform: rotate(180deg); }
.accordion-item.active .accordion-content { max-height: 200px; }

/* Services Section */
.services-section { background-color: var(--bg-deep-solid); }
.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.service-card-premium {
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.service-card-premium:hover { transform: translateY(-5px); border-color: var(--accent-primary); }
.service-image-wrapper { width: 100%; height: 180px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card-premium:hover .service-img { transform: scale(1.05); }
.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 180, 216, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-primary);
    margin: -25px 0 0 1.5rem;
}
.service-card-premium h3 { margin: 1rem 1.5rem 0.5rem 1.5rem; font-size: 1.2rem; }
.service-card-premium p { font-size: 0.85rem; line-height: 1.5; margin: 0 1.5rem 1rem 1.5rem; }
.service-action-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-pure);
    margin: 0 1.5rem 1.5rem 1.5rem;
    opacity: 0.6;
}
.service-card-premium:hover .service-action-trigger { opacity: 1; color: var(--accent-primary); }
.global-cta-banner {
    background: linear-gradient(90deg, var(--bg-surface-elevated), var(--bg-surface-card));
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.global-cta-banner h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.global-cta-banner p { margin: 0; font-size: 0.9rem; }

/* Work Section */
.work-section { background-color: var(--bg-surface-elevated); }
.capabilities-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background-color: var(--border-subtle);
    margin-top: 3rem;
    border-radius: 8px;
    overflow: hidden;
}
.capability-node { background-color: var(--bg-surface-elevated); padding: 2rem; }
.node-index {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--accent-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Quote Section */
.quote-highlight-section { background: linear-gradient(135deg, #0a0f1f, #050814); }
.quote-glass-card {
    background: rgba(22, 31, 63, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
    animation: borderPulse 3s ease-in-out infinite alternate;
}
@keyframes borderPulse {
    0% { border-color: rgba(0, 180, 216, 0.2); box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.1); }
    100% { border-color: rgba(0, 180, 216, 0.6); box-shadow: 0 0 30px 5px rgba(0, 180, 216, 0.15); }
}
.quote-content { flex: 2; }
.quote-content h2 { font-size: 1.8rem; margin-bottom: 1rem; }
.quote-features { display: flex; gap: 1.5rem; margin: 1.5rem 0; flex-wrap: wrap; }
.quote-features div { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.quote-features i { color: var(--accent-primary); }
.quote-stats { flex: 1; display: flex; gap: 2rem; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 700; color: var(--accent-primary); }
.stat-label { font-size: 0.75rem; text-transform: uppercase; }

/* Contact Section */
.contact-section { background-color: var(--bg-deep-solid); }
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.contact-detail-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-detail-card i {
    font-size: 1.2rem;
    color: var(--accent-primary);
    background-color: rgba(0, 180, 216, 0.05);
    padding: 0.8rem;
    border-radius: 8px;
    min-width: 44px;
    text-align: center;
}
.contact-form-wrapper {
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    border-radius: 12px;
}
.premium-form .form-group { margin-bottom: 1rem; }
.premium-form label { display: block; font-size: 0.85rem; margin-bottom: 0.25rem; }
.premium-form input,
.premium-form textarea {
    width: 100%;
    background-color: var(--bg-deep-solid);
    border: 1px solid var(--border-subtle);
    padding: 0.8rem;
    border-radius: 6px;
    color: var(--text-pure);
    font-family: inherit;
    font-size: 16px; /* Prevents iOS zoom */
    min-height: 44px; /* Better touch target */
}
.loader-element {
    width: 20px;
    height: 20px;
    border: 2px solid var(--bg-deep-solid);
    border-top-color: var(--text-pure);
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.form-feedback { margin-top: 1rem; padding: 0.8rem; border-radius: 6px; font-size: 0.85rem; }
.form-feedback.success { background-color: rgba(46, 204, 113, 0.1); color: #2ecc71; }

/* Footer */
.global-footer {
    background-color: #040710;
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 2rem 2rem;
}
.footer-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-pure);
    display: block;
    margin-bottom: 1rem;
}
.footer-brand-column p { font-size: 0.85rem; line-height: 1.5; }
.operational-notice { color: var(--accent-primary); margin-top: 1rem; }
.footer-links-column h3 { font-size: 0.9rem; margin-bottom: 1rem; }
.footer-links-column ul { list-style: none; }
.footer-links-column li { margin-bottom: 0.5rem; }
.footer-links-column a { color: var(--text-body-muted); font-size: 0.85rem; padding: 4px 0; display: inline-block; }
.footer-links-column a:hover { color: var(--accent-primary); }
.footer-sub-bar { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 2rem; text-align: center; font-size: 0.8rem; }

/* ============================================ */
/* COMPLETE MOBILE FIXES - ALL BREAKPOINTS */
/* ============================================ */

@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .capabilities-row { grid-template-columns: 1fr; }
    .quote-glass-card { flex-direction: column; text-align: center; }
    .quote-features { justify-content: center; }
}

@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    p { font-size: 0.95rem; }
    
    /* Layout */
    .grid-2col { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid-6 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 2rem; }
    .footer-grid-container { grid-template-columns: 1fr; gap: 2rem; }
    .section-container { padding: 3rem 1rem; }
    
    /* Burger menu - show on mobile */
    .burger-menu {
        display: flex;
        z-index: 1001;
        position: relative;
    }
    
    /* Mobile menu - fixed position with proper styling */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-surface-elevated);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        width: 100%;
        padding: 0.75rem 0;
        color: var(--text-body-muted);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--text-pure);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .burger-menu.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger-menu.active .bar:nth-child(2) { opacity: 0; }
    .burger-menu.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    /* Utility Bar */
    .utility-container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .utility-info span {
        display: inline-block;
        margin: 0 0.5rem;
        font-size: 0.7rem;
    }
    
    .utility-info span:last-child { display: inline-block; }
    
    /* Hero Section */
    .hero-section {
        min-height: 70vh;
        padding: 3rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* About Section */
    .about-visual-panel {
        order: -1;
    }
    
    .metric-card {
        margin-top: 1rem;
    }
    
    /* Services Section */
    .service-image-wrapper {
        height: 160px;
    }
    
    .service-card-premium h3 {
        font-size: 1rem;
        margin: 0.75rem 1rem 0.25rem 1rem;
    }
    
    .service-card-premium p {
        font-size: 0.8rem;
        margin: 0 1rem 0.75rem 1rem;
    }
    
    .service-action-trigger {
        margin: 0 1rem 1rem 1rem;
        font-size: 0.8rem;
    }
    
    .service-icon-wrapper {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        margin: -22px 0 0 1rem;
    }
    
    /* CTA Banner */
    .global-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .global-cta-banner h4 {
        font-size: 1rem;
    }
    
    .global-cta-banner p {
        font-size: 0.85rem;
    }
    
    /* Quote Section */
    .quote-glass-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .quote-content h2 {
        font-size: 1.3rem;
    }
    
    .quote-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .quote-stats {
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Contact Section */
    .contact-detail-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-detail-card i {
        font-size: 1rem;
        padding: 0.6rem;
        min-width: 40px;
    }
    
    .contact-form-wrapper {
        padding: 1.25rem;
    }
    
    .premium-form input,
    .premium-form textarea {
        font-size: 16px;
        padding: 0.7rem;
        min-height: 44px;
    }
    
    /* Footer */
    .global-footer {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-brand-column p {
        font-size: 0.8rem;
    }
    
    .footer-links-column a {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .footer-links-column h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    
    .section-container {
        padding: 2rem 0.75rem;
    }
    
    .hero-section h1 {
        font-size: 1.4rem;
    }
    
    .hero-section p {
        font-size: 0.85rem;
    }
    
    .hero-actions .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
        min-height: 44px;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.25rem;
        min-height: 44px;
    }
    
    .service-image-wrapper {
        height: 140px;
    }
    
    .quote-glass-card {
        padding: 1rem;
    }
    
    .quote-content h2 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .contact-detail-card {
        gap: 0.35rem;
    }
    
    .contact-detail-card i {
        font-size: 0.9rem;
        padding: 0.5rem;
        min-width: 36px;
    }
    
    .utility-info span {
        font-size: 0.6rem;
        margin: 0 0.25rem;
    }
    
    .utility-socials a {
        margin-left: 0.75rem;
        font-size: 0.8rem;
    }
    
    .nav-menu {
        padding: 70px 1.25rem 1.25rem;
        width: 85%;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.6rem 0;
    }
    
    .brand-logo {
        font-size: 1.1rem;
    }
    
    .footer-grid-container {
        gap: 1.25rem;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-links-column a {
        font-size: 0.85rem;
    }
}