/* Critical Reset - Eliminate all gaps */
html,
body,
#root {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

/* Design Tokens */
:root {
    /* Colors */
    --gold: #C9A961;
    --gold-dark: #B8985A;
    --gold-light: #E5D4A3;
    --navy: #1a2332;
    --navy-light: #2a3442;
    --white: #ffffff;
    --cream: #fafafa;
    --gray: #f8f9fa;

    /* Spacing */
    --s1: 0.5rem;
    --s2: 1rem;
    --s3: 1.5rem;
    --s4: 2rem;
    --s5: 3rem;
    --s6: 4rem;

    /* Sizes */
    --max-width: 1200px;
    --radius: 8px;
    --header-h: 80px;

    /* Typography */
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;

    /* Shadows */
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Remove margins from all semantic elements */
section,
main,
header,
footer,
div {
    margin: 0;
}

/* Page Wrappers - Remove all margins/padding */
.page,
.home,
.services-page,
.gallery-page,
.testimonials-page,
.contact-page {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--s4);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--s3);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--s3);
}

p {
    margin-bottom: var(--s3);
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--navy);
}

/* Layout */
.page {
    min-height: 80vh;
    padding: var(--s6) var(--s3);
    max-width: 1200px;
    margin: 0 auto;
}

/* Utility Classes */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--s4);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--s1);
    padding: var(--s2) var(--s4);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

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

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

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

.btn-lg {
    padding: var(--s3) var(--s5);
    font-size: 1.125rem;
}

/* Header Styles */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e5e5;
    margin: 0 !important;
    margin-bottom: 0 !important;
    padding: 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    gap: 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo:hover {
    opacity: 0.85;
}

.logo-gold {
    color: var(--gold);
}

.logo-white {
    color: var(--gold);
}

.nav-desktop {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-desktop a {
    color: var(--navy);
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1.05rem;
    white-space: nowrap;
}

.nav-desktop a:hover {
    color: var(--gold);
}

.nav-desktop a.active {
    color: var(--gold);
}

.header-phone {
    background: var(--gold);
    color: var(--white);
    padding: 0.65rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-phone:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.phone-icon {
    font-size: 1rem;
}

.phone-number {
    font-weight: 700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}

.menu-icon {
    width: 25px;
    height: 3px;
    background: var(--navy);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
}

.nav-mobile.open {
    transform: translateY(0);
    opacity: 1;
    max-height: 600px;
}

.nav-mobile a {
    color: var(--navy);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e5e5;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.nav-mobile a:hover {
    color: var(--white);
    background: var(--gold);
}

.nav-mobile a.active {
    color: var(--gold);
    background: rgba(201, 169, 97, 0.1);
}

/* Phone button in mobile menu */
.nav-mobile .btn-mobile {
    margin: 1rem 1.5rem;
    padding: 1rem;
    text-align: center;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-mobile .btn-mobile:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.staging-title {
    align-self: center
}

/* Preview Access Gate */
.staging-auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--s6) var(--s3);
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95), rgba(14, 18, 26, 0.85));
    color: var(--white);
}

.staging-auth-card {
    width: min(600px, 100%);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: var(--s5) var(--s4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.staging-auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s2);
    margin-bottom: var(--s3);
}

.staging-auth-header h1 {
    color: var(--white);
    font-size: 1.75rem;
    margin: 0;
}

.staging-badge {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold-light);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.staging-message {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--s3);
    line-height: 1.6;
}

.staging-form {
    display: flex;
    flex-direction: column;
    gap: var(--s3);
    margin-bottom: var(--s3);
}

.staging-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--s1);
}

.staging-form label {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.staging-form input[type="password"] {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(12, 16, 24, 0.85);
    color: var(--white);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.staging-form input[type="password"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.3);
}

.staging-form input[type="password"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.staging-submit-btn {
    border: none;
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.staging-submit-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(201, 169, 97, 0.35);
}

.staging-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.staging-feedback,
.staging-lockout,
.staging-hint {
    margin: -0.25rem 0 0;
    font-size: 0.95rem;
}

.staging-feedback {
    color: #ffb3b3;
}

.staging-lockout {
    color: rgba(255, 255, 255, 0.7);
}

.staging-hint {
    color: rgba(255, 255, 255, 0.5);
}

.staging-help {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: var(--s2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.staging-help a {
    color: var(--gold-light);
    font-weight: 700;
}

@media (max-width: 600px) {
    .staging-auth-card {
        padding: var(--s4) var(--s3);
    }

    .staging-auth-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .staging-auth-card h1 {
        font-size: 1.5rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--navy);
    color: var(--white);
}

/* Footer CTA Section (lighter background) */
.footer-cta {
    padding: 5rem var(--s3);
    background: #2a3544;
    /* Lighter than navy */
    text-align: center;
    color: var(--white);
}

.footer-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.footer-cta .cta-phone {
    margin-bottom: 2.5rem;
}

.footer-cta .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.footer-cta .phone-link:hover {
    color: #b89850;
    transform: scale(1.02);
}

.footer-cta .phone-icon {
    font-size: 1.75rem;
}

.footer-cta .cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--s3);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-company {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
    padding: var(--s4) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--s2);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand-name {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--s1);
    letter-spacing: 0.5px;
}

.footer-brand-tagline {
    color: var(--gold-light);
    font-size: 1.125rem;
    margin: 0;
    font-weight: 400;
}

.footer-bottom {
    padding-inline: var(--s3);
    padding-bottom: var(--s3);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-bottom>div {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 70px - 400px);
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Hero Section */
.hero {
    background: var(--navy);
    color: var(--white);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-light);
    color: var(--navy);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: var(--s4);
}

.hero h1 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: var(--s3);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: var(--s4);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--s4);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.feature-check {
    color: var(--gold);
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: var(--s3);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--s4);
}

/* Section Badges */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--s5);
}

.section-badge {
    display: inline-block;
    padding: var(--s1) var(--s3);
    background: var(--gold-light);
    color: var(--navy);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--s3);
}

/* Services Grid */
.services-preview {
    padding: 4rem var(--s3);
    background: var(--white);
    text-align: center;
}

.services-preview h2 {
    text-align: center;
    margin-bottom: var(--s2);
    color: var(--navy);
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e5e5e5;
}

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

.service-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.service-card h3 {
    color: var(--navy);
    margin: 1.5rem 1.5rem var(--s2);
    font-size: 1.35rem;
}

.service-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.services-note {
    max-width: 800px;
    margin: 2rem auto;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-card p {
    color: #666;
    margin-bottom: var(--s4);
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-alt {
    background: var(--gray);
}


/* USPs Section */
.usps {
    padding: 4rem var(--s3);
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.usps h2 {
    text-align: center;
    margin-bottom: var(--s2);
    font-size: 2rem;
    color: var(--white);
}

.usps .section-intro {
    color: rgba(255, 255, 255, 0.9);
}

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

.usp-item {
    text-align: center;
}

.usp-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto var(--s3);
}

.usp-item h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--s2);
    font-weight: 600;
}

.usp-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Free Quotations CTA */
.quotations-cta {
    background: var(--navy);
    text-align: center;
}

.quotations-heading {
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: var(--s2);
}

.quotations-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 4rem var(--s3);
    background: var(--white);
}

.gallery-preview h2 {
    text-align: center;
    margin-bottom: var(--s2);
    font-size: 2rem;
    color: var(--navy);
}

.section-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
}

.cta-center {
    text-align: center;
}

/* Testimonials Preview Section */
.testimonials-preview {
    padding: 4rem var(--s3);
    background: var(--white);
    text-align: center;
}

.testimonials-preview h2 {
    text-align: center;
    margin-bottom: var(--s2);
    font-size: 2rem;
    color: var(--navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 3px solid var(--gold);
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--s4);
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    color: var(--navy);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    font-size: 0.9rem;
    color: var(--gold);
}

/* Coverage Area Section */
.coverage-area {
    padding: 4rem var(--s3);
    background: var(--white);
}

.coverage-area h2 {
    text-align: center;
    margin-bottom: var(--s2);
    font-size: 2rem;
    color: var(--navy);
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.coverage-text h3 {
    color: var(--navy);
    margin-bottom: var(--s3);
    font-size: 1.35rem;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin-bottom: var(--s4);
}

.coverage-list li {
    color: #666;
    padding: 0.5rem 0;
    font-size: 1.05rem;
}

.coverage-note {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: var(--s3);
}

.coverage-map {
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray) 100%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.map-placeholder span {
    font-size: 3rem;
    margin-bottom: var(--s2);
}

.map-placeholder p {
    color: #666;
    font-weight: 600;
    text-align: center;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem var(--s3);
    background: var(--navy);
    text-align: center;
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone {
    margin-bottom: 2.5rem;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #b89850;
    transform: scale(1.02);
}

.phone-icon {
    font-size: 1.75rem;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* Remove old gallery and coverage sections */
.gallery-preview,
.coverage-area {
    display: none;
}

/* Tablet/Medium screens - switch to hamburger menu before elements start stacking */
@media (max-width: 1100px) {
    .nav-desktop {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-mobile {
        display: flex !important;
    }

    /* Hide desktop phone button on mobile - call button is in mobile menu instead */
    .header-phone-desktop {
        display: none !important;
    }

    .header-container {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }

    .logo {
        font-size: 1.35rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {

    /* Center button text on mobile */
    .btn {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 1rem var(--s3);
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero {
        padding: 3rem var(--s3) 2.5rem;
    }

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

    .hero p {
        font-size: 1rem;
    }

    /* Keep hero features horizontal on mobile */
    .hero-features {
        gap: 1rem;
        justify-content: space-around;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: var(--s3);
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .services-preview {
        padding: 3rem var(--s3);
    }

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

    .usps {
        padding: 3rem var(--s3);
    }

    .usps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .quotations-cta {
        padding: 3rem var(--s3);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .footer-cta {
        padding: 3rem var(--s3);
    }

    .footer-cta h2 {
        font-size: 1.75rem;
    }

    .footer-cta .phone-link {
        font-size: 1.5rem;
    }

    .footer-cta .cta-buttons {
        flex-direction: column;
    }

    .footer-cta .cta-buttons .btn {
        width: 100%;
    }

    .final-cta {
        padding: 3rem var(--s3);
    }

    .final-cta h2 {
        font-size: 1.75rem;
    }

    .phone-link {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    /* Keep footer in 3 columns on mobile */
    .footer-sections {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .footer-section h3 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-section ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

    .not-found-grid {
        grid-template-columns: 1fr;
    }

    .not-found-card {
        min-height: 120px;
        padding: var(--s4);
    }

    .not-found-card h3 {
        font-size: 1.25rem;
    }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-page {
    background: var(--white);
}

.services-detail {
    padding: 4rem 2rem;
    background: #ffffff;
    width: 100%;
}

.services-detail .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-detail .badge {
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.services-detail h2 {
    font-size: 1.85rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
    text-align: center;
    font-weight: 700;
}

.services-detail .section-subtitle {
    text-align: center;
    color: #666666;
    font-size: 1rem;
    margin-bottom: 3.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #C9A961;
}

.service-detail-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}

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

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

.service-detail-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-content h3 {
    font-size: 1.75rem;
    color: #1a2332;
    margin-bottom: 0.rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-detail-content>p {
    color: #666666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    flex-grow: 0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    padding: 0.2rem 0;
    color: #333333;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.25;
}

.service-features .checkmark {
    color: #C9A961;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ========================================
   GALLERY PAGE STYLES
   ======================================== */

.gallery-page {
    background: var(--white);
}

.featured-project {
    padding: 5rem var(--s3);
    background: var(--white);
}

.featured-project h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
    text-align: center;
}

.featured-project .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel Container */
.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Main Carousel */
.carousel-main {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-image {
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.carousel-image:hover img {
    transform: scale(1.02);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95) 0%, rgba(26, 35, 50, 0.7) 60%, transparent 100%);
    padding: 4rem 3rem 2.5rem;
    color: var(--white);
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.carousel-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.carousel-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 700;
}

.carousel-overlay p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--navy);
}

.carousel-btn-prev {
    left: 2rem;
}

.carousel-btn-next {
    right: 2rem;
}

/* Carousel Thumbnails */
.carousel-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-thumbnail {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-thumbnail:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

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

.carousel-thumbnail:hover img {
    transform: scale(1.1);
}

/* Before/After Comparison Styles */
.before-after-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 0;
    animation: fadeIn 0.6s ease-in-out;
}

/* Single Image Styles */
.single-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.6s ease-in-out;
}

.single-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.single-image-container:hover .single-gallery-image {
    transform: scale(1.02);
}

.before-image-wrapper,
.after-image-wrapper {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
}

.before-image-wrapper {
    border-right: 3px solid var(--gold);
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.before-after-container:hover .comparison-image {
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    top: 2rem;
    z-index: 10;
    background: rgba(26, 35, 50, 0.9);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.before-label {
    left: 2rem;
    border-left: 4px solid #e74c3c;
}

.after-label {
    right: 2rem;
    border-left: 4px solid #27ae60;
}

.thumbnail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(201, 169, 97, 0.9);
    color: var(--navy);
    padding: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

/* Loading and Error States */
.loading,
.no-images,
.error-message {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--navy);
}

.loading {
    font-size: 1.2rem;
    color: var(--gold);
}

.error-message {
    background: #ffe5e5;
    border: 2px solid #e74c3c;
    border-radius: 8px;
    color: #c0392b;
}

/* Legacy styles for backwards compatibility */
.project-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.main-project-image {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.main-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.95), transparent);
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.project-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.project-overlay h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-overlay p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.thumbnail:first-child {
    border-color: var(--gold);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-grid {
    padding: 5rem var(--s3);
    background: var(--gray);
}

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

.gallery-item {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-info {
    padding: 1.5rem;
}

.gallery-item-info h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-item-info p {
    color: #666;
    font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS PAGE STYLES
   ======================================== */

.testimonials-page {
    background: var(--white);
}

.testimonials-content {
    padding: 5rem var(--s3);
    background: var(--white);
}

.testimonials-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
    text-align: center;
}

.testimonials-content .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-full {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-full:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.testimonial-quote p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-page {
    background: var(--white);
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: var(--s4);
    margin: var(--s4);
    align-items: start;
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--s4);
    box-shadow: var(--shadow);
}

.contact-info h2 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--s3);
    margin: var(--s1);
    padding: var(--s1);
    border-bottom: 1px solid #e5e5e5;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    color: var(--navy);
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    color: var(--black);
    margin-bottom: 0;
}

.contact-item a {
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #b89850;
}

.contact-map {
    margin-top: var(--s5);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: var(--white);
}

.contact-form .btn {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

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

.btn-block {
    width: 100%;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.6;
}

/* === 404 Not Found Page === */
.not-found-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s4);
    margin-top: var(--s5);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.not-found-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--s5);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

.not-found-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
    text-decoration: none;
}

.not-found-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--s2);
    transition: color 0.3s ease;
}

.not-found-card:hover h3 {
    color: var(--gold);
}

.not-found-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ======================================== */

@media (max-width: 768px) {

    .services-hero h1,
    .gallery-hero h1,
    .testimonials-hero h1,
    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .services-hero,
    .gallery-hero,
    .testimonials-hero,
    .contact-hero {
        padding: 3rem 1.5rem 2.5rem;
    }

    .services-detail {
        padding: 3rem 1.5rem;
    }

    .services-detail h2 {
        font-size: 1.5rem;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-image {
        height: 220px;
    }

    .service-detail-content {
        padding: 1.5rem;
    }

    .service-detail-content h3 {
        font-size: 1.5rem;
    }

    /* Carousel Responsive */
    .carousel-main {
        height: 400px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-btn-prev {
        left: 1rem;
    }

    .carousel-btn-next {
        right: 1rem;
    }

    .carousel-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .carousel-thumbnail {
        height: 100px;
    }

    .carousel-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }

    .carousel-overlay h3 {
        font-size: 1.5rem;
    }

    .carousel-overlay p {
        font-size: 0.95rem;
    }

    /* Before/After Mobile Styles */
    .before-after-container {
        flex-direction: column;
    }

    .before-image-wrapper {
        border-right: none;
        border-bottom: 3px solid var(--gold);
        height: 50%;
    }

    .after-image-wrapper {
        height: 50%;
    }

    .image-label {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .before-label {
        left: 1rem;
        top: 1rem;
    }

    .after-label {
        right: 1rem;
        top: 1rem;
    }

    /* Legacy Thumbnails */
    .project-thumbnails {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .main-project-image {
        height: 300px;
    }

    .thumbnail {
        height: 150px;
    }

    .gallery-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }

    .contact-item {
        align-items: start;
        gap: 1rem;
    }

    .contact-info {
        padding: var(--s4);
    }

    .not-found-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .carousel-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .carousel-main {
        height: 500px;
    }

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

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

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

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

    .contact-grid {
        align-items: start;
    }
}

/* === Utilities === */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-gold {
    color: var(--gold);
}

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

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

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