/* ============================================
   EMERGENCY FAILSAFE - FORCE VISIBILITY
   ============================================ */

/* FORCE ALL CONTENT VISIBLE BY DEFAULT - Allow animations after load */
.hero-content,
.hero-badge,
.title-line,
.hero-subtitle,
.hero-stats,
.hero-features,
.hero-buttons,
.section-title,
.services-grid,
.service-card,
.portfolio-item,
.review-card,
.about-content,
.about-image-section,
.cta-content {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Allow transforms for animations but keep content visible */
.hero-content,
.hero-badge,
.title-line {
    transform: none !important;
}

/* LOADING SCREEN - Keep visible until hidden by JS */
.loading-screen {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
}

/* Loading screen elements - allow animations */
.loading-logo,
.loading-title {
    /* Allow opacity animations for loading screen */
}

/* Override for loading screen when hidden */
.loading-screen.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
    display: none !important;
}

/* Hero slides - first one visible, others can animate */
.hero-slide:first-child,
.hero-slide.active {
    opacity: 1 !important;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
    --primary-black: #0a0a0a;
    --matte-black: #1a1a1a;
    --charcoal: #2a2a2a;
    --construction-orange: #ff6b35;
    --pure-white: #ffffff;
    --text-gray: #e0e0e0;
    --dark-gray: #333333;
    --premium-gold: #ffd700;
    --premium-shadow: rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

body {
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Remove default link colors */
a {
    color: inherit;
    text-decoration: none;
}

a:link,
a:visited {
    color: inherit;
}

a:focus {
    outline: none;
}

body {
    overflow-y: auto;
    overflow-x: hidden;
}

body.loaded {
    overflow-y: auto;
    overflow-x: hidden;
}

/* Prevent horizontal overflow on all sections */
section {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* ============================================
   LOADING SCREEN
   ============================================ */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-out, visibility 0.3s;
}

.loading-screen.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: -1 !important;
    display: none !important;
    transition: opacity 0.3s ease-out, visibility 0.3s;
}

.loading-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 100%;
    box-sizing: border-box;
}

.loading-logo {
    margin-bottom: 2rem;
    opacity: 0;
    animation: logoFadeIn 1s ease-out 0.3s forwards;
    z-index: 1;
}

.logo-loading {
    max-width: 250px;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.3));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.5));
    }
}

.loading-panels {
    position: relative;
    width: 300px;
    height: 200px;
    margin-bottom: 20px;
    max-width: 100%;
}

.panel {
    position: absolute;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--matte-black) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.panel-1 {
    width: 120px;
    height: 80px;
    top: 0;
    left: 0;
    animation: float1 3s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.panel-2 {
    width: 100px;
    height: 70px;
    top: 40px;
    right: 0;
    animation: float2 3.5s ease-in-out infinite;
    transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
}

.panel-3 {
    width: 90px;
    height: 60px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: float3 4s ease-in-out infinite;
    transform: perspective(1000px) rotateY(0deg) rotateX(3deg);
}

@keyframes float1 {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(-8deg) rotateX(8deg) translateY(-15px); }
}

@keyframes float2 {
    0%, 100% { transform: perspective(1000px) rotateY(5deg) rotateX(-5deg) translateY(0); }
    50% { transform: perspective(1000px) rotateY(8deg) rotateX(-8deg) translateY(15px); }
}

@keyframes float3 {
    0%, 100% { transform: perspective(1000px) rotateY(0deg) rotateX(3deg) translateY(0) translateX(-50%); }
    50% { transform: perspective(1000px) rotateY(3deg) rotateX(6deg) translateY(-10px) translateX(-50%); }
}

.loading-accent {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--construction-orange), transparent);
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px var(--construction-orange);
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.1); }
}

.loading-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-align: center;
    padding: 0 1rem;
    word-wrap: break-word;
    max-width: 100%;
    line-height: 1.3;
}

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(255, 107, 53, 0.1) inset;
    border-bottom: 1px solid rgba(255, 107, 53, 0.15);
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.navbar > * {
    position: relative;
    z-index: 1;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 107, 53, 0.15) inset;
    border-bottom-color: rgba(255, 107, 53, 0.2);
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.99) 0%, rgba(26, 26, 26, 0.97) 50%, rgba(10, 10, 10, 0.99) 100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Mobile Social Icons Next to Logo */
.nav-social-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.social-link-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-mobile:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--construction-orange);
    border-color: var(--construction-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-icon-mobile {
    width: 18px;
    height: 18px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--construction-orange);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--pure-white);
    transform: translateY(-2px);
}

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

.nav-link.active {
    color: var(--pure-white);
}

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

/* Social Icons - Desktop */
.nav-social-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1rem;
}

/* Hide mobile social icons on desktop - they're inside nav-menu which is hidden */
.nav-menu .nav-social {
    display: none;
}

.social-link-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-desktop:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--construction-orange);
    border-color: var(--construction-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
}

.btn-estimate {
    background: linear-gradient(135deg, var(--construction-orange) 0%, #ff5722 100%);
    color: var(--pure-white);
    padding: 0.85rem 1.8rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-estimate::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;
}

.btn-estimate:hover::before {
    left: 100%;
}

.btn-estimate:hover {
    background: linear-gradient(135deg, #ff5722 0%, var(--construction-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

.desktop-estimate {
    display: inline-block;
}

.mobile-estimate {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--pure-white);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hamburger.active span {
    background-color: var(--construction-orange);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: none;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
    filter: brightness(1.1);
}

.hero-slide:first-child,
.hero-slide.active {
    opacity: 1 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.72) 0%, rgba(26, 26, 26, 0.65) 50%, rgba(10, 10, 10, 0.7) 100%);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--construction-orange);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--construction-orange);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 14s;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 2rem;
    max-width: 1200px;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

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

/* Hero Social Icons - Mobile Only */
.hero-social-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    animation: heroSocialFadeIn 0.8s ease-out 0.6s both;
}

.hero-social-text {
    font-size: 1.1rem;
    color: var(--pure-white);
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 700;
    opacity: 1;
    margin-bottom: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.hero-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.hero-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: var(--construction-orange);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid var(--construction-orange);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 
                0 0 0 0 rgba(255, 107, 53, 0.3),
                0 0 20px rgba(255, 107, 53, 0.4);
    cursor: pointer;
    animation: iconPulse 2.5s ease-in-out infinite;
    position: relative;
}

.hero-social-link::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--construction-orange);
    opacity: 0;
    animation: ringPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 
                    0 0 0 0 rgba(255, 107, 53, 0.3),
                    0 0 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 
                    0 0 0 4px rgba(255, 107, 53, 0.2),
                    0 0 30px rgba(255, 107, 53, 0.6);
    }
}

@keyframes ringPulse {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

.hero-social-link:hover {
    background: rgba(255, 107, 53, 0.25);
    color: var(--construction-orange);
    border-color: var(--construction-orange);
    transform: translateY(-5px) scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6), 
                0 0 0 4px rgba(255, 107, 53, 0.3),
                0 0 40px rgba(255, 107, 53, 0.5);
    animation: none;
}

.hero-social-link:hover::before {
    opacity: 0.8;
    transform: scale(1.2);
}

.hero-social-link:active {
    transform: translateY(-2px) scale(1.1);
}

.hero-social-icon {
    width: 36px;
    height: 36px;
}

@keyframes heroSocialFadeIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 2px solid rgba(255, 107, 53, 0.4);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3),
                0 0 0 1px rgba(255, 107, 53, 0.2) inset;
    animation: badgeSlideIn 0.8s ease-out 0.8s both;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.badge-icon {
    font-size: 1rem;
    font-weight: 700;
    color: var(--construction-orange);
    animation: rotate-badge 3s ease-in-out infinite;
    letter-spacing: 0.05em;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--construction-orange);
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rotate-badge {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
    transform: perspective(1000px) translateZ(0);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-line {
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) rotateX(0deg) !important;
    animation: titleSlideUp 1s ease-out both;
}

.title-line:nth-child(1) {
    animation-delay: 1s;
}

.title-line:nth-child(2) {
    animation-delay: 1.2s;
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--pure-white) 0%, var(--construction-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--construction-orange), transparent);
    animation: underlineExpand 1s ease-out 1.5s both;
}

@keyframes titleSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-title:hover {
    transform: perspective(1000px) translateZ(20px);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    letter-spacing: 0.03em;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: subtitleFadeIn 1s ease-out 1.4s both;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: statsFadeIn 1s ease-out 1.6s both;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--construction-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: featuresFadeIn 1s ease-out 1.8s both;
}

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

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.feature-icon {
    color: var(--construction-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    animation: buttonsFadeIn 1s ease-out 2s both;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--construction-orange) 0%, #ff5722 100%);
    color: var(--pure-white);
    padding: 1.3rem 3.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5),
                0 0 0 0 rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.12em;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5722 0%, var(--construction-orange) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.7),
                0 0 25px rgba(255, 107, 53, 0.4);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-phone {
    background-color: transparent;
    color: var(--pure-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--pure-white);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-phone:hover {
    background-color: var(--pure-white);
    color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.phone-icon {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: phonePulse 2s ease-in-out infinite;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 4px;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.btn-secondary {
    background-color: transparent;
    color: var(--pure-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.1em;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--pure-white);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollIndicatorFade 1s ease-out 2.5s both;
    z-index: 4;
}

@keyframes scrollIndicatorFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--construction-orange), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: floatCard 6s ease-in-out infinite;
}

.card-icon {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--construction-orange);
    padding: 0.4rem 0.8rem;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.card-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(2deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(-1deg);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-25px) translateX(5px) rotate(1deg);
        opacity: 1;
    }
}

/* Large laptop screens - reduce hero sizes */
@media (min-width: 1400px) and (max-width: 1920px) {
    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4.5rem) !important;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.2rem) !important;
        margin-bottom: 2rem;
        max-width: 700px;
    }
    
    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1.2rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 3vw, 2.8rem) !important;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-tag {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary,
    .btn-phone,
    .btn-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 968px) {
    .floating-card {
        display: none;
    }

    .hero {
        padding-top: 90px;
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 110px;
        padding: 1rem 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-features {
        gap: 0.8rem;
    }

    .feature-tag {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 4rem 0;
    background-color: var(--matte-black);
    scroll-snap-align: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Services Grid - Clean 3x3 Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-grid.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-card {
    position: relative;
    width: 100%;
    min-height: 280px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--charcoal);
}

.service-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.service-image-layer.active {
    opacity: 1;
}

.service-card.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Lazy load service card images - allow loading */
.service-card:not(.image-loaded) {
    background-color: var(--charcoal);
}

/* Removed animation blocking - content always visible */

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.15s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }
.service-card:nth-child(7) { transition-delay: 0.2s; }
.service-card:nth-child(8) { transition-delay: 0.35s; }
.service-card:nth-child(9) { transition-delay: 0.4s; }

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.15);
    transition: background 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-overlay {
    background: rgba(10, 10, 10, 0.3);
}

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--pure-white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    transition: color 0.4s ease, transform 0.4s ease;
    margin: 0 0 1rem 0;
}

.service-card:hover h3 {
    color: var(--pure-white);
    transform: scale(1.05);
}

.service-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 90%;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin 0.4s ease;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.service-card.active .service-description {
    opacity: 1;
    max-height: 200px;
    margin-top: 1rem;
}

.service-card.active .service-overlay {
    background: rgba(10, 10, 10, 0.25);
}

.service-card.active h3 {
    color: var(--pure-white);
    transform: scale(1.05);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

/* ============================================
   ABOUT SECTION - PREMIUM GTA CONTRACTOR
   ============================================ */

.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--matte-black) 50%, var(--primary-black) 100%);
    scroll-snap-align: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.about .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Large Heading - Centered at Top */
.about-main-title {
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
    position: relative;
    padding-bottom: 1.5rem;
    gap: 0.3rem;
}

.about-title-main {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 900;
    color: var(--pure-white);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    line-height: 1;
    display: block;
}

.about-title-brand {
    font-size: clamp(1rem, 2.8vw, 1.6rem);
    font-weight: 900;
    color: var(--construction-orange);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(255, 107, 53, 0.5);
    line-height: 1;
    display: block;
    margin-top: 0.2rem;
}

.about-title-line {
    font-size: clamp(1rem, 2.8vw, 1.6rem);
    font-weight: 700;
    color: var(--pure-white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1;
    display: block;
    opacity: 0.9;
}

.about-title-sub {
    font-size: clamp(1rem, 2.8vw, 1.6rem);
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    opacity: 0.8;
    margin-top: 0.1rem;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--construction-orange);
}

.about-main-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Main Content Layout - STRICT: IMAGE LEFT, STORY RIGHT */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image story";
    gap: 5rem;
    margin-bottom: 5rem;
    align-items: start;
}

/* Left Side - Image (MUST BE LEFT) */
.about-image-section {
    grid-area: image;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) rotateY(0deg) !important;
    transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}

.about-image-section.animate-in {
    opacity: 1 !important;
    transform: translateX(0) rotateY(0deg) !important;
}
    transform: translateX(0) rotateY(0deg);
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--matte-black) 100%);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.about-image-wrapper.image-loaded {
    background-size: 150% auto;
    background-position: center center;
}

.about-image-wrapper:hover {
    transform: translateY(-8px) rotateY(1deg);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7),
                0 0 0 1px rgba(255, 255, 255, 0.08);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--construction-orange) 0%, transparent 100%);
    opacity: 0.6;
    z-index: 2;
}

/* Right Side - Story Content (MUST BE RIGHT) */
.about-story-section {
    grid-area: story;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.about-story-section.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-subheading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    font-weight: 700;
    color: var(--construction-orange);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.about-text-content {
    margin-bottom: 0;
}

.about-paragraph {
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 1.8rem;
    letter-spacing: 0.01em;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-paragraph .highlight {
    color: var(--construction-orange);
    font-weight: 600;
}

/* Stats Section (MANDATORY: UNDER IMAGE + STORY, NOT BESIDE) */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    position: relative;
}

.about-stat-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.about-stat-card:nth-child(1) { transition-delay: 0.5s; }
.about-stat-card:nth-child(2) { transition-delay: 0.6s; }
.about-stat-card:nth-child(3) { transition-delay: 0.7s; }
.about-stat-card:nth-child(4) { transition-delay: 0.8s; }

.about-stat-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    background: rgba(26, 26, 26, 0.7);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.about-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--construction-orange);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.03em;
}

.about-stat-label {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.4;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio {
    padding: 8rem 0;
    background-color: var(--matte-black);
    scroll-snap-align: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-grid.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) rotateX(0deg) !important;
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-image-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.5s ease;
}

.portfolio-image-layer.active {
    opacity: 1;
}

.portfolio-item.animate-in {
    opacity: 1 !important;
    transform: translateY(0) rotateX(0deg) !important;
}

.portfolio-item.animate-in {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
}

.portfolio-item:nth-child(1) { transition-delay: 0s; }
.portfolio-item:nth-child(2) { transition-delay: 0.1s; }
.portfolio-item:nth-child(3) { transition-delay: 0.2s; }
.portfolio-item:nth-child(4) { transition-delay: 0.3s; }
.portfolio-item:nth-child(5) { transition-delay: 0.4s; }
.portfolio-item:nth-child(6) { transition-delay: 0.5s; }

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Legacy portfolio-image class - kept for compatibility */
.portfolio-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
    background-color: var(--charcoal);
}

/* Lazy load portfolio images - allow loading */
.portfolio-image:not(.image-loaded) {
    background-color: var(--charcoal);
}

.portfolio-item:hover .portfolio-image-container {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-image-layer {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-hint {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    opacity: 0.8;
    font-weight: 400;
}

.portfolio-item {
    cursor: pointer;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 10000;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    background: var(--matte-black);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--pure-white);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    line-height: 1;
}

.gallery-close:hover {
    background: var(--construction-orange);
    transform: rotate(90deg);
}

.gallery-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--pure-white);
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    min-height: 0;
}

.gallery-main-image {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.gallery-nav:hover {
    background: var(--construction-orange);
    border-color: var(--construction-orange);
    transform: scale(1.1);
}

.gallery-nav:active {
    transform: scale(0.95);
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem;
    overflow-x: auto;
    scrollbar-width: thin;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--construction-orange);
    border-radius: 3px;
}

.gallery-thumbnail {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.gallery-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumbnail.active {
    border-color: var(--construction-orange);
    opacity: 1;
}

.gallery-counter {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .gallery-modal-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
        padding: 1rem;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .gallery-thumbnail {
        width: 80px;
        height: 60px;
    }
    
    .gallery-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
}

/* ============================================
   SERVICE AREAS SECTION
   ============================================ */

.service-areas {
    padding: 8rem 0;
    background-color: var(--primary-black);
    scroll-snap-align: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-areas-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-areas-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.area-item {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--matte-black) 100%);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.area-item.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.area-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews {
    padding: 4rem 0;
    background-color: var(--matte-black);
    scroll-snap-align: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.reviews-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    min-height: 350px;
    width: 100%;
}

.review-card {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--matte-black) 100%);
    padding: 2.8rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(50px) scale(0.95);
    pointer-events: none;
    z-index: 1;
    margin: 0;
    backdrop-filter: blur(10px);
}

.review-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.review-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--construction-orange);
    color: var(--construction-orange);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--construction-orange);
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.carousel-dot:hover {
    background: rgba(255, 107, 53, 0.5);
    transform: scale(1.2);
}

.stars {
    color: var(--construction-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--pure-white);
    letter-spacing: 0.05em;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
    scroll-snap-align: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-content.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.cta-phone {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--construction-orange);
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    letter-spacing: 0.05em;
}

.cta-phone:hover {
    transform: scale(1.1);
}

.btn-cta {
    background: linear-gradient(135deg, var(--construction-orange) 0%, #ff5722 100%);
    color: var(--pure-white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.12em;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta::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;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #ff5722 0%, var(--construction-orange) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.7),
                0 0 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 8rem 0;
    background-color: var(--primary-black);
    scroll-snap-align: none;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-form.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-item:nth-child(3) { transition-delay: 0.3s; }

.contact-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--construction-orange);
}

.contact-item a,
.contact-item p {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--pure-white);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    background-color: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--pure-white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--construction-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 3rem;
    cursor: pointer;
}

.contact-form select option {
    background-color: var(--charcoal);
    color: var(--pure-white);
    padding: 0.5rem;
}

.btn-submit {
    background: linear-gradient(135deg, var(--construction-orange) 0%, #ff5722 100%);
    color: var(--pure-white);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4),
                0 0 0 0 rgba(255, 107, 53, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
}

.btn-submit::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;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #ff5722 0%, var(--construction-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6),
                0 0 20px rgba(255, 107, 53, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* ============================================
   FOOTER
   ============================================ */

/* ============================================
   FOOTER - CLEAN GENERIC DESIGN
   ============================================ */

.footer {
    background: var(--primary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

.footer-top {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
    gap: 4rem;
    padding-bottom: 3rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
    align-items: start;
}

.footer-brand {
    max-width: 100%;
    grid-column: 1 / 2;
}

.footer-col:nth-child(2) {
    grid-column: 2 / 3;
}

.footer-col:nth-child(3) {
    grid-column: 3 / 4;
}

.footer-col:nth-child(4) {
    grid-column: 4 / 5;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-company-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 100%;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.5);
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    border-color: var(--construction-orange);
    background: rgba(255, 107, 53, 0.1);
    color: var(--construction-orange);
    transform: translateY(-2px);
}


.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list li a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: var(--construction-orange);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-row svg {
    color: var(--construction-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-row a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-row a:hover {
    color: var(--construction-orange);
}

.footer-contact-row span {
    color: var(--text-gray);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--construction-orange);
}

.footer-separator {
    color: var(--text-gray);
    opacity: 0.3;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    /* Hide mobile social icons in navbar, show in hero instead */
    .nav-social-mobile {
        display: none;
    }
    
    /* Show hero social icons on mobile */
    .hero-social-mobile {
        display: flex;
    }

    .nav-social-desktop {
        display: none;
    }

    /* Hide social icons from mobile menu */
    .nav-menu .nav-social {
        display: none;
    }

    /* Mobile Menu Overlay - Separate element */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
        z-index: 998;
        pointer-events: none;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(42, 42, 42, 0.98) 100%);
        backdrop-filter: blur(20px);
        width: 85%;
        max-width: 400px;
        height: 100vh;
        text-align: left;
        transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        padding: 6rem 2rem 2rem;
        gap: 0;
        z-index: 999;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.7);
        border-left: 3px solid var(--construction-orange);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInNavItem 0.5s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.4s; }

    @keyframes slideInNavItem {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link {
        display: block;
        padding: 1.2rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        transition: all 0.3s ease;
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        border-left: 3px solid transparent;
        color: var(--text-gray);
    }

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

    .nav-link::after {
        display: none;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background: var(--construction-orange);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 107, 53, 0.1);
        color: var(--construction-orange);
        transform: translateX(10px);
        border-left-color: var(--construction-orange);
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        transform: scaleY(1);
    }

    /* Mobile Estimate Button */
    .mobile-estimate {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-estimate .btn-estimate {
        width: 100%;
        text-align: center;
        padding: 1.2rem;
        font-size: 1rem;
        display: block;
        opacity: 0;
        transform: translateY(20px);
        animation: slideInNavItem 0.5s ease forwards;
    }

    .nav-menu.active .mobile-estimate .btn-estimate {
        animation-delay: 0.45s;
    }

    /* Mobile Social Icons */
    .nav-social {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        gap: 1rem;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInNavItem 0.5s ease forwards;
    }

    .nav-menu.active .nav-social {
        animation-delay: 0.5s;
    }

    .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        color: var(--text-gray);
        text-decoration: none;
        transition: all 0.3s ease;
        flex: 1;
        border-left: 3px solid transparent;
    }

    .social-link:hover {
        background: rgba(255, 107, 53, 0.1);
        color: var(--construction-orange);
        border-left-color: var(--construction-orange);
        transform: translateX(10px);
    }

    .social-link .social-icon {
        width: 24px;
        height: 24px;
    }

    .social-link span {
        display: none;
    }

    .desktop-estimate {
        display: inline-block;
    }

    .mobile-estimate {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    /* Mobile Menu Header */
    .nav-menu::after {
        content: 'MENU';
        position: absolute;
        top: 2rem;
        left: 2rem;
        font-family: 'Space Grotesk', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--construction-orange);
        opacity: 0.5;
    }

    /* Tablet Services - 2 Columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.5rem;
        padding: 0 1.5rem;
        min-height: auto;
    }

    .service-card {
        min-height: 280px;
    }

    /* About Section Tablet */
    .about {
        padding: 5rem 0;
    }
    
    .about-main-title {
        margin-bottom: 4rem;
        gap: 0.25rem;
    }
    
    .about-title-main {
        font-size: clamp(1.3rem, 4vw, 2.5rem);
    }
    
    .about-title-brand {
        font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    }
    
    .about-title-line {
        font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    }
    
    .about-title-sub {
        font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "story";
        gap: 3rem;
        margin-bottom: 4rem;
    }
    
    .about-image-wrapper {
        height: 450px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 4rem;
    }
    
    .about-stat-card {
        padding: 1.8rem 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .areas-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .reviews-carousel-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    /* Footer Tablet */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        margin: 0 auto 1.5rem;
    }
    
    .footer-description {
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-col {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Ultra Small Mobile - Under 300px */
@media (max-width: 300px) {
    /* Navbar - Ultra Small */
    .navbar {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 0.5rem;
        gap: 0.3rem;
    }
    
    .logo-img {
        height: 32px;
        max-width: 90px;
        object-fit: contain;
    }
    
    .logo-wrapper {
        gap: 0.25rem;
        max-width: calc(100% - 75px);
        flex-shrink: 1;
        min-width: 0;
    }
    
    .social-link-mobile {
        width: 24px;
        height: 24px;
    }
    
    .social-icon-mobile {
        width: 12px;
        height: 12px;
    }
    
    .hamburger {
        width: 28px;
        height: 28px;
        padding: 0.3rem;
    }
    
    .hamburger span {
        height: 1.5px;
    }
    
    .btn-estimate {
        padding: 0.4rem 0.7rem;
        font-size: 0.65rem;
    }
    
    /* Hero Section */
    .hero {
        padding-top: 80px;
        padding-bottom: 2rem;
    }
    
    .hero-content {
        padding: 0 0.75rem;
    }
    
    .hero-social-mobile {
        margin-bottom: 1.2rem;
        gap: 1rem;
    }
    
    .hero-social-link {
        width: 68px;
        height: 68px;
    }
    
    .hero-social-icon {
        width: 34px;
        height: 34px;
    }
    
    .hero-social-text {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(0.85rem, 4vw, 1rem);
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Services Section */
    .services {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .service-card {
        height: 200px;
        padding: 1rem;
    }
    
    .service-name {
        font-size: 1rem;
    }
    
    /* About Section */
    .about {
        padding: 3rem 0;
    }
    
    .about-main-title {
        margin-bottom: 2rem;
        gap: 0.2rem;
    }
    
    .about-title-main {
        font-size: clamp(1.1rem, 5vw, 1.4rem);
    }
    
    .about-title-brand {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    }
    
    .about-title-line {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    }
    
    .about-title-sub {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-image-wrapper {
        height: 250px;
    }
    
    .about-subheading {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .about-paragraph {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-stat-card {
        padding: 1rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-stat-label {
        font-size: 0.75rem;
    }
    
    /* Portfolio Section */
    .portfolio {
        padding: 3rem 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    /* Service Areas */
    .service-areas {
        padding: 3rem 0;
    }
    
    .service-areas-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 0.75rem;
    }
    
    .area-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    /* Reviews Section */
    .reviews {
        padding: 3rem 0;
    }
    
    .reviews-carousel-wrapper {
        padding: 0 0.75rem;
    }
    
    .review-card {
        padding: 1.8rem;
    }
    
    .carousel-controls {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .carousel-btn {
        width: 44px;
        height: 44px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-dot.active {
        width: 24px;
    }
    
    .review-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .review-author {
        font-size: 0.85rem;
    }
    
    /* CTA Section */
    .cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 0 0.75rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .cta-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 0.75rem;
    }
    
    .contact-item {
        padding: 1rem 0;
    }
    
    .contact-item h3 {
        font-size: 1rem;
    }
    
    .contact-item a,
    .contact-item p {
        font-size: 0.9rem;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .contact-form select {
        padding-right: 2.5rem;
        background-size: 10px;
    }
    
    .btn-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer .container {
        padding: 0 0.5rem;
    }
    
    .footer-top {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 85%;
    }
    
    .footer-company-name {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .footer-social {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        order: -1;
    }
    
    .footer-social-link {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border-width: 2px;
    }
    
    .footer-social-link svg {
        width: 32px;
        height: 32px;
    }
    
    .footer-title {
        font-size: 0.85rem;
    }
    
    .footer-list {
        gap: 0.4rem;
    }
    
    .footer-list li a {
        font-size: 0.75rem;
    }
    
    .footer-contact-row {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    
    .footer-contact-row svg {
        width: 14px;
        height: 14px;
    }
    
    .footer-bottom {
        padding: 1rem 0.5rem;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
        padding: 0 0.5rem;
    }
    
    .footer-legal {
        font-size: 0.7rem;
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    
    .footer-separator {
        margin: 0 0.2rem;
    }
}

/* Extra Small Mobile - Under 400px */
@media (max-width: 400px) {
    /* Navbar - Extra Small */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 0.75rem;
        gap: 0.4rem;
    }
    
    .logo-img {
        height: 38px;
        max-width: 110px;
        object-fit: contain;
    }
    
    .logo-wrapper {
        gap: 0.3rem;
        max-width: calc(100% - 90px);
        flex-shrink: 1;
        min-width: 0;
    }
    
    .social-link-mobile {
        width: 26px;
        height: 26px;
    }
    
    .social-icon-mobile {
        width: 14px;
        height: 14px;
    }
    
    .hamburger {
        width: 32px;
        height: 32px;
        padding: 0.35rem;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .btn-estimate {
        padding: 0.5rem 0.9rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    /* Prevent horizontal overflow on mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Mobile Navbar Social Icons */
    .logo-wrapper {
        gap: 0.5rem;
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 100px);
    }

    .logo-img {
        height: 45px;
        max-width: 140px;
        width: auto;
        object-fit: contain;
    }

    .nav-social-mobile {
        display: none;
    }
    
    .hero-social-mobile {
        margin-bottom: 1rem;
        gap: 0.9rem;
    }
    
    .hero-social-link {
        width: 64px;
        height: 64px;
    }
    
    .hero-social-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-social-text {
        font-size: 0.95rem;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 0.75rem;
    }
    
    .hamburger {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
    }
    
    .logo-wrapper {
        max-width: calc(100% - 100px);
    }

    .social-link-mobile {
        width: 28px;
        height: 28px;
    }

    .social-icon-mobile {
        width: 16px;
        height: 16px;
    }

    /* Hero Mobile Improvements */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
        height: auto;
    }

    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
        position: relative;
        z-index: 3;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.7rem;
    }

    .badge-icon {
        font-size: 0.8rem;
    }

    .badge-text {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .title-line {
        display: block;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }

    .hero-stats {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        min-width: 90px;
        padding: 0.8rem 0.6rem;
        flex: 0 0 calc(33.333% - 0.4rem);
        max-width: calc(33.333% - 0.4rem);
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .hero-features {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-tag {
        padding: 0.5rem 0.8rem;
        font-size: 0.75rem;
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
    }

    .feature-icon {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
        width: 100%;
        margin-bottom: 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-phone {
        width: 100%;
        text-align: center;
        padding: 0.9rem 1.5rem;
        justify-content: center;
        font-size: 0.9rem;
    }

    .btn-arrow {
        font-size: 1rem;
    }

    .phone-icon {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }

    .hero-scroll-indicator {
        bottom: 1rem;
        font-size: 0.7rem;
    }

    .scroll-line {
        height: 30px;
    }

    .hero-floating-elements {
        display: none;
    }

    .hero-particles {
        display: none;
    }

    /* Ensure hero overlay doesn't block content */
    .hero-overlay {
        opacity: 0.9;
    }
}

    /* Mobile Services - Single Column */
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.2rem;
        padding: 0 1rem;
        min-height: auto;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .service-card {
        min-height: 280px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .service-card h3 {
        font-size: 1.8rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        max-width: 95%;
    }
    
    .service-card.active .service-description {
        max-height: 300px;
    }
    
    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }
    
    .about-main-title {
        margin-bottom: 3rem;
        padding-bottom: 1rem;
        gap: 0.25rem;
    }
    
    .about-title-main {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }
    
    .about-title-brand {
        font-size: clamp(0.85rem, 3.8vw, 1.1rem);
    }
    
    .about-title-line {
        font-size: clamp(0.85rem, 3.8vw, 1.1rem);
    }
    
    .about-title-sub {
        font-size: clamp(0.85rem, 3.8vw, 1.1rem);
    }
    
    .about-main-title::after {
        width: 80px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        grid-template-areas: "image" "story";
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .about-image-wrapper {
        height: 350px;
    }
    
    .about-subheading {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .about-paragraph {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin-top: 3rem;
    }
    
    .about-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .about-stat-number {
        font-size: 2rem;
    }
    
    .about-stat-label {
        font-size: 0.7rem;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Loading Screen Mobile */
    .loading-content {
        padding: 1rem;
        max-height: 100vh;
        overflow-y: auto;
    }

    .loading-logo {
        margin-bottom: 1.5rem;
    }

    .logo-loading {
        max-width: 180px;
    }

    .loading-panels {
        width: 250px;
        height: 160px;
        margin-bottom: 15px;
    }

    .panel-1 {
        width: 100px;
        height: 65px;
    }

    .panel-2 {
        width: 85px;
        height: 60px;
    }

    .panel-3 {
        width: 75px;
        height: 50px;
    }

    .loading-accent {
        width: 150px;
        margin-bottom: 20px;
    }

    .loading-title {
        font-size: 1.2rem;
        padding: 0 0.5rem;
        line-height: 1.3;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 0 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-brand {
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        height: 45px;
        margin: 0 auto 0.75rem;
        max-width: 90%;
    }
    
    .footer-company-name {
        font-size: 1.05rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .footer-description {
        max-width: 100%;
        font-size: 0.85rem;
        margin: 0 auto 1.25rem;
        padding: 0;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.5;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        order: -1;
    }
    
    .footer-social-link {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        border-width: 2px;
    }
    
    .footer-social-link svg {
        width: 32px;
        height: 32px;
    }
    
    .footer-col {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        line-height: 1.3;
    }
    
    .footer-list {
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-list li {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-list li a {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
        width: 100%;
        line-height: 1.4;
        padding: 0.2rem 0;
    }
    
    .footer-contact-info {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-contact-row {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        line-height: 1.4;
        padding: 0.2rem 0;
        gap: 0.5rem;
    }
    
    .footer-contact-row svg {
        flex-shrink: 0;
        width: 15px;
        height: 15px;
    }
    
    .footer-contact-row span,
    .footer-contact-row a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 22px);
    }
    
    .footer-bottom {
        padding: 1.25rem 0.75rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.6rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .footer-legal {
        font-size: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-legal a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
    }
}

/* Footer Fix for 470px-300px Range */
@media (max-width: 470px) and (min-width: 300px) {
    .footer {
        padding: 2rem 0 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
        position: relative;
    }
    
    .footer .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        overflow-x: hidden;
    }
    
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer-brand {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .footer-logo {
        height: 40px;
        max-width: 85%;
        width: auto;
        margin: 0 auto 0.75rem;
        display: block;
    }
    
    .footer-company-name {
        font-size: 0.95rem;
        padding: 0;
        margin: 0 0 0.75rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.3;
    }
    
    .footer-description {
        font-size: 0.75rem;
        padding: 0;
        margin: 0 auto 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-social {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-social-link {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .footer-col {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .footer-title {
        font-size: 0.8rem;
        padding: 0;
        margin: 0 0 0.75rem 0;
        word-wrap: break-word;
        width: 100%;
        max-width: 100%;
        line-height: 1.3;
    }
    
    .footer-list {
        gap: 0.4rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .footer-list li {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-list li a {
        font-size: 0.7rem;
        padding: 0.2rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: block;
        width: 100%;
        max-width: 100%;
        line-height: 1.4;
    }
    
    .footer-contact-info {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-contact-row {
        font-size: 0.7rem;
        gap: 0.4rem;
        padding: 0.2rem 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        box-sizing: border-box;
        line-height: 1.4;
    }
    
    .footer-contact-row svg {
        width: 14px;
        height: 14px;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .footer-contact-row span,
    .footer-contact-row a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .footer-bottom {
        padding: 1rem 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    }
    
    .footer-copyright {
        font-size: 0.65rem;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        line-height: 1.4;
    }
    
    .footer-legal {
        font-size: 0.65rem;
        gap: 0.3rem;
        padding: 0;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-legal a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        display: inline-block;
        line-height: 1.4;
    }
    
    .footer-separator {
        margin: 0 0.2rem;
    }
}

/* Extra Small Mobile Footer - 520px and under */
@media (max-width: 520px) {
    .footer {
        padding: 2rem 0 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .footer .container {
        padding: 0 0.6rem;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .footer-top {
        gap: 1.5rem;
        padding-bottom: 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-logo {
        height: 42px;
        max-width: 88%;
    }
    
    .footer-company-name {
        font-size: 1rem;
        padding: 0;
        line-height: 1.3;
    }
    
    .footer-description {
        font-size: 0.8rem;
        padding: 0;
        line-height: 1.5;
    }
    
    .footer-social {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        order: -1;
        justify-content: center;
    }
    
    .footer-social-link {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border-width: 2px;
    }
    
    .footer-social-link svg {
        width: 30px;
        height: 30px;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-title {
        font-size: 0.85rem;
        padding: 0;
        line-height: 1.3;
    }
    
    .footer-list {
        gap: 0.45rem;
    }
    
    .footer-list li a {
        font-size: 0.75rem;
        padding: 0.2rem 0;
        line-height: 1.4;
    }
    
    .footer-contact-row {
        font-size: 0.75rem;
        gap: 0.45rem;
        padding: 0.2rem 0;
        line-height: 1.4;
    }
    
    .footer-contact-row svg {
        width: 15px;
        height: 15px;
        margin-top: 2px;
    }
    
    .footer-bottom {
        padding: 1rem 0.6rem;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
        padding: 0;
        line-height: 1.4;
    }
    
    .footer-legal {
        font-size: 0.7rem;
        gap: 0.35rem;
        padding: 0;
    }
    
    .footer-separator {
        margin: 0 0.2rem;
    }
}

}
}