/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Colors */
    --bg-light: #FAFAFA;
    --bg-offwhite: #F4F4F4;
    --bg-light-alt: #EBEBEB;
    --bg-dark: #121212;
    
    --text-main: #2D2D2D;
    --text-muted: #666666;
    --text-light: #FFFFFF;
    --text-light-alpha: rgba(255, 255, 255, 0.7);
    
    /* Branding */
    --accent-blue: #0A2342;
    --accent-red: #D00000;
    --accent-red-hover: #A30000;
    
    /* Geometry */
    --border-light: #E0E0E0;
    --border-dark: #333333;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 30px 60px rgba(10, 35, 66, 0.15);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    
    /* Layout */
    --container-w: 1280px;
    --section-pad: 120px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent-blue);
}

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

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

ul {
    list-style: none;
}

/* ==========================================================================
   Utilities & Global Components
   ========================================================================== */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: var(--section-pad) 0;
}

.text-center { text-align: center; }
.text-light { color: var(--text-light); }
.text-light h2, .text-light h3, .text-light h4 { color: var(--text-light); }
.text-light-alpha { color: var(--text-light-alpha); }

.bg-dark { background-color: var(--bg-dark); }
.bg-light-alt { background-color: var(--bg-offwhite); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-secondary:hover {
    background-color: #11386A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background-color: var(--accent-blue);
    color: white;
}

/* Icons */
.icon-sm {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
}

.section-header.flex-header {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-red);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--accent-red);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-light);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 45px;
    transition: var(--transition-fast);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
}

.site-header.scrolled .main-nav a {
    color: var(--accent-blue);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: var(--transition-fast);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.site-header.scrolled .mobile-menu-toggle {
    color: var(--accent-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* for parallax */
    z-index: -1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 35, 66, 0.9) 0%, rgba(10, 35, 66, 0.5) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.hero-blueprint-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.shape-1 {
    width: 300px;
    height: 400px;
    right: 10%;
    top: 20%;
    animation: float 20s infinite alternate ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    right: 25%;
    bottom: 15%;
    animation: float 15s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 700px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 5rem;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.accent-text {
    color: var(--accent-red);
}

.dot {
    color: var(--accent-red);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light-alpha);
    margin-bottom: 3rem;
    max-width: 600px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: white;
    border-radius: 2px;
    margin-top: 6px;
    animation: scroll 2s infinite;
}

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

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 20;
    margin-top: -50px;
    max-width: var(--container-w);
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
}

.trust-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-offwhite);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
}

.trust-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.trust-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-light);
}

/* ==========================================================================
   Signature Services
   ========================================================================== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: var(--transition-fast);
}

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

.service-content {
    padding: 2.5rem 2rem;
    position: relative;
}

.service-icon-box {
    position: absolute;
    top: -25px;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--accent-red);
    font-family: var(--font-heading);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2.5rem;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--accent-red);
}

.feature-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: var(--text-muted);
}

.why-us-visuals {
    position: relative;
}

.visual-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visual-card img {
    width: 100%;
    height: auto;
}

.accent-visual {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent-blue);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    border: 10px solid var(--bg-offwhite);
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================================================
   Transformation Before/After
   ========================================================================== */
.ba-slider-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-image img {
    width: 1000px;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ba-before {
    width: 50%; /* Initial state */
    z-index: 2;
    overflow: hidden;
    border-right: 2px solid white;
}

.ba-after {
    z-index: 1;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 0.5rem 1.5rem;
    background: rgba(10, 35, 66, 0.8);
    color: white;
    font-family: var(--font-heading);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    z-index: 5;
}

.label-before {
    left: 20px;
}

.label-after {
    right: 20px;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    justify-content: center;
    align-items: center;
}

.handle-line {
    width: 4px;
    height: 100%;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.handle-btn {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    border: 3px solid white;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-red);
    z-index: 2;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -3rem;
    width: 2px;
    background: var(--accent-red);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1s ease;
}

.process-step.active::after {
    transform: scaleY(1);
}

.process-step:last-child::after {
    display: none;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-light-alpha);
}

/* ==========================================================================
   Featured Projects
   ========================================================================== */
.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    group: project;
}

.project-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.project-hover {
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 66, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.project-card:hover .project-hover {
    opacity: 1;
}

.project-btn {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--accent-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.project-card:hover .project-btn {
    transform: translateY(0);
}

.project-cat {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.project-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-muted);
}

/* ==========================================================================
   Coverage Section
   ========================================================================== */
.coverage-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.area-badge {
    padding: 0.5rem 1.25rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--accent-blue);
    box-shadow: var(--shadow-sm);
}

.map-illustration {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-map {
    width: 80%;
    height: 80%;
}

.pulse-point {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--accent-red);
    border-radius: 50%;
}

.pulse-point::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--accent-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.p1 { top: 30%; left: 40%; }
.p2 { top: 60%; left: 60%; animation-delay: 0.5s; }
.p3 { top: 45%; left: 70%; animation-delay: 1s; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 3rem;
    right: 3rem;
    color: var(--bg-light-alt);
    transform: scale(3);
    opacity: 0.5;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.client-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-blue);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.cta-box {
    background: var(--accent-blue);
    border-radius: 12px;
    padding: 5rem;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(45deg, rgba(208, 0, 0, 0.1), transparent);
    transform: rotate(-10deg);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light-alpha);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cta-form input {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    flex: 1;
    max-width: 200px;
}

.cta-form .btn {
    flex-shrink: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--bg-dark);
    color: white;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--text-light-alpha);
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.social-links a:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
}

.footer-links h4, .footer-contact h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-light-alpha);
}

.footer-links ul li a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-light-alpha);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-light-alpha);
    font-size: 0.9rem;
}

.footer-legal a {
    margin-left: 1.5rem;
}

.footer-legal a:hover {
    color: white;
}

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 4rem; }
    
    .trust-inner {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .trust-divider {
        width: 100%;
        height: 1px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid, .coverage-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .visual-card { max-width: 600px; margin: 0 auto; }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    
    .main-nav, .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-title { font-size: 3rem; }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .service-grid, .project-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header.flex-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .ba-slider {
        height: 400px;
    }
    
    .ba-image img {
        width: 100vw;
    }
    
    .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .cta-form {
        flex-direction: column;
    }
    
    .cta-form input {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
