/* Atlas Excavation & Demolition - Main Stylesheet */

/* ============================================
   CSS Variables - Brand Colors
   ============================================ */
:root {
    --deep-navy: #1E2A38;
    --construction-orange: #F74500;
    --charcoal-gray: #3A3A3A;
    --dust-white: #F7F5F2;
    --white: #FFFFFF;
    --black: #000000;
    --orange-hover: #E03D00;
    --navy-light: #2a3a4d;
    --gray-light: #666666;
    --gray-medium: #888888;
    --border-color: #e0e0e0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 80px;
    --container-width: 1200px;
    --border-radius: 8px;
    --border-radius-lg: 12px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-navy);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-white { background-color: var(--white); }
.bg-dust { background-color: var(--dust-white); }
.bg-navy { background-color: var(--deep-navy); }
.bg-charcoal { background-color: var(--charcoal-gray); }

.text-white { color: var(--white); }
.text-orange { color: var(--construction-orange); }
.text-navy { color: var(--deep-navy); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--construction-orange);
    color: var(--white);
    border-color: var(--construction-orange);
}

.btn-primary:hover {
    background-color: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(247, 69, 0, 0.3);
}

.btn-secondary {
    background-color: var(--deep-navy);
    color: var(--white);
    border-color: var(--deep-navy);
}

.btn-secondary:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--white);
    color: var(--deep-navy);
}

.btn-outline-orange {
    background-color: transparent;
    color: var(--construction-orange);
    border-color: var(--construction-orange);
}

.btn-outline-orange:hover {
    background-color: var(--construction-orange);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-navy);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--construction-orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-weight: 500;
    color: var(--charcoal-gray);
    position: relative;
    padding: 5px 0;
}

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

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

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 15px 0;
    margin-top: 10px;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--charcoal-gray);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.nav-dropdown-content a:hover {
    background-color: var(--dust-white);
    color: var(--construction-orange);
    padding-left: 25px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--deep-navy);
}

.header-phone svg {
    width: 20px;
    height: 20px;
    fill: var(--construction-orange);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--deep-navy);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--deep-navy);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 42, 56, 0.95) 0%, rgba(30, 42, 56, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(247, 69, 0, 0.15);
    color: var(--construction-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(247, 69, 0, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--construction-orange);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--construction-orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* ============================================
   Services Section
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    background-color: var(--white);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.service-card-content {
    padding: 30px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--deep-navy);
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.service-card .btn {
    width: 100%;
}

/* Sub-service cards (smaller) */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sub-service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
}

.sub-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sub-service-card-image {
    height: 200px;
    overflow: hidden;
}

.sub-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.sub-service-card-content {
    padding: 25px;
}

.sub-service-card h4 {
    margin-bottom: 10px;
    color: var(--deep-navy);
}

.sub-service-card p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin-bottom: 15px;
}

.sub-service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--construction-orange);
    font-weight: 600;
    font-size: 0.9375rem;
}

.sub-service-card .learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.sub-service-card:hover .learn-more svg {
    transform: translateX(5px);
}

/* ============================================
   Process Section
   ============================================ */
.process-section {
    background-color: var(--dust-white);
}

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

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -15px;
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--construction-orange), transparent);
}

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

.process-icon {
    width: 80px;
    height: 80px;
    background-color: var(--construction-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--deep-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.process-step h4 {
    margin-bottom: 10px;
    color: var(--deep-navy);
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--gray-light);
}

/* ============================================
   About Section / Why Choose Us
   ============================================ */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--construction-orange);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(247, 69, 0, 0.3);
}

.about-image-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .text {
    font-size: 0.875rem;
    font-weight: 500;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--dust-white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--construction-orange);
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background-color: var(--deep-navy);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-size: 300px;
    color: rgba(255, 255, 255, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 24px;
    height: 24px;
    fill: #FFB800;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--charcoal-gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--dust-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author-image svg {
    width: 30px;
    height: 30px;
    fill: var(--gray-medium);
}

.testimonial-author-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-author-info p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active,
.testimonial-dot:hover {
    background-color: var(--construction-orange);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--construction-orange) 0%, var(--orange-hover) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-outline {
    border-width: 2px;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.cta-phone svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ============================================
   Service Areas Section
   ============================================ */
.areas-section {
    background-color: var(--dust-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.area-card:hover {
    border-color: var(--construction-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-card svg {
    width: 30px;
    height: 30px;
    fill: var(--construction-orange);
    margin-bottom: 10px;
}

.area-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.area-card p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--deep-navy);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.7;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

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

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--construction-orange);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--construction-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

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

/* ============================================
   Page Header (Interior Pages)
   ============================================ */
.page-header {
    background-color: var(--deep-navy);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.05;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb .current {
    color: var(--construction-orange);
}

/* ============================================
   Service Detail Page
   ============================================ */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.service-detail-content ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--construction-orange);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background-color: var(--dust-white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    margin-bottom: 25px;
}

.sidebar-card h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--construction-orange);
}

.sidebar-services li {
    margin-bottom: 0;
}

.sidebar-services a {
    display: block;
    padding: 12px 0;
    color: var(--charcoal-gray);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.sidebar-services a:hover,
.sidebar-services a.active {
    color: var(--construction-orange);
    padding-left: 10px;
}

.sidebar-cta {
    background-color: var(--deep-navy);
    color: var(--white);
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    width: 100%;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    background-color: var(--dust-white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--construction-orange);
}

.contact-method h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-method p {
    margin-bottom: 0;
    color: var(--gray-light);
}

.contact-method a {
    color: var(--construction-orange);
    font-weight: 600;
}

.contact-form-wrapper {
    background-color: var(--dust-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--charcoal-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition-fast);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--construction-orange);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

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

/* ============================================
   Location Page
   ============================================ */
.location-hero {
    background-color: var(--deep-navy);
    padding: 160px 0 80px;
    position: relative;
}

.location-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-hero h1 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 20px;
}

.location-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 30px;
}

.location-services {
    padding: 80px 0;
}

.location-about {
    background-color: var(--dust-white);
    padding: 80px 0;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(30, 42, 56, 0);
    transition: background-color var(--transition-normal);
}

.gallery-item:hover::after {
    background-color: rgba(30, 42, 56, 0.3);
}

/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

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

    .sub-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

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

    .location-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .logo img {
        height: 50px;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .sub-services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--deep-navy);
    z-index: 999;
    display: flex;
    flex-direction: column;
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    color: var(--white);
    font-size: 1.25rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    color: var(--construction-orange);
}

.mobile-nav .btn {
    margin-top: 30px;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
