/* Construction Company Website - Pixel Accurate Design */

/* Design Tokens - Exact Colors */
:root {
    --primary-yellow: #E1251B;
    --dark-charcoal: #2A2A2A;
    --near-black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --body-text-gray: #666666;
    --medium-gray: #999999;
    --overlay-black: rgba(0, 0, 0, 0.4);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--body-text-gray);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography - Exact Specifications */
h1, h2, h3, h4, h5, h6,
.section-title,
.hero-title,
.form-title,
.service-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--dark-charcoal);
}

h1, .hero-title {
    font-weight: 700;
    letter-spacing: 5px;
}

h2, .section-title {
    font-weight: 600;
    letter-spacing: 4px;
}

h3, .form-title {
    font-weight: 500;
    letter-spacing: 3px;
}

p, .hero-description, .about-paragraph, .review-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--body-text-gray);
}

/* Header / Navigation */
.main-header {
    background-color: var(--dark-charcoal);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 85px;
    padding: 0;
    margin: 0;
}

.main-header.scrolled {
    background-color: var(--dark-charcoal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.header-logo {
    flex-shrink: 0;
    height: 85px;
    display: flex;
    align-items: center;
    margin-left: 0;
}

.logo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 85px;
    padding: 8px 12px;
    background-color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
    border-radius: 0;
    overflow: hidden;
}

.logo-block:hover {
    opacity: 0.95;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    flex-shrink: 0;
    transform: scale(2.4);
    transform-origin: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
    padding-right: 40px;
    height: 85px;
}

.nav-link {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    padding: 0 24px;
    transition: all 0.3s ease;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background-color: var(--primary-yellow);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-content {
    padding: 24px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-gray);
}

.mobile-logo-block {
    display: flex;
    align-items: center;
}

.mobile-logo-img {
    height: 40px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark-charcoal);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
}

.mobile-nav-link {
    padding: 16px;
    color: var(--dark-charcoal);
    text-decoration: none;
    font-weight: 400;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: var(--light-gray);
    color: var(--primary-yellow);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

.mobile-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    color: var(--dark-charcoal);
    text-decoration: none;
    font-weight: 400;
    border: 2px solid var(--primary-yellow);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-phone-link:hover {
    background: var(--primary-yellow);
    color: var(--near-black);
}

.mobile-cta-btn {
    padding: 16px;
    background: var(--primary-yellow);
    color: var(--near-black);
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-cta-btn:hover {
    background-color: #C11F17;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 85px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url('image12.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 60px;
    font-weight: 600;
    letter-spacing: 4px;
    line-height: 1.3;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 24px;
}

.hero-subheadline {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    letter-spacing: 1px;
}

.hero-scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    animation: bounce 2s infinite;
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: var(--primary-yellow);
}

.hero-scroll-indicator i {
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--near-black);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #C11F17;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 37, 27, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-charcoal);
}

/* Four-Step Process Section */
.four-step-section {
    background-color: var(--white);
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
}

.four-step-wrapper {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.four-step-heading {
    text-align: center;
    width: 100%;
}

.four-step-tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-style: italic;
    color: #D32F2F;
    margin: 0 0 8px 0;
}

.four-step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2A2A2A;
    margin: 0;
    line-height: 1.2;
}

.four-step-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step-card {
    display: flex;
    align-items: center;
    flex-direction: row;
    background: #FFFFFF;
    border-left: 4px solid #D32F2F;
    padding: 24px 28px;
    margin-bottom: 16px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

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

.process-step-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.process-step-icon {
    color: #D32F2F;
    font-size: 28px;
    margin-right: 16px;
    flex-shrink: 0;
}

.process-step-content {
    flex: 1;
    min-width: 0;
}

.process-step-content .process-step-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #2A2A2A;
    margin: 0 0 6px 0;
}

.process-step-desc {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tagline {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--primary-yellow);
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--dark-charcoal);
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--body-text-gray);
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* About Section */
#about {
    background-color: #2b2b2b;
}

.about-container {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 0 0 45%;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: none;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin-top: 80px;
}

.about-image-caption {
    padding: 16px 24px 0;
    text-align: center;
    margin: 0;
}

.about-image-caption::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary-yellow);
    margin: 0 auto 12px auto;
}

.about-image-caption strong {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    line-height: 1.5;
    font-style: italic;
}

.about-text {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    .about-image {
        min-height: 350px;
        flex: none;
    }
    .about-image img {
        object-fit: cover;
        object-position: center top;
    }
    .about-text {
        padding: 30px 20px;
    }
}

.about-header {
    margin-bottom: 40px;
}

.about-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    margin-bottom: 20px;
}

.about-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-paragraph {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
    margin: 0 0 20px 0;
}

.about-paragraph.about-tagline {
    margin-bottom: 8px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 16px 0;
}

.about-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #CCCCCC;
    padding: 4px 0;
    padding-left: 24px;
    position: relative;
}

.about-list li::before {
    content: '•';
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.services-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
}

.services-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.service-card {
    background: transparent;
    transition: all 0.3s ease;
    width: calc(33.333% - 27px);
    flex: 0 0 calc(33.333% - 27px);
}

.service-image {
    width: 100%;
    height: 227px;
    overflow: hidden;
    margin-bottom: 24px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 0 16px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark-charcoal);
    line-height: 1.4;
    transition: color 0.2s ease;
}

.service-toggle:hover {
    color: var(--primary-red);
}

.service-chevron {
    flex-shrink: 0;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card.open .service-chevron {
    transform: rotate(180deg);
}

.service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.service-card.open .service-content {
    max-height: 600px;
}

.service-content .service-description {
    padding-top: 16px;
}

.service-content .service-description + .service-description {
    margin-top: 12px;
}

.service-description {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--body-text-gray);
    margin: 0;
}

.services-image-strip {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.services-image-strip img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.why-choose-image {
    width: 100%;
    height: 460px;
    border-radius: 8px;
    overflow: hidden;
    justify-self: start;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-choose-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text-gray);
    margin: 0 0 20px 0;
}

.why-choose-subtitle {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--dark-charcoal);
    margin-bottom: 16px;
}

.who-we-serve-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.who-we-serve-list li {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--body-text-gray);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.who-we-serve-list li::before {
    content: '•';
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--body-text-gray);
    font-size: 48px;
}

.image-placeholder p {
    margin-top: 16px;
    font-size: 16px;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: var(--white);
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
}

.projects-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin: 0 auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    transition: grid-template-rows 0.6s ease;
}

.project-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-name {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--white);
    text-align: center;
}

.project-item-hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: scale(0.95);
    transition: visibility 0s linear 0.3s, opacity 0.4s ease, max-height 0.6s ease, transform 0.4s ease;
}

.project-item-hidden.show {
    visibility: visible;
    opacity: 1;
    max-height: 1000px;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.4s ease 0.1s, max-height 0.6s ease, transform 0.4s ease 0.1s;
}

.projects-show-more {
    text-align: center;
    margin-top: 60px;
}

.see-more-btn {
    background-color: var(--primary-yellow);
    color: var(--near-black);
    border: none;
    padding: 14px 32px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: #C11F17;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 37, 27, 0.3);
}

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

.see-more-btn.expanded .see-more-icon {
    transform: rotate(180deg);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Stats Bar */
.stats-bar {
    background-color: var(--primary-yellow);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--near-black);
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
}

.clients-title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--dark-charcoal);
    margin-bottom: 20px;
}

.clients-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-yellow);
    margin: 0 auto;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    width: calc(20% - 16px);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--white);
    padding: 10px;
    transition: all 0.3s ease;
    flex: 0 0 calc(20% - 16px);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.review-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body-text-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.review-author {
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 4px;
}

.review-location {
    font-size: 14px;
    color: var(--medium-gray);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background-color: #F8F8F8;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-charcoal);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.faq-chevron {
    flex-shrink: 0;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--body-text-gray);
    margin: 0;
    padding: 0 24px 20px 24px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--dark-charcoal);
}

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

.contact-left-column,
.contact-right-column {
    display: flex;
    flex-direction: column;
}

.contact-subheading {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-intro {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

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

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 12px 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: var(--white);
    transition: border-color 0.3s ease;
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-yellow);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background-color: var(--primary-yellow);
    color: var(--near-black);
    border: none;
    padding: 12px 40px;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background-color: #C11F17;
}

.contact-right-column {
    gap: 40px;
}

.contact-logo-wrap {
    width: 260px;
    height: 130px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 20px;
}

.contact-logo-img {
    width: 220px !important;
    height: auto;
    display: block;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.contact-info-text {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-link {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #E6B415;
    text-decoration: underline;
}

.contact-info-text .contact-link {
    color: rgba(255, 255, 255, 0.8);
}

.contact-info-text .contact-link:hover {
    color: #E6B415;
}

.contact-info-text .fa-envelope,
.contact-info-text .fa-phone {
    color: var(--primary-yellow);
}

/* Ratings/Accreditations Section */
.ratings-section {
    background-color: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.ratings-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.rating-item {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    height: auto;
}

.rating-image {
    width: 100%;
    height: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.rating-image:hover {
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background-color: var(--near-black);
    width: 100%;
}

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

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: #999999;
    margin: 0;
    line-height: 1.6;
}

.footer-contact a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact .fa-envelope,
.footer-contact .fa-phone {
    color: var(--primary-yellow);
}

.footer-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #444444;
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-copyright {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #999999;
    margin: 0;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--near-black);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(225, 37, 27, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #C11F17;
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 3px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-right {
        width: 100%;
        justify-content: flex-start;
    }
    
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .logo-block {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-right: 20px;
    }
    
    .hero-section {
        height: 100vh;
        margin-top: 85px;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }
    
    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: 3px;
    }
    
    .about-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .client-logo {
        width: calc(33.333% - 14px);
        flex: 0 0 calc(33.333% - 14px);
    }
    
    .client-logo {
        width: calc(50% - 10px);
        flex: 0 0 calc(50% - 10px);
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .four-step-heading {
        margin-bottom: 24px;
    }
    
    .four-step-title {
        font-size: 32px;
    }
    
    .four-step-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .service-card {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .service-image {
        height: 227px;
    }
    
    .services-image-strip {
        max-width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .ratings-grid {
        gap: 40px;
    }
    
    .rating-item {
        max-width: 150px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .hero-container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
    
    .hero-subheadline {
        font-size: 14px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .hero-form-card {
        padding: 32px 24px;
    }
    
    .ratings-grid {
        flex-direction: column;
        gap: 32px;
    }
    
    .rating-item {
        max-width: 180px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
}

/* Scroll Snap */
.scroll-snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Image Styling - All images use object-fit: cover */
img {
    object-fit: cover;
    display: block;
}

/* Exceptions for images that should use contain */
.rating-image,
.client-logo img {
    object-fit: contain;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.fade-in {
    opacity: 0;
}

.scroll-animate.fade-in.animate {
    opacity: 1;
}

.scroll-animate.slide-left {
    opacity: 0;
    transform: translateX(-40px);
}

.scroll-animate.slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate.slide-right {
    opacity: 0;
    transform: translateX(40px);
}

.scroll-animate.slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animate.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-animate.slide-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.scale-in {
    opacity: 0;
    transform: scale(0.95);
}

.scroll-animate.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.scroll-animate.delay-1 {
    transition-delay: 0.1s;
}

.scroll-animate.delay-2 {
    transition-delay: 0.2s;
}

.scroll-animate.delay-3 {
    transition-delay: 0.3s;
}

.scroll-animate.delay-4 {
    transition-delay: 0.4s;
}

.scroll-animate.delay-5 {
    transition-delay: 0.5s;
}

.scroll-animate.delay-6 {
    transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .scroll-animate.animate {
        opacity: 1;
        transform: none;
    }
}
