/* ==========================================================================
   Design System & Variable Declarations
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: #f15a24;
    --primary-hover: #d54919;
    --dark-bg: #111111;
    --header-bg: #181818;
    --stats-bg: #1e1e1e;
    
    --text-white: #ffffff;
    --text-light: #f5f5f7;
    --text-muted: #a0a0a5;
    --text-dark: #222222;
    
    /* Layout & Spacing */
    --header-height: 90px;
    --container-width: 1200px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    
    /* Typography */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   Modern CSS Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.header-container,
.hero-container,
.stats-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Header Component
   ========================================================================== */
.header {
    background-color: var(--header-bg);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 156px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 10;
    transform: translate(-85px, 15px);
    transition: var(--transition-smooth);
}

/* Navigation Menu */
.nav-menu {
    height: 100%;
}

.nav-list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 32px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: var(--text-white);
    font-size: 0.875rem; /* 14px */
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary);
}

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

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

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

/* Services Dropdown */
.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    transition: transform 0.25s ease;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #1a1a1a;
    border-top: 3px solid var(--primary);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 16px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1010;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: transparent;
}

.dropdown-item {
    display: block;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: rgba(241, 90, 36, 0.1);
    color: var(--primary);
    padding-left: 28px;
}

/* Dropdown Hover Trigger */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Header Contact Info */
.header-contact {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    transition: var(--transition-fast);
}

.phone-link:hover {
    color: var(--text-white);
    transform: translateY(-1px);
}

.phone-icon {
    stroke: var(--primary);
}

.phone-link:hover .phone-icon {
    stroke: var(--text-white);
}

/* Mobile Toggle Hamburger */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ==========================================================================
   Hero Section Component
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image & gradient masks */
.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: zoomOutHero 12s cubic-bezier(0.1, 1, 0.1, 1) forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient: rich dark mask on the left for text contrast, fading out to reveal details on the right */
    background: linear-gradient(
        90deg,
        rgba(17, 17, 17, 0.95) 0%,
        rgba(17, 17, 17, 0.85) 35%,
        rgba(17, 17, 17, 0.6) 60%,
        rgba(17, 17, 17, 0.3) 100%
    );
}

/* Hero Content Frame */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 680px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Responsive text sizes */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--text-white);
    margin-bottom: 24px;
}

.title-block {
    display: block;
}

.orange-highlight {
    color: var(--primary);
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 600px;
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 580px;
}

/* Button UI */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 15px 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 4px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 90, 36, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.btn-secondary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* ==========================================================================
   Statistics Banner Component
   ========================================================================== */
.stats-banner {
    background-color: var(--stats-bg);
    padding: 36px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.stat-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 32px;
    height: 32px;
    stroke: var(--primary);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
}

.stat-value-text {
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.875rem; /* 14px */
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
}

/* ==========================================================================
   Animations & Transitions
   ========================================================================== */
@keyframes zoomOutHero {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1.0);
    }
}

/* Loading animations */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFade 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: var(--anim-delay, 0ms);
}

@keyframes slideUpFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll trigger animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   About Us Section Component
   ========================================================================== */
.about-section {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.about-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Content Column */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Slide up and fade in for about content */
.about-content.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-content.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-tagline {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.about-heading {
    color: var(--text-dark);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.highlight-dark {
    color: #444444;
}

.about-lead {
    font-size: 1.0625rem;
    color: #333333;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 28px;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    width: 100%;
}

.about-checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-content.is-visible .about-checklist-item {
    opacity: 1;
    transform: translateY(0);
}

.about-content.is-visible .about-checklist-item:nth-child(1) { transition-delay: 150ms; }
.about-content.is-visible .about-checklist-item:nth-child(2) { transition-delay: 250ms; }
.about-content.is-visible .about-checklist-item:nth-child(3) { transition-delay: 350ms; }
.about-content.is-visible .about-checklist-item:nth-child(4) { transition-delay: 450ms; }
.about-content.is-visible .about-checklist-item:nth-child(5) { transition-delay: 550ms; }

.check-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.about-summary {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 36px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 28px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 90, 36, 0.2);
}

/* Right Gallery Column */
.about-gallery {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 16px;
    height: 480px;
    width: 100%;
}

/* Slide in from right and fade in for gallery */
.about-gallery.fade-in-section {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-gallery.fade-in-section.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.gallery-main, .gallery-thumb {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.gallery-main {
    height: 100%;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.gallery-thumb {
    flex: 1;
    height: 100%;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Image Hover Zoom Animation */
.gallery-main:hover .gallery-img,
.gallery-thumb:hover .gallery-img {
    transform: scale(1.04);
}

/* ==========================================================================
   Responsive Overrides for About Us Section
   ========================================================================== */
@media (max-width: 992px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-gallery {
        height: 400px;
    }
    
    .about-gallery.fade-in-section {
        transform: translateY(40px);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-gallery {
        height: 320px;
    }
    
    .about-heading {
        font-size: 2rem;
    }
    
    .about-container {
        gap: 36px;
    }
}

@media (max-width: 576px) {
    .about-gallery {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
    }
    
    .gallery-main {
        height: 280px;
    }
    
    .gallery-thumbs {
        flex-direction: row;
        height: 80px;
        gap: 12px;
    }
    
    .gallery-thumb {
        height: 100%;
    }
}

/* ==========================================================================
   Services Section Component
   ========================================================================== */
.services-section {
    background-color: #f9f9fb;
    color: var(--text-dark);
    padding: 120px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.services-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.services-header {
    text-align: left;
    margin-bottom: 60px;
}

.services-header.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.services-header.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.services-tagline {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.services-heading {
    color: var(--text-dark);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Service Card Styles */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e1e1e6;
    border-radius: 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease,
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e1e1e6;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card-body {
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-grow: 1;
}

/* Service Card Animations */
.service-card.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease,
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Elevation */
.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(241, 90, 36, 0.08);
}

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

.service-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.03em;
}

.service-description {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.5;
    font-weight: 400;
}

/* ==========================================================================
   Responsive Overrides for Services Section
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    .services-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-card-body {
        padding: 24px 20px;
    }
}

/* ==========================================================================
   Why Choose Us Section Component
   ========================================================================== */
.why-section {
    background-color: var(--dark-bg); /* #111111 */
    color: var(--text-light); /* #f5f5f7 */
    padding: 120px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-image: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
}

.why-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-header.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-header.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-tagline {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.why-heading {
    color: var(--text-white);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.highlight-underline {
    position: relative;
    white-space: nowrap;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}

.why-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Why Card Styles */
.why-card {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease,
                background-color 0.3s ease,
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Why Card Animations */
.why-card.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                border-color 0.3s ease,
                background-color 0.3s ease,
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Hover Effects */
.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 90, 36, 0.3);
    background-color: #1a1a1a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.why-icon-wrapper {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.why-icon {
    width: 52px;
    height: 52px;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card:hover .why-icon {
    transform: scale(1.08);
}

.why-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.why-card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ==========================================================================
   Responsive Overrides for Why Choose Us Section
   ========================================================================== */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .why-section {
        padding: 80px 0;
    }
    .why-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-card {
        padding: 36px 24px;
    }
}

/* ==========================================================================
   Recent Projects Section Component
   ========================================================================== */
.projects-section {
    background-color: #1e1e1e; /* matches stats-banner and gives premium dark texture */
    color: var(--text-light);
    padding: 120px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.projects-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    width: 100%;
}

.projects-header.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.projects-header.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.projects-title-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.projects-tagline {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.projects-heading {
    color: var(--text-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.btn-outline-light {
    background-color: transparent;
    border: 2.2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.btn-outline-light:hover {
    background-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 90, 36, 0.2);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    width: 100%;
}

/* Project Card Styles */
.project-card {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Project Card Animations */
.project-card.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.project-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5; /* vertical visual-heavy visual aspect ratio */
    overflow: hidden;
    position: relative;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Black Overlay containing Category & Title */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 60%, rgba(0,0,0,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    opacity: 0.95;
    transition: background 0.4s ease;
}

.project-category {
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.project-title {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}

/* Card Hover Animations */
.project-card:hover .project-img {
    transform: scale(1.06);
}

.project-card:hover .project-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(241, 90, 36, 0.45) 50%, rgba(0,0,0,0.95) 100%);
}

/* ==========================================================================
   Responsive Overrides for Projects Section
   ========================================================================== */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .btn-outline-light {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .project-img-wrapper {
        aspect-ratio: 4 / 3; /* landscape visual-heavy aspect ratio on mobile screens to save screen height scroll space */
    }
}

/* ==========================================================================
   Contact Section Component
   ========================================================================== */
.contact-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #f9f9fb; /* light background for form side */
}

.contact-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #ffffff;
}

/* Left Panel (Dark) */
.contact-info-panel {
    background-color: #181818;
    color: var(--text-white);
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-info-panel.fade-in-section {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-panel.fade-in-section.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-tagline {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-heading {
    color: var(--text-white);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 48px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-detail-icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(241, 90, 36, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
}

.contact-detail-text a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: var(--primary);
}

/* Right Panel (Light Form) */
.contact-form-panel {
    background-color: #f9f9fb;
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-form-panel.fade-in-section {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-form-panel.fade-in-section.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e1e1e6;
    border-radius: 4px;
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-family: inherit;
    font-weight: 400;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0a0a5;
    opacity: 1;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.08);
}

/* Custom Select Dropdown Styles */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 48px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #a0a0a5;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-select:focus + .select-arrow {
    color: var(--primary);
}

.form-textarea {
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 16px 36px;
    font-size: 0.9rem;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(241, 90, 36, 0.25);
    width: auto;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 90, 36, 0.35);
}

/* ==========================================================================
   Responsive Overrides for Contact Section
   ========================================================================== */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 60px 40px;
    }
    
    .contact-heading {
        margin-bottom: 32px;
    }
    
    .contact-form-panel {
        padding: 60px 40px;
    }
    
    .contact-info-panel.fade-in-section,
    .contact-form-panel.fade-in-section {
        transform: translateY(40px);
    }
}

@media (max-width: 576px) {
    .form-row-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .contact-info-panel {
        padding: 48px 24px;
    }
    
    .contact-form-panel {
        padding: 48px 24px;
    }
    
    .btn-submit {
        width: 100%;
    }
}

/* ==========================================================================
   Footer Section Component
   ========================================================================== */
.footer {
    background-color: #141414;
    color: #a0a0a5;
    padding: 80px 0 30px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.branding-col {
    padding-right: 20px;
    margin-left: -45px;
    margin-top: -25px;
}

.footer-logo {
    max-height: 144px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: -15px;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    font-weight: 300;
}

.footer-title {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #a0a0a5;
    font-size: 0.95rem;
    font-weight: 400;
    transition: padding-left 0.3s ease, color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.4;
}

.footer-contact-info li a {
    color: #a0a0a5;
    transition: color 0.3s ease;
}

.footer-contact-info li a:hover {
    color: var(--primary);
}

.footer-info-icon {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-hours {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 16px;
    margin-top: 4px;
    width: 100%;
}

/* Footer Bottom Area */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-copy {
    font-size: 0.88rem;
    font-weight: 300;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a5;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

/* Scroll To Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a5;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-icon {
    width: 20px;
    height: 20px;
}

.scroll-top-btn:hover {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Overrides for Footer Section
   ========================================================================== */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .branding-col {
        padding-right: 0;
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 24px;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Responsive Design Media Queries
   ========================================================================== */

/* Large screens and below (Header & Grid adjustment) */
@media (max-width: 1200px) {
    .stats-container {
        gap: 20px;
    }
}

/* Tablets Landscape and below (Hamburger menu activation) */
@media (max-width: 992px) {
    .logo-img {
        transform: translate(0, 15px);
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    /* Navigation panel */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background-color: #141414;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1050;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 120px 40px 40px;
        display: block;
    }
    
    .nav-menu.is-active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 24px;
    }
    
    .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-link {
        width: 100%;
        font-size: 1.125rem;
        padding: 10px 0;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile Dropdown styles */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.02);
        margin-top: 10px;
        padding: 8px 0;
        width: 100%;
        border-top: none;
        border-left: 2px solid var(--primary);
        display: none; /* Controlled by JS toggle */
    }
    
    .dropdown.is-open .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 8px 16px;
    }
    
    /* Phone details moved to center header */
    .header-contact {
        margin-right: 20px;
    }
    
    .phone-number {
        font-size: 1rem;
    }
    
    /* Mobile Toggle Active Styling */
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero & Stats Grid */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Small tablets / Phones Portrait */
@media (max-width: 768px) {
    :root {
        --header-height: 80px;
    }
    
    .header-contact {
        display: none; /* Hide header phone, menu will display it */
    }
    
    .hero {
        min-height: 75vh;
        padding-top: var(--header-height);
    }
    
    .hero-description {
        display: none;
    }
    
    .hero-container {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Mobile nav menu tweaks */
    .nav-menu {
        width: 100%;
    }
}

/* Small Phones */
@media (max-width: 576px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        justify-content: flex-start;
        padding: 5px 0;
    }
}
