/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-blue);
    z-index: 10000;
    box-shadow: 0 0 10px rgba(0, 45, 98, 0.5);
    transition: width 0.1s ease;
}

/* Floating Social Media Widget */
.floating-social-widget {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    animation: slideInRight 0.6s ease-out;
}

.floating-social-widget .social-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #002d62 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 45, 98, 0.3);
}

.floating-social-widget .social-icon:hover {
    transform: scale(1.15) translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 45, 98, 0.5);
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.floating-social-widget .social-icon i {
    transition: transform 0.3s ease;
}

.floating-social-widget .social-icon:hover i {
    transform: rotate(360deg);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Responsive adjustments for floating widget */
@media (max-width: 768px) {
    .floating-social-widget {
        right: 10px;
    }
    
    .floating-social-widget .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Floating Language Widget - Mobile Only */
.floating-language-widget {
    position: fixed;
    top: 80px;
    right: 15px;
    display: none; /* Hidden on desktop */
    z-index: 9998;
    animation: slideInRight 0.6s ease-out;
}

.floating-lang-toggle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #002d62 0%, #0056b3 100%);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 45, 98, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    backdrop-filter: blur(10px);
}

.floating-lang-toggle i {
    font-size: 24px;
    margin-bottom: 4px;
    transition: transform 0.5s ease;
}

.floating-lang-toggle .lang-text {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.floating-lang-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-lang-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.4s ease, height 0.4s ease;
}

.floating-lang-toggle:hover {
    transform: scale(1.1);
    box-shadow: 
        0 8px 30px rgba(0, 45, 98, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.floating-lang-toggle:hover::before {
    opacity: 1;
}

.floating-lang-toggle:hover i {
    transform: rotate(180deg) scale(1.1);
}

.floating-lang-toggle:active::after {
    width: 100%;
    height: 100%;
}

/* Pulse animation for attention */
@keyframes floatingPulse {
    0%, 100% {
        box-shadow: 
            0 6px 20px rgba(0, 45, 98, 0.4),
            0 2px 8px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(0, 86, 179, 0.6),
            0 2px 10px rgba(0, 86, 179, 0.3);
    }
}

.floating-lang-toggle {
    animation: slideInRight 0.6s ease-out, floatingPulse 3s ease-in-out infinite 2s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Show floating language widget on mobile only */
@media (max-width: 900px) {
    .floating-language-widget {
        display: block;
    }
}

@media (max-width: 600px) {
    .floating-language-widget {
        top: 75px;
        right: 12px;
    }
    
    .floating-lang-toggle {
        width: 60px;
        height: 60px;
    }
    
    .floating-lang-toggle i {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .floating-lang-toggle .lang-text {
        font-size: 10px;
    }
}

/* Premium Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-logo {
    font-size: 4rem;
    font-weight: 900;
    color: var(--brand-silver);
    font-family: var(--font-heading);
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.loader-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

@keyframes loaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

:root {
    /* Brand Colors - Enhanced Professional Palette */
    --brand-blue: #002D62;
    --brand-blue-light: #003d82;
    --brand-dark: #001835;
    --brand-silver: #C0C0C0;
    --brand-gold: #d4af37;
    
    /* UI Palette - Refined */
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-gray: #f4f6f8;
    --text-main: #1a1a1a;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border-light: #e5e7eb;
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #002D62 0%, #003d82 100%);
    --gradient-dark: linear-gradient(135deg, #001835 0%, hsl(238, 42%, 14%) 100%);
    --gradient-overlay: linear-gradient(to right, rgba(0, 24, 53, 0.95) 0%, rgba(15, 48, 86, 0.416) 50%, rgba(0, 45, 98, 0.3) 100%);
    
    /* Typography - Enhanced */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Shadows - Professional Depth */
    --shadow-xs: 0 2px 4px rgba(0, 45, 98, 0.04);
    --shadow-sm: 0 4px 12px rgba(0, 45, 98, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 45, 98, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 45, 98, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 45, 98, 0.24);
    --shadow-2xl: 0 32px 80px rgba(0, 45, 98, 0.32);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Spacing System */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    line-height: 1.7;
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better text wrapping on mobile */
h1, h2, h3, h4, h5, h6, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure proper touch targets on mobile */
a, button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Premium Section Dividers */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 45, 98, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-divider-light {
    background: var(--white);
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent 0%, var(--brand-blue) 50%, transparent 100%);
    max-width: 300px;
    opacity: 0.3;
}

.divider-icon {
    margin: 0 var(--space-md);
    color: var(--brand-blue);
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    animation: rotateIcon 3s ease-in-out infinite;
}

@keyframes rotateIcon {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
}

/* Hide old custom cursor */
.cursor-dot, .cursor-outline { display: none; }

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover State for Cursor */
body:hover .cursor-outline.expanded {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
    border-color: var(--white);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 45, 98, 0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.99);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar.scrolled .logo-img {
    height: 45px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-blue);
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .logo-text {
    font-size: 1.35rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--brand-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 0.875rem 2.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.nav-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.nav-btn-primary:hover::before {
    left: 100%;
}

.nav-btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Language Switcher Styles - Professional & Beautiful */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4px;
    border-radius: 30px;
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 45, 98, 0.08);
    position: relative;
    border: 1px solid rgba(0, 45, 98, 0.1);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    box-shadow: 
        inset 0 1px 3px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 45, 98, 0.15);
    transform: translateY(-1px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #6c757d;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    min-width: 55px;
    position: relative;
    z-index: 2;
    font-family: 'Manrope', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.lang-btn i {
    transition: transform 0.4s ease;
}

.lang-btn:hover:not(.active) {
    color: var(--brand-primary);
    transform: scale(1.05);
}

.lang-btn:hover:not(.active) i {
    transform: rotate(15deg) scale(1.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, #002d62 0%, #0056b3 100%);
    color: var(--white);
    box-shadow: 
        0 4px 15px rgba(0, 45, 98, 0.25),
        0 2px 8px rgba(0, 45, 98, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    font-weight: 700;
    animation: activateLang 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes activateLang {
    0% {
        transform: scale(0.95) translateY(-1px);
    }
    50% {
        transform: scale(1.05) translateY(-2px);
    }
    100% {
        transform: scale(1) translateY(-1px);
    }
}

.lang-btn.active i {
    animation: globeRotate 0.6s ease;
}

@keyframes globeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.lang-btn.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: 25px;
    opacity: 0;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: slideShine 3s infinite;
}

@keyframes slideShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.lang-divider {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 8px;
    margin: -8px;
    /* Increase touch target for mobile */
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--brand-dark);
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Navigation Menu */
@media (max-width: 900px) {
    .nav-right.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        gap: 1.5rem;
        animation: slideDown 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-right.active .nav-menu {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        display: flex !important;
    }
    
    /* Hide language switcher in navbar on mobile - we have floating widget instead */
    .nav-right.active .language-switcher {
        display: none !important;
    }
    
    .nav-right.active .nav-btn-primary {
        width: 100%;
        text-align: center;
        display: block !important;
    }
    
    /* Mobile Menu Backdrop */
    .nav-right.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brand-dark);
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    /* Removed heavy filters for cleaner look */
    opacity: 0.7; 
}

/* Gradient Overlay */
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    text-align: left; /* Aligned left for classic corporate look */
}

 .hero-content {
    max-width: 750px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--brand-silver);
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(192, 192, 192, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-title i {
    font-weight: 400;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--brand-silver);
}

.hero-desc {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.85;
    font-weight: 400;
}

.hero-desc strong {
    color: var(--brand-silver);
    font-weight: 800;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
}

.btn-solid {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 1.125rem 2.75rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-solid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}

.btn-solid:hover::before {
    left: 100%;
}

.btn-solid:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1.125rem 2.75rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
    background: transparent;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-outline:hover::before {
    width: 100%;
}

.btn-outline:hover {
    color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Hero Warranty Badge */
.hero-badge-warranty {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge-warranty i {
    font-size: 2.5rem;
    color: var(--brand-blue);
}

.hero-badge-warranty span {
    line-height: 1.4;
    font-size: 0.95rem;
}

.hero-badge-warranty strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-dark);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* ===== STATS WIDGET ===== */
.stats-widget {
    background: var(--gradient-blue);
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-xl);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: var(--white);
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-silver);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.25);
    display: none;
}

@media (min-width: 768px) {
    .stat-divider { display: block; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 7rem 0;
    background: var(--off-white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-image-col {
    flex: 1;
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--gradient-blue);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
}

.badge-year {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--brand-silver);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.badge-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-top: 0.5rem;
    display: block;
}

.about-text-col {
    flex: 1;
}

.about-text-col .btn-solid {
    margin-top: 2.5rem;
    display: inline-block;
}

.about-desc {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-desc strong {
    color: var(--brand-blue);
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 2.5rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xs);
    transition: var(--transition-smooth);
}

.about-list li:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.about-list li i {
    color: var(--brand-blue);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.about-list strong {
    color: var(--brand-blue);
}

/* ===== FEATURES WIDGET ===== */
.features-widget {
    background: var(--brand-dark);
    padding: 5rem 0;
    color: var(--white);
}

/* Warranty Banner */
.warranty-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: var(--gradient-blue);
    padding: 3rem 3.5rem;
    border-radius: 20px;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(192, 192, 192, 0.2);
    position: relative;
    overflow: hidden;
}

.warranty-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.warranty-icon {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.warranty-icon i {
    font-size: 4.5rem;
    color: var(--brand-silver);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    animation: shield-pulse 2.5s ease-in-out infinite;
}

@keyframes shield-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.warranty-text {
    position: relative;
    z-index: 1;
}

.warranty-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.warranty-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-box {
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--brand-silver);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.feature-box:hover i {
    transform: scale(1.1) rotate(5deg);
}

.feature-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.feature-box p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Updated Service Card with Image */
.service-card-clean {
    padding: 0; /* Remove padding to flush image */
    overflow: hidden;
}

.sc-img-top {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.sc-img-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0;
    transition: var(--transition-smooth);
}

.service-card-clean:hover .sc-img-top::after {
    opacity: 0.3;
}

.sc-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-clean:hover .sc-img-top img {
    transform: scale(1.15);
}

.sc-content {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

/* ===== TESTIMONIALS WIDGET ===== */
.testimonials-widget {
    background: var(--off-white);
    padding: 6rem 0;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 2rem;
    color: var(--brand-blue);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--brand-dark);
    margin-bottom: 3rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-silver);
}

.author-info {
    text-align: left;
}

.author-info h5 {
    color: var(--brand-dark);
    font-weight: 700;
    margin: 0;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== INFINITE SCROLLING IMAGE CAROUSEL ===== */
.image-carousel-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 20s linear infinite;
    width: fit-content;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-slide {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-slide {
        width: 300px;
        height: 225px;
    }
    
    .carousel-track {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        width: 250px;
        height: 188px;
    }
    
    .carousel-track {
        gap: 1rem;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 9rem 0;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600') no-repeat center center/cover;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-dark);
    opacity: 0.92;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-features span:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.cta-features i {
    font-size: 1.3rem;
}

/* CLIENTS BAR */
.clients-bar {
    background: var(--brand-dark);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.client-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    color: rgba(255,255,255,0.3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .about-container { flex-direction: column; }
    .about-image-col { order: -1; width: 100%; }
    .testimonial-text { font-size: 1.4rem; }
    .stats-widget { padding: 4rem 1rem; }
}

/* Remove old hero styles */
.hero-headline, .text-hollow, .hero-meta { display: none; }

/* ===== SERVICES (Clean Cards) ===== */
.services {
    padding: 7rem 0;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }

.section-tag {
    color: var(--brand-blue);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 45, 98, 0.06);
    border-radius: 50px;
}

.section-heading {
    font-family: var(--font-heading);
    color: var(--brand-dark);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.section-line {
    width: 100px;
    height: 4px;
    background: var(--gradient-blue);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.services-intro {
    max-width: 750px;
    margin: 1.5rem auto 4rem;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.85;
}

.services-intro strong {
    color: var(--brand-blue);
    font-weight: 800;
}

.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.service-card-clean {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 45, 98, 0.06);
    text-align: left;
    position: relative;
}

.service-card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.service-card-clean:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-card-clean:hover::before {
    opacity: 0.03;
}

.sc-img-top {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.sc-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-clean:hover .sc-img-top img {
    transform: scale(1.1);
}

.sc-content {
    padding: 2rem 2.5rem 2.5rem;
}

.sc-icon {
    font-size: 3rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.service-card-clean:hover .sc-icon {
    transform: scale(1.15) rotate(-5deg);
    color: var(--brand-blue-light);
}

.service-card-clean h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.service-card-clean p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.sc-link {
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(0, 45, 98, 0.05);
}

.sc-link i {
    transition: var(--transition-smooth);
}

.sc-link:hover {
    gap: 12px;
    color: var(--white);
    background: var(--gradient-blue);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

/* ===== PROJECTS (Modern Grid) ===== */
.projects {
    padding: 7rem 0;
    background: var(--light-gray);
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 2.5rem;
}

.view-all-link {
    text-decoration: none;
    color: var(--brand-dark);
    font-weight: 700;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.view-all-link:hover {
    color: var(--white);
    background: var(--gradient-blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Grid Spanning */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.large-wide {
    grid-column: span 2; 
}

/* Hover Effects */
.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0, 24, 53, 0.95), rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.go-content {
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.gallery-item:hover .go-content {
    transform: translateY(0);
}

.go-content h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.go-content p {
    color: var(--brand-silver);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brand-dark);
    color: var(--white);
    padding: 7rem 0 2.5rem;
    text-align: center;
}

.footer-cta {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.footer-mail {
    color: var(--brand-silver);
    text-decoration: none;
    font-size: 1.35rem;
    transition: var(--transition-smooth);
    font-weight: 600;
    display: inline-block;
    position: relative;
}

.footer-mail::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-silver);
    transition: var(--transition-smooth);
}

.footer-mail:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-mail:hover::after {
    width: 100%;
}

/* Footer Contact Information */
.footer-contact-info {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
}

.footer-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--brand-silver);
}

.footer-contact-info .contact-item i {
    font-size: 1.3rem;
    color: var(--brand-gold);
    min-width: 25px;
    text-align: center;
}

.footer-contact-info .contact-item a {
    color: var(--brand-silver);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-info .contact-item a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-contact-info .contact-item span {
    color: var(--brand-silver);
}

.footer-bottom-row {
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem; 
    padding-right: 2rem;
    letter-spacing: 0.5px;
}

.socials a {
    color: var(--white);
    margin-left: 1.75rem;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.socials a:hover {
    color: var(--brand-silver);
    transform: translateY(-4px) scale(1.1);
}

.powered-by {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

.powered-by strong {
    color: rgba(255,255,255,0.7);
    font-weight: 700;
    letter-spacing: 1px;
}

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet & Mobile - 900px and below */
@media (max-width: 900px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .navbar.scrolled .logo-img {
        height: 38px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .navbar.scrolled .logo-text {
        font-size: 1.15rem;
    }
    
    .nav-right {
        position: relative;
    }
    
    .nav-right .nav-menu,
    .nav-right .nav-btn-primary,
    .nav-right .language-switcher {
        display: none;
    }
    
    .nav-right.active .nav-menu,
    .nav-right.active .nav-btn-primary,
    .nav-right.active .language-switcher {
        display: flex !important;
    }
    
    .hamburger { display: flex; }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-solid, .btn-outline {
        width: 100%;
        text-align: center;
    }
    
    .stats-widget {
        padding: 3rem 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image-col {
        order: -1;
        width: 100%;
    }
    
    .about-badge {
        bottom: 10px;
        right: 10px;
        padding: 1.5rem;
    }
    
    .services-grid-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .warranty-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .warranty-icon i {
        font-size: 3rem;
    }
    
    .warranty-text h3 {
        font-size: 1.5rem;
    }
    
    .warranty-text p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .gallery-item.large, .gallery-item.large-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-features {
        gap: 0.75rem;
        flex-direction: column;
        width: 100%;
    }
    
    .cta-features span {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-contact-info .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .socials {
        display: flex;
        justify-content: center;
    }
    
    .services-intro {
        font-size: 1rem;
    }
}

/* Small Mobile - 600px and below */
@media (max-width: 600px) {
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .navbar.scrolled .logo-img {
        height: 33px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar.scrolled {
        padding: 0.5rem 0;
    }
    
    .nav-right.active {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-box i {
        font-size: 2rem;
    }
    
    .warranty-text h3 {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .footer-cta {
        font-size: 1.8rem;
    }
}

/* Extra Small Mobile - 400px and below */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-solid, .btn-outline {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .warranty-banner {
        padding: 1.5rem 1rem;
    }
}
