:root {
    --primary-color: #ff4500;
    --text-color: #333;
    --white: #ffffff;
    --black: #000000;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

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

/* Gallery Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 2000;
}

.lightbox-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92vw;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 92vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
    color: #f5f5f5;
    margin-top: 14px;
    font-size: 0.95rem;
    text-align: center;
    max-width: 80vw;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 38px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }

    .lightbox-prev {
        left: -48px;
    }

    .lightbox-next {
        right: -48px;
    }

    .lightbox-close {
        top: -38px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--white);
    text-align: left;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 50px;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: 4px;
    text-transform: uppercase;
}

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

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

.btn-black {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-black:hover {
    background: transparent;
    color: var(--black);
}

/* Badge in Hero */
.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 0;
    border-radius: 4px;
    border: none solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.badge img {
    height: 110px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
}

/* Hero Responsiveness */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        text-align: center;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .badge {
        padding: 8px 15px;
    }

    .badge img {
        height: 25px;
    }
}

/* About Overview Section */
.about-overview {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 45px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.chevron-double-right {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    color: #ff4d00;
}

.chevron-double-right::before,
.chevron-double-right::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    top: 50%;
    margin-top: -4px;
}

.chevron-double-right::before {
    left: 0;
}

.chevron-double-right::after {
    left: 6px;
}

@media (max-width: 1024px) {
    .about-text h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-text {
        order: 2;
        text-align: center;
    }

    .about-image {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-list li {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2rem;
    }
}

/* Responsiveness */
/* Services Section */
.services-section {
    padding: 100px 0;
    background: #fdfdfd;
    text-align: center;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.header-line {
    height: 1px;
    background: #ddd;
    flex: 1;
    max-width: 200px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eee;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #f0f0f0;
    margin: -1px;
}

.service-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.service-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-read-more {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 0.85rem;
    align-self: center;
    transition: var(--transition);
    border: 1px solid var(--black);
}

.btn-read-more:hover {
    background: transparent;
    color: var(--black);
}

.view-more-container {
    margin-top: 20px;
}

.view-more-container .btn-black {
    padding: 15px 45px;
    font-size: 1rem;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .header-line {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 20px;
    }
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

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

.why-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.why-title span {
    color: #ff4d00;
}

.why-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
    max-width: 650px;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.why-item {
    display: flex;
    gap: 25px;
}

.why-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.check-icon {
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
    margin-bottom: 3px;
}

.why-text h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.why-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 8px;
}

.read-more-link {
    display: inline-block;
    color: #ff4d00;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.read-more-link:hover {
    border-bottom-color: #ff4d00;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .why-grid {
        gap: 50px;
    }

    .why-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: left;
    }

    .why-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 60px 0 120px;
    background: url('../images/testimonials_bg.png') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    min-height: 40vh;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 26, 7, 0.85) 0%, rgba(26, 0, 0, 0.9) 100%);
}

.testimonial-container {
    position: relative;
    z-index: 2;
}

.testimonial-inner {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
}

.test-title {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.test-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 25px;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.quote-mark {
    margin: 0 auto 20px;
    width: 50px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.test-text {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 20px;
}

.test-author {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

.slider-nav {
    background: transparent;
    border: 1px solid var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--white);
    color: #1a1a1a;
}

/* Arrow Icons */
.arrow-left,
.arrow-right {
    display: inline-block;
    padding: 3.5px;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
}

.arrow-left {
    transform: rotate(135deg);
    margin-left: 2px;
}

.arrow-right {
    transform: rotate(-45deg);
    margin-right: 2px;
}

.review-cta {
    margin-top: 20px;
}

.btn-review {
    display: inline-block;
    padding: 10px 30px;
    background: #000;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid #ff4d00;
    transition: var(--transition);
}

.btn-review:hover {
    background: #ff4d00;
    border-color: #ff4d00;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

@media (max-width: 992px) {
    .testimonial-inner {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .testimonial-inner {
        padding: 30px 15px;
    }

    .test-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .test-subtitle {
        font-size: 1.1rem;
    }

    .test-text {
        font-size: 0.9rem;
    }

    .testimonial-slider {
        gap: 20px;
    }

    .slider-nav {
        display: none;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
    text-align: center;
}

.section-title-wrapper {
    margin-bottom: 60px;
}

.gallery-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gallery-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-more {
    position: relative;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-gallery-more {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    transition: var(--transition);
}

.btn-gallery-more:hover {
    background: var(--white);
    color: #000;
}

@media (max-width: 930px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Consultation Section */
.consultation-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fff5f2 0%, #ffe8e2 100%);
    position: relative;
    overflow: hidden;
}

/* Optional: Add a subtle tool watermark if you have the asset, otherwise CSS pattern */
.consultation-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 4%;
    width: 300px;
    height: 300px;
    background: url('../assets/tools-pattern.svg') center/contain no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.consult-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.consult-title .highlight {
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.05), -1px -1px 0 rgba(0, 0, 0, 0.1), 1px -1px 0 rgba(0, 0, 0, 0.1), -1px 1px 0 rgba(0, 0, 0, 0.1), 1px 1px 0 rgba(0, 0, 0, 0.1);
    -webkit-text-fill-color: white;
}

.consult-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
}

.consultation-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    font-family: inherit;
    font-size: 1rem;
    color: #1a1a1a;
    background: transparent;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #1a1a1a;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    background: var(--white);
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-submit:hover {
    background: #1a1a1a;
    color: var(--white);
}

@media (max-width: 1024px) {
    .consultation-grid {
        gap: 50px;
    }

    .consult-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .consultation-card {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .consult-title {
        font-size: 2.2rem;
    }
}

/* Footer Section */
.main-footer {
    position: relative;
    padding-top: 30px;
}

.footer-wave {
    width: 100%;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content-bg {
    background: radial-gradient(circle at 120% 50%, rgba(255, 77, 0, 0.08) 0%, rgba(2, 12, 20, 0) 50%), #020c14;
    color: var(--white);
    padding: 120px 0 20px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.mission-text {
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.7;
    max-width: 800px;
}

.footer-main-row {
    display: flex;
    gap: 80px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-group-left {
    flex: 1.6;
}

.footer-group-right {
    flex: 1.2;
    display: flex;
    gap: 60px;
    padding-top: 5px;
}

.footer-info-subgrid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}





.footer-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.9;
}

.hours-list {
    list-style: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-list li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.hours-list strong {
    font-weight: 800;
}

/* Service Areas Col */
.areas-content {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.areas-map {
    width: 200px;
    aspect-ratio: 16/9;
}

.areas-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.areas-list {
    list-style: none;
    font-size: 0.95rem;
    font-weight: 800;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 10px 20px;
}

.areas-list li {
    margin-bottom: 0;
}

/* Trust Logos */
.trust-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 5px;
    align-items: flex-start;
}

.yelp-logo,
.bbb-logo {
    height: 36px;
    width: auto;
    max-width: 160px;
    display: block;
    object-fit: contain;
}

/* Contact Col */
.contact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    flex-grow: 0;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.icon-box {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: #020c14;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-text {
    font-size: 0.9rem;
    line-height: 1.4;
}

.item-text strong {
    display: block;
    font-weight: 800;
    margin-bottom: 2px;
    opacity: 0.9;
}

.item-text span,
.item-text a {
    display: block;
    font-weight: 400;
    opacity: 0.8;
}

.item-text a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Copyright Bar */
.copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    padding: 40px 0 0;
    text-align: center;
}

.copyright-bar p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 600;
}

/* Footer Responsive Styles */
@media (max-width: 1024px) {
    .footer-wrapper {
        padding: 0 30px;
    }

    .footer-main-row {
        gap: 50px;
    }

    .footer-group-right {
        gap: 40px;
    }

    .footer-info-subgrid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-content-bg {
        padding: 80px 0 20px;
    }

    .footer-wrapper {
        padding: 0 20px;
    }

    .footer-main-row {
        flex-direction: column;
        gap: 40px;
    }

    .footer-group-left,
    .footer-group-right {
        flex: 1;
    }

    .footer-info-subgrid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-group-right {
        flex-direction: column;
        gap: 40px;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .areas-content {
        flex-direction: column;
        gap: 20px;
    }

    .areas-map {
        width: 100%;
        max-width: 300px;
    }

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

    .trust-logos {
        flex-direction: row;
        gap: 30px;
    }

    .contact-header h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content-bg {
        padding: 60px 0 20px;
    }

    .footer-top {
        margin-bottom: 30px;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .mission-text {
        font-size: 0.85rem;
    }

    .footer-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .hours-list,
    .areas-list {
        font-size: 0.85rem;
    }

    .areas-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 8px;
    }

    .areas-map {
        max-width: 100%;
    }

    .trust-logos {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .yelp-logo,
    .bbb-logo {
        height: 30px;
        max-width: 140px;
    }

    .contact-item {
        gap: 15px;
    }

    .icon-box {
        width: 28px;
        height: 28px;
    }

    .item-text {
        font-size: 0.85rem;
    }

    .copyright-bar {
        padding: 30px 0 0;
    }

    .copyright-bar p {
        font-size: 0.75rem;
        line-height: 1.5;
    }
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

/* About Hero */
.about-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.about-hero .hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.about-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -2px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: #ff4d00;
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs .current {
    color: #ff4d00;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background: var(--white);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.sub-title {
    display: block;
    color: #ff4d00;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.philosophy-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.stats-mini {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #888;
}

/* Image Collage */
.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}

.collage-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.collage-item.large {
    grid-row: span 2;
}

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

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

/* Objectives Section */
.objectives-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-title-centered {
    text-align: center;
    margin-bottom: 70px;
}

.section-title-centered h2 {
    font-size: 3rem;
    font-weight: 800;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.objective-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    transition: var(--transition);
    border: 1px solid #eee;
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: #ff4d00;
}

.obj-icon {
    width: 60px;
    height: 60px;
    background: #fff0eb;
    color: #ff4d00;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.obj-icon svg {
    width: 30px;
    height: 30px;
}

.objective-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.objective-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    font-size: 1.1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: var(--transition);
}

.faq-question i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-item.active {
    border-color: #ff4d00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.active .faq-question {
    color: #ff4d00;
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

/* About Responsiveness */
@media (max-width: 1024px) {
    .about-hero-content h1 {
        font-size: 3.5rem;
    }

    .philosophy-grid {
        gap: 60px;
    }

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

@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-mini {
        justify-content: center;
    }

    .image-collage {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 35vh;
        min-height: 300px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .philosophy-text h2,
    .section-title-centered h2,
    .faq-header h2 {
        font-size: 2.2rem;
    }

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

    .image-collage {
        grid-template-rows: repeat(2, 200px);
    }
}

/* Expertise Section Styles */
.expertise-section {
    padding: 100px 0;
    background: #ffffff;
}

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

.expertise-card {
    padding: 40px 30px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    transition: all 0.4s ease;
    text-align: center;
}

.expertise-card:hover {
    background: #ffffff;
    border-color: #ff4d00;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.exp-icon {
    width: 70px;
    height: 70px;
    background: #fdf2ee;
    color: #ff4d00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.expertise-card:hover .exp-icon {
    background: #ff4d00;
    color: #ffffff;
    transform: rotateY(180deg);
}

.exp-icon svg {
    width: 32px;
    height: 32px;
}

.expertise-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.expertise-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* ==========================================================================
   Contact Page Styles (Carbon Copy)
   ========================================================================== */

.contact-section-dark {
    background: #000000;
    color: #ffffff;
    padding: 120px 0;
}

.contact-grid-carbon {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-start;
}

.connect-label {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.main-title-carbon {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.contact-links-row {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.link-item a {
    color: inherit;
    text-decoration: none;
}

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

.icon-circle {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle.email-icon {
    width: 60px;
    height: 60px;
    background: #D9D9D9;
    color: #000000;
    border-radius: 50%;
}

.icon-circle svg {
    width: 28px;
    height: 28px;
}

.icon-circle.email-icon svg {
    width: 32px;
    height: 32px;
}

.hours-box-carbon {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 40px;
    max-width: 480px;
}

.hours-box-carbon h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.hours-box-carbon p {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    opacity: 0.95;
}

/* Carbon Form Styles */
.contact-form-carbon {
    width: 100%;
}

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

#carbon-form input,
#carbon-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 20px 25px;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    border-radius: 2px;
}

#carbon-form textarea {
    margin-bottom: 30px;
    resize: none;
}

#carbon-form input::placeholder,
#carbon-form textarea::placeholder {
    color: #ffffff;
    opacity: 0.8;
}

.btn-send-carbon {
    width: 100%;
    background: #D9D9D9;
    color: #000000;
    border: none;
    padding: 22px;
    font-size: 1.6rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-send-carbon:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Carbon Copy */
@media (max-width: 1200px) {
    .contact-grid-carbon {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .contact-grid-carbon {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hours-box-carbon {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-title-carbon {
        font-size: 1.8rem;
    }

    .contact-links-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

/* ==========================================================================
   Gallery Page Styles (Carbon Copy)
   ========================================================================== */

.gallery-hero {
    padding: 120px 0 60px;
    background: #ffffff;
    text-align: center;
}

.gallery-banner-wrapper {
    display: flex;
    justify-content: center;
}

.gallery-banner {
    background: #FF9100;
    padding: 15px 80px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(255, 145, 0, 0.2);
}

.gallery-banner h1 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-transform: capitalize;
}

/* Gallery Content */
.gallery-content {
    background: #ffffff;
    padding: 0 0 120px;
}

.gallery-project {
    margin-bottom: 100px;
}

.gallery-project:last-child {
    margin-bottom: 0;
}

.project-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: left;
}

/* Asymmetrical Grid Wrapper */
.gallery-grid-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.gallery-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

/* Left side (3-Image Layout) */
.grid-left-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 320px;
    gap: 20px;
}

.grid-item.img-wide {
    grid-column: span 2;
}

/* Right side (Large Vertical) */
.grid-right-side {
    height: 620px;
    /* Matches 280 + 320 + 20 gap */
}

.grid-item {
    overflow: hidden;
    border-radius: 4px;
    background: #f4f4f4;
    height: 100%;
}

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

.grid-item.large {
    height: 100%;
}

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

/* Navigation Buttons */
.gallery-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
    background: #FF9100;
    transform: scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
}

/* Project CTA */
.project-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.btn-learn-more {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: #1a1a1a;
    color: #ffffff;
}

/* Gallery Responsiveness */
@media (max-width: 1200px) {
    .gallery-grid-wrapper {
        gap: 15px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .grid-left-side {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-nav {
        position: absolute;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
    }

    .gallery-nav.prev {
        left: -10px;
    }

    .gallery-nav.next {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .gallery-hero {
        padding: 100px 0 40px;
    }

    .gallery-banner {
        padding: 12px 50px;
    }

    .gallery-banner h1 {
        font-size: 1.8rem;
    }

    .project-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .grid-left-side {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-banner {
        padding: 10px 30px;
        width: 100%;
    }
}

.subpage-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
}

.contact-hero {
    background: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}

.subpage-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

/* Contact Grid */
.contact-section {
    padding: 120px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-panel h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-info-panel p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    transition: var(--transition);
}

.info-card:hover {
    background: #ffffff;
    border-color: #ff4d00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #fdf2ee;
    color: #ff4d00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.info-content p {
    font-size: 1rem;
    margin-bottom: 0;
    color: #555;
    font-weight: 500;
}

.working-hours {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.working-hours h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
}

/* Contact Form Panel */
.contact-form-panel {
    background: #fcfcfc;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.03);
}

.trikore-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.trikore-form input,
.trikore-form select,
.trikore-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    color: #333;
    transition: var(--transition);
}

.trikore-form input:focus,
.trikore-form select:focus,
.trikore-form textarea:focus {
    outline: none;
    border-color: #ff4d00;
    box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.05);
}

.btn-orange {
    background: #ff4d00;
    color: #ffffff;
    font-weight: 700;
    padding: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 1px;
}

.btn-orange:hover {
    background: #e64500;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.2);
}

.w-100 {
    width: 100%;
}

/* Map Section */
.map-section {
    line-height: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    background: #f4f4f4;
}

/* Contact Responsiveness */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-panel {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .subpage-hero-content h1 {
        font-size: 2.8rem;
    }

    .contact-info-panel h2 {
        font-size: 2.22rem;
    }

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

    .contact-section {
        padding: 80px 0;
    }
}


/* ==========================================================================
   Testimonials Page (v2 - Editorial Split)
   ========================================================================== */

.testimonials-editorial {
    padding: 120px 0;
    background: #ffffff;
}

.testimonials-editorial .split-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 100px;
    align-items: start;
}

/* Sidebar Styling */
.sidebar-sticky {
    position: sticky;
    top: 120px;
}

.editorial-tag {
    display: block;
    color: #ff4d00;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
}

.sidebar-content h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.sidebar-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.trust-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a1a;
}

.stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-orange-outline {
    display: inline-block;
    padding: 15px 35px;
    border: 2px solid #ff4d00;
    color: #ff4d00;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-orange-outline:hover {
    background: #ff4d00;
    color: #fff;
}

/* Quotes Feed Styling */
.quotes-feed {
    border-left: 1px solid #eee;
    padding-left: 40px;
}

.quote-item {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #f9f9f9;
}

.quote-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.quote-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rating-stars {
    color: #ffc107;
    font-size: 0.95rem;
}

.quote-date {
    font-size: 0.8rem;
    color: #ff4d00;
    font-weight: 700;
    text-transform: uppercase;
}

.main-quote {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    letter-spacing: -0.2px;
    position: relative;
}

.main-quote::before {
    content: '"';
    position: absolute;
    left: -25px;
    top: -5px;
    font-size: 2.5rem;
    color: rgba(255, 77, 0, 0.1);
    font-family: serif;
}

.quote-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.client-meta h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.client-meta span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Testimonials CTA Section */
.testimonials-cta {
    padding: 100px 0;
    background: #f9f9f9;
}

.cta-banner {
    background: #ff4d00;
    padding: 80px 100px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.cta-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .testimonials-editorial .split-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .sidebar-sticky {
        position: static;
    }

    .quotes-feed {
        border-left: none;
        padding-left: 0;
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .sidebar-content h2 {
        font-size: 2.8rem;
    }

    .main-quote {
        font-size: 1.6rem;
    }

    .quote-item {
        margin-bottom: 70px;
    }
}

/* Submit Review Section */
.submit-review-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #eee;
}

.review-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.editorial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.editorial-form .form-group {
    margin-bottom: 25px;
}

.editorial-form label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.editorial-form input,
.editorial-form select,
.editorial-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.editorial-form input:focus,
.editorial-form select:focus,
.editorial-form textarea:focus {
    outline: none;
    border-color: #ff4d00;
    background: #fff;
    box-shadow: 0 5px 15px rgba(255, 77, 0, 0.05);
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: none;
    margin-bottom: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover~label,
.star-rating-input input:checked~label {
    color: #ffc107;
}

.form-submit {
    text-align: center;
    margin-top: 20px;
}

.form-submit .btn {
    padding: 18px 50px;
    letter-spacing: 2px;
}

/* Text alignment utilities */
.text-center {
    text-align: center;
}

.text-orange {
    color: #ff4d00;
}

@media (max-width: 768px) {
    .editorial-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h2 {
        font-size: 2rem;
    }
}
