/* Base Styles */
:root {
    --primary-color: #22336b;
    --secondary-color: #4f5fc1;
    --accent-color: #7c3aed;
    --footer-gradient: linear-gradient(120deg, #22336b 0%, #4f5fc1 60%, #7c3aed 100%);
    --text-dark: #1e293b;
    --text-body: #374151;
    --text-light: #a3a3a3;
    --white: #fff;
    --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease
    }
body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-body);
    background: #1a2240;
    margin: 0;
    line-height: 1.6
    }
@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
        } to {
        opacity: 1;
        transform: translateY(0);
        }
    }
/* Utility Classes */
.section-padding {
    padding: 6rem 2rem
    }
/* Header Styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 34, 64, 0.9);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    animation: headerFadeIn 450ms ease-out both
    }
.logo-banner {
    padding: 0 2rem;
    display: flex;
    align-items: center
    }
.company-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain
    }
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center
    }
.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center
    }
.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease
    }
.nav-link:hover, .nav-link.active {
    color: #a21caf;
    transform: translatey(-2px)
    }
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #e5e7eb;
    padding: 0.5rem
    }
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
    }
/* Unified Button Styles - Matching Navbar */
.header-estimate, .header-call, .cta-btn.primary, .cta-btn.secondary, .primary-btn, .service-btn.emergency {
    background: linear-gradient(135deg, var(--accent-color) 0%, #a21caf 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem
    }
.header-estimate:hover, .header-call:hover, .cta-btn.primary:hover, .cta-btn.secondary:hover, .primary-btn:hover, .service-btn.emergency:hover {
    transform: translatey(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none
    }
/* Call Now buttons get green styling */
.header-call, .cta-btn.secondary, .service-btn.emergency {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3)
    }
.header-call:hover, .cta-btn.secondary:hover, .service-btn.emergency:hover {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4)
    }
/* Hero Section */
.hero-section {
    padding: 8rem 2rem 4rem;
    background: none;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden
    }
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    z-index: 1
    }
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
    }
.hero-bg-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden
    }
.hero-bg-slideshow::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
    pointer-events: none
    }
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    filter: brightness(0.7) saturate(0.9)
    }
.hero-bg.active {
    opacity: 1
    }
.hero-bg.portrait {
    object-fit: contain;
    background: #000
    }
.hero-bg.contain {
    object-fit: contain;
    background: #000
    }
.hero-bg.cover {
    object-fit: cover
    }
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700
    }
.hero-content h1 span {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5)
    }
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6
    }
/* Page Hero Sections */
.materials-hero, .services-hero, .specials-hero, .contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/optimized/ownerwork.jpeg);
    background-size: cover;
    background-position: center 30%;
    color: white;
    text-align: center;
    padding: 8rem 2rem 4rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.18)
    }
/* Home: standard hero below header */
.materials-hero h1, .services-hero h1, .specials-hero h1, .contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5)
    }
.materials-hero h1 span, .services-hero h1 span, .specials-hero h1 span, .contact-hero h1 span {
    color: #fbbf24;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5)
    }
.materials-hero p, .services-hero p, .specials-hero p, .contact-hero p {
    font-size: 1.4rem;
    color: white;
    max-width: 800px;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5)
    }
/* Contact Hero Section */
/* Services Section */
.services-preview {
    background: #1a2240;
    padding: 4rem 2rem
    }
.section-title {
    text-align: center;
    color: #e5e7eb;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3)
    }
.section-title span {
    color: #a21caf;
    position: relative
    }
.section-title span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a21caf;
    box-shadow: 0 2px 8px rgba(162, 28, 175, 0.4)
    }
.section-subtitle {
    text-align: center;
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
    }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 6rem auto 0
    }
.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08)
    }
.service-card:hover {
    transform: translatey(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12)
    }
.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
    }
.service-card i {
    font-size: 2.2rem;
    color: #a21caf
    }
.service-card h2, .service-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0 0 0.75rem 0;
    font-weight: 700
    }
.service-card p {
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.6
    }
/* Service features list */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem
    }
.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-body)
    }
.service-features li i {
    color: #10b981
    }
.service-link {
    color: #a21caf;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease
    }
.service-link:hover {
    color: #e11d48;
    transform: translatex(5px)
    }
.service-link i {
    font-size: 1rem;
    margin: 0;
    transition: transform 0.3s ease
    }
.service-link:hover i {
    transform: translatex(5px)
    }
/* Legacy slideshow styles removed (.slideshow-container, .mySlides) */
.image-gallery {
    max-width: 1200px;
    margin: 2rem auto 4rem;
    padding: 0 1rem
    }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem
    }
.gallery-grid img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15)
    }
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none
    }
.next {
    right: 0;
    border-radius: 3px 0 0 3px
    }
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8)
    }
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0
    }
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease
    }
.dot.active, .dot:hover {
    background-color: #717171
    }
/* Portrait-friendly behavior: ensure tall images fit nicely */
.gallery-grid img.portrait {
    object-fit: contain;
    background: rgba(0, 0, 0, 0.1)
    }
.fade {
    animation-name: fade;
    animation-duration: 1.5s
    }
@keyframes fade {
    from {
        opacity: .4
        } to {
        opacity: 1
        }
    }
/* Slideshow responsive sizing */
@media (max-width: 900px) {
    .gallery-grid img {
        max-height: 360px
        }
    }
@media (max-width: 600px) {
    .gallery-grid img {
        max-height: 260px
        }
    }
/* Recent Jobs wrapper */
.recent-jobs {
    max-width: 1200px;
    margin: 3.5rem auto 4rem;
    padding: 0 1rem
    }
.recent-jobs .section-title {
    margin-bottom: 1.5rem
    }
/* Services note under grid */
.services-note {
    max-width: 1000px;
    margin: 2rem auto 0;
    padding: 1rem 1.25rem;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    color: var(--text-dark);
    font-weight: 600
    }
.services-note a {
    color: #a21caf;
    text-decoration: underline;
    font-weight: 700
    }
.services-note a:hover {
    color: #e11d48;
    text-decoration: none
    }
/* Projects Section */
.projects-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/optimized/finished03.jpeg);
    background-size: cover;
    background-position: center;
    color: #e5e7eb;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.18);
    margin: 3rem auto;
    max-width: 1200px;
    padding: 2rem
    }
/* Specials - placeholder styles */
.offers-grid {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem
    }
@media (min-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr
        }
}
.no-offers-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08)
    }
.no-offers-card i {
    font-size: 2.5rem;
    color: #a21caf;
    margin-bottom: 1rem
    }
.no-offers-card h2 {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark)
    }
.no-offers-card p {
    margin: 0 auto 1.25rem auto;
    color: var(--text-body);
    max-width: 700px
    }
.no-offers-link {
    display: inline-block;
    color: #a21caf;
    font-weight: 700;
    text-decoration: underline
    }
.no-offers-link:hover {
    color: #e11d48;
    text-decoration: none
    }
.projects-section.light-bg {
    background: #f8fafc;
    color: #0f172a;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08)
    }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem
    }
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease
    }
.project-item:hover {
    transform: translatey(-5px)
    }
.project-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block
    }
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
    color: #fff
    }
.project-overlay h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem
    }
.project-overlay p {
    margin: 0 0 1rem 0;
    font-size: 1rem
    }
.project-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.3s ease
    }
.project-link:hover {
    background: rgba(255, 255, 255, 0.3)
    }
/* Service Area Section */
.service-area-flex {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    flex-wrap: wrap
    }
.service-map-img .arkansas-map {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15)
    }
@media (min-width: 900px) {
    .service-area-flex {
        flex-wrap: nowrap;
        align-items: stretch
        }
    .service-map-img {
        flex: 1 1 55%
        }
    .service-cities-list {
        flex: 1 1 45%
        }
}
.service-area-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #e5e7eb !important;
    letter-spacing: -1px;
    margin-bottom: 2rem;
    text-align: center
    }
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden
    }
/* Extra spacing above Free Estimates CTA */
.cta-section.section-padding {
    margin-top: 3rem
    }
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 34, 64, 0.9) 0%, rgba(124, 58, 237, 0.8) 100%);
    z-index: 1
    }
.cta-section > * {
    position: relative;
    z-index: 2
    }
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3)
    }
.cta-section h2 span {
    color: #fbbf24;
    position: relative
    }
.cta-section h2 span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fbbf24;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4)
    }
.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6
    }
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
    }
/* Enhanced Footer */
.animated-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden
    }
.animated-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 34, 64, 0.95) 0%, rgba(124, 58, 237, 0.9) 100%);
    z-index: 1
    }
.footer-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem 2rem;
    max-width: 1400px;
    margin: 0 auto
    }
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem
    }
.footer-links h3, .footer-contact h3, .footer-social h3 {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative
    }
.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px
    }
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0
    }
.footer-links li {
    margin-bottom: 0.75rem
    }
.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-radius: 8px;
    padding-left: 0.5rem
    }
.footer-links a:hover {
    color: #fbbf24;
    background: rgba(255, 255, 255, 0.1);
    transform: translatex(5px)
    }
.footer-links a i {
    color: #fbbf24;
    font-size: 0.8rem;
    transition: transform 0.3s ease
    }
.footer-links a:hover i {
    transform: translatex(3px)
    }
.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease
    }
.footer-contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translatex(5px)
    }
.footer-contact .contact-item i {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0
    }
.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease
    }
.footer-contact .contact-item a:hover {
    color: #fbbf24;
    text-decoration: underline
    }
.footer-contact .contact-item span {
    color: rgba(255, 255, 255, 0.9)
    }
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem
    }
.hours-info strong {
    color: #fbbf24;
    font-weight: 600
    }
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem
    }
.social-icon.fb {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2)
    }
.social-icon.fb:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translatey(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none
    }
.social-icon.fb .fb-circle {
    width: 40px;
    height: 40px;
    background: #1877f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4)
    }
.social-icon.fb .fb-f {
    font-family: Arial, sans-serif
    }
.social-icon.fb .fb-label {
    font-weight: 600;
    font-size: 1rem
    }
.footer-logo {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease
    }
.footer-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translatey(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
    }
.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    margin-bottom: 1rem
    }
.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 0.5rem
    }
.footer-logo-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500
    }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    margin-top: 2rem
    }
.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem
    }
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.5rem
        }
    .cta-buttons {
        flex-direction: column
        }
    .hamburger-menu {
        display: block
        }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        padding: 1rem 2rem 2rem 2rem;
        z-index: 1200;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
        display: none !important
        }
    .nav-links.active {
        display: flex !important
        }
    .header-actions {
        display: none
        }
    .nav-links .header-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem
        }
    .lang-menu {
        right: auto;
        left: 0
        }
    .project-item img {
        height: 200px
        }
    .footer-content {
        padding: 2rem 1rem
        }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
        }
    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 1rem
        }
    /* Trust Badges Mobile */
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem
        }
    .badge {
        min-width: auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto
        }
    }
.cities-panel {
    background: rgba(34, 51, 107, 0.85);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(34, 51, 107, 0.12);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 1.5rem
    }
.cities-panel h3 {
    color: #38bdf8;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em
    }
.service-cities-ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem
    }
.service-cities-ul li {
    font-size: 1.1rem;
    color: #e5e7eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.4rem 0
    }
.service-cities-ul li i {
    color: #a21caf;
    font-size: 1.1rem;
    margin-right: 0.2rem
    }
.rectangle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 2rem 0 0 0;
    padding: 1.2rem 2rem;
    background: #a21caf;
    border: none;
    border-radius: 8px;
    color: #cbd5e1 !important;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
    outline: none;
    text-shadow: none;
    letter-spacing: 0.01em
    }
.rectangle-btn:hover {
    background: #e11d48;
    color: #cbd5e1 !important
    }

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem
    }
.material-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    color: #e5e7eb;
    text-decoration: none
    }
.material-card:hover {
    transform: translatey(-8px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3)
    }
.material-image {
    height: 250px;
    overflow: hidden
    }
.material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease
    }
.material-card:hover .material-image img {
    transform: scale(1.05)
    }
.material-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1
    }
.material-content h2 {
    font-size: 2rem;
    color: #a21caf;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2)
    }
.material-description {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6
    }
.material-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0
    }
.material-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #cbd5e1
    }
.material-features li i {
    color: #a21caf;
    font-size: 1.2rem
    }
.material-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
    /* Push specs to the bottom */
    }
.spec {
    background: rgba(162, 28, 175, 0.2);
    color: #a21caf;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(162, 28, 175, 0.3)
    }
.spec i {
    font-size: 1rem;
    color: #a21caf
    }
/* Enhanced Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 6rem 2rem;
    position: relative
    }
.comparison-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 34, 64, 0.95) 0%, rgba(124, 58, 237, 0.9) 100%);
    z-index: 1
    }
.comparison-section > * {
    position: relative;
    z-index: 2
    }
.comparison-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: white
    }
.comparison-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
    }
.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem
    }
.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    overflow-x: auto
    }
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px
    }
.comparison-table th {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    position: sticky;
    top: 0;
    z-index: 10
    }
.comparison-table th:first-child {
    border-radius: 20px 0 0 0
    }
.comparison-table th:last-child {
    border-radius: 0 20px 0 0
    }
.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top
    }
.comparison-table tr:last-child td {
    border-bottom: none
    }
.comparison-table tbody tr:nth-child(odd) {
    background: #f8fafc
    }
.comparison-table tbody tr:hover {
    background: #f1f5f9;
    transition: background 0.3s ease
    }
.factor-name {
    font-weight: 600;
    color: var(--text-dark);
    background: #f8fafc;
    border-right: 2px solid #e2e8f0
    }
.asphalt-data {
    color: var(--text-body);
    line-height: 1.5
    }
.metal-data {
    color: var(--text-body);
    line-height: 1.5
    }
.asphalt-data small, .metal-data small {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
    display: block;
    margin-top: 0.25rem
    }
/* Comparison Insights */
.comparison-insights {
    display: flex;
    flex-direction: column;
    gap: 3rem
    }
.comparison-insights h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3)
    }
.insight-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
    }
.insight-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent
    }
.insight-card:hover {
    transform: translatey(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15)
    }
.asphalt-insight {
    border-color: #3b82f6
    }
.metal-insight {
    border-color: #f59e0b
    }
.insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem
    }
.insight-header i {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white
    }
.asphalt-insight .insight-header i {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%)
    }
.metal-insight .insight-header i {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%)
    }
.insight-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0
    }
.insight-card ul {
    list-style: none;
    padding: 0;
    margin: 0
    }
.insight-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-body);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem
    }
.insight-card li:last-child {
    border-bottom: none
    }
.insight-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.75rem;
    font-weight: bold;
    color: #10b981
    }
/* Comparison CTA */
.comparison-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden
    }
.comparison-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 34, 64, 0.9) 0%, rgba(124, 58, 237, 0.8) 100%);
    z-index: 1
    }
.comparison-cta > * {
    position: relative;
    z-index: 2
    }
.comparison-cta h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fbbf24
    }
.comparison-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6
    }
.comparison-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
    }
/* Color Options Section */
.color-options-section {
    padding: 4rem 2rem;
    background: #1a2240;
    /* Consistent dark background */
    color: #e5e7eb
    }
.color-options-section .section-title {
    color: #e5e7eb;
    margin-bottom: 2.5rem
    }
.color-categories {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto
    }
.color-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15)
    }
.color-category h3 {
    font-size: 1.8rem;
    color: #a21caf;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2)
    }
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    justify-content: center
    }
.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 1rem 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.08)
    }
.color-option:hover {
    transform: translatey(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.06)
    }
.color-option img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.8rem;
    border: 2px solid #a21caf;
    /* Highlight border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2)
    }
.color-option span {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500
    }
html {
    scroll-behavior: smooth
    }
/* Desktop scale-up */
@media (min-width: 1024px) {
    body {
        font-size: 18px
        }
    .hero-content h1 {
        font-size: 4rem
        }
    .hero-content p {
        font-size: 1.35rem
        }
    .section-title {
        font-size: 2.9rem
        }
    .section-subtitle {
        font-size: 1.25rem
        }
    .nav-link {
        font-size: 1.05rem
        }
    .header-estimate, .header-call, .cta-btn.primary, .cta-btn.secondary, .primary-btn {
        font-size: 1.05rem;
        padding: 0.9rem 1.7rem
        }
    .company-logo {
        height: 70px
        }
    .project-item img {
        height: 340px
        }
    .gallery-grid img {
        max-height: 560px
        }
    /* Larger color swatches on desktop */
    .color-category {
        padding: 3rem
        }
    .color-category h3 {
        font-size: 2rem
        }
    .color-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 2rem
        }
    .color-option {
        padding: 1.2rem 0.7rem
        }
    .color-option img {
        width: 140px;
        height: 140px
        }
    .color-option span {
        font-size: 1.05rem
        }
}

/* Placeholder for translation CSS if needed */

/* Extra-wide screens: reduce side whitespace by widening containers */
@media (min-width: 1440px) {
    .nav-container,
    .hero-content,
    .services-grid,
    .recent-jobs,
    .projects-section,
    .materials-grid,
    .color-categories,
    .comparison-container,
    .footer-content,
    .service-area-flex,
    .image-gallery,
    .offers-grid {
        max-width: 1600px
        }
}
/* Footer Logo */
.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain
    }
/* Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
        } to {
        transform: translateX(0);
        opacity: 1;
        }
    }
@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
        } to {
        transform: translateX(100%);
        opacity: 0;
        }
    }
.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center
    }
.notification-close:hover {
    opacity: 0.8
    }
/* Map Styles */
.map-container {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
    }
/* Ensure anchor scroll positions account for fixed header */
#service-area-map {
    scroll-margin-top: 120px
    }
.map-container h3 {
    padding: 1rem;
    margin: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    text-align: center
    }
#map {
    width: 100%;
    height: 300px;
    border-radius: 0 0 10px 10px
    }
/* Contact Content Layout */
.contact-form-section {
    flex: 2
    }
.contact-info-sidebar {
    flex: 1;
    min-width: 300px
    }
/* Contact Details Card */
.contact-details-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
    }
.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem
    }
.contact-detail i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem
    }
.contact-detail div {
    flex: 1
    }
.contact-detail strong {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--text-dark)
    }
.contact-detail a, .contact-detail span {
    color: var(--text-dark);
    text-decoration: none;
    word-break: break-word
    }
.contact-detail a:hover {
    color: var(--primary-color)
    }
/* Contact Page Styles */
.contact-main {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden
    }
.contact-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 34, 64, 0.9) 0%, rgba(124, 58, 237, 0.8) 100%);
    z-index: 1
    }
.contact-main > * {
    position: relative;
    z-index: 2
    }
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start
    }
.contact-form-section {
    background: #f7f3ee;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
    }
.form-header {
    text-align: center;
    margin-bottom: 2.5rem
    }
.form-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700
    }
.form-header p {
    color: var(--text-body);
    font-size: 1.1rem
    }
.modern-contact-form {
    display: grid;
    gap: 1.5rem
    }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem
    }
.form-group {
    display: flex;
    flex-direction: column
    }
.form-group.full-width {
    grid-column: 1/-1
    }
.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem
    }
.form-group input, .form-group select, .form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white
    }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1)
    }
.form-group textarea {
    resize: vertical;
    min-height: 120px
    }
.contact-preferences {
    grid-column: 1/-1
    }
.contact-method-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem
    }
.method-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white
    }
.method-option:hover {
    border-color: var(--accent-color);
    background: #faf5ff
    }
.method-option input[type="radio"] {
    display: none
    }
.method-option input[type="radio"]:checked + .method-icon {
    color: var(--accent-color)
    }
.method-option input[type="radio"]:checked ~ .method-text {
    color: var(--accent-color);
    font-weight: 600
    }
.method-option input[type="radio"]:checked {
    border-color: var(--accent-color);
    background: #faf5ff
    }
.method-icon {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease
    }
.method-text {
    font-size: 0.9rem;
    color: var(--text-body);
    transition: all 0.3s ease
    }
/* Property Type Styles */
.property-type {
    grid-column: 1/-1;
    margin: 1rem 0
    }
.property-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem
    }
.property-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white
    }
.property-option:hover {
    border-color: var(--accent-color);
    background: #faf5ff;
    transform: translatey(-2px)
    }
.property-option input[type="radio"] {
    display: none
    }
.property-option input[type="radio"]:checked + .property-icon {
    color: var(--accent-color);
    transform: scale(1.1)
    }
.property-option input[type="radio"]:checked ~ .property-text {
    color: var(--accent-color);
    font-weight: 600
    }
.property-icon {
    font-size: 1.8rem;
    color: var(--text-light);
    transition: all 0.3s ease
    }
.property-text {
    font-size: 0.9rem;
    color: var(--text-body);
    transition: all 0.3s ease;
    font-weight: 500
    }
.language-preference {
    grid-column: 1/-1
    }
.language-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem
    }
.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white
    }
.language-option:hover {
    border-color: var(--accent-color);
    background: #faf5ff
    }
.language-option input[type="radio"] {
    display: none
    }
.language-option input[type="radio"]:checked + .language-icon {
    transform: scale(1.1)
    }
.language-option input[type="radio"]:checked ~ .language-text {
    color: var(--accent-color);
    font-weight: 600
    }
.language-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease
    }
.language-text {
    font-size: 0.9rem;
    color: var(--text-body);
    transition: all 0.3s ease
    }
.consent-group {
    grid-column: 1/-1
    }
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer
    }
.consent-checkbox input[type="checkbox"] {
    display: none
    }
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px
    }
.consent-checkbox input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color)
    }
.consent-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 14px;
    font-weight: bold
    }
.consent-text {
    color: var(--text-body);
    line-height: 1.5
    }
.submit-button {
    grid-column: 1/-1;
    background: linear-gradient(135deg, var(--accent-color) 0%, #a21caf 100%);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    margin-top: 1rem
    }
.submit-button:hover {
    transform: translatey(-2px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3)
    }
.button-arrow {
    transition: transform 0.3s ease
    }
.submit-button:hover .button-arrow {
    transform: translatex(5px)
    }
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem
    }
.info-card {
    background: #f7f3ee;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
    }
.info-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700
    }
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
    }
.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start
    }
.benefit i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem
    }
.benefit h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-weight: 600
    }
.benefit p {
    margin: 0;
    color: var(--text-body);
    font-size: 0.9rem
    }
.contact-details-card {
    background: #f7f3ee;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
    }
.contact-details-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700
    }
.contact-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem
    }
.contact-detail:last-child {
    margin-bottom: 0
    }
.contact-detail i {
    font-size: 1.25rem;
    color: var(--accent-color);
    margin-top: 0.25rem
    }
.contact-detail strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem
    }
.contact-detail a {
    color: var(--accent-color);
    text-decoration: none
    }
.contact-detail a:hover {
    text-decoration: underline
    }
.estimate-highlight {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3)
    }
.estimate-highlight i {
    font-size: 2rem;
    color: #fbbf24;
    margin-top: 0.25rem
    }
.estimate-highlight h4 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    font-size: 1.25rem
    }
.estimate-highlight p {
    margin: 0 0 1rem 0;
    opacity: 0.9
    }
.estimate-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem
    }
.estimate-features .feature {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    opacity: 0.95;
    font-weight: 500
    }
/* Enhanced Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: center
    }
.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: left
    }
.badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translatey(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
    }
.badge i {
    font-size: 2rem;
    color: #fbbf24;
    flex-shrink: 0
    }
.badge-content {
    display: flex;
    flex-direction: column
    }
.badge-content strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem
    }
.badge-content span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3
    }
.hero-cta {
    margin-top: 2rem;
    text-align: center
    }
.hero-cta .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #a21caf 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3)
    }
.hero-cta .primary-btn:hover {
    transform: translatey(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    color: white;
    text-decoration: none
    }
/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem
        }
    .contact-hero h1 {
        font-size: 2.5rem
        }
    }
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 1rem 3rem
        }
    .contact-hero h1 {
        font-size: 2rem
        }
    .contact-main {
        padding: 4rem 1rem
        }
    .contact-form-section {
        padding: 2rem
        }
    .form-header h2 {
        font-size: 2rem
        }
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem
        }
    .contact-method-options {
        grid-template-columns: 1fr;
        gap: 0.75rem
        }
    .method-option {
        flex-direction: row;
        justify-content: center;
        padding: 1rem
        }
    .method-icon {
        margin-bottom: 0;
        margin-right: 0.5rem
        }
    .language-options {
        grid-template-columns: 1fr;
        gap: 0.75rem
        }
    .property-type-options {
        grid-template-columns: 1fr;
        gap: 0.75rem
        }
    .property-option {
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem
        }
    .property-icon {
        font-size: 1.5rem
        }
    .info-card, .contact-details-card {
        padding: 1.5rem
        }
    }
@media (max-width: 1024px) {
    .insight-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem
        }
    .comparison-table-wrapper {
        margin: 0 -1rem;
        border-radius: 0
        }
    }
@media (max-width: 768px) {
    .comparison-section {
        padding: 4rem 1rem
        }
    .comparison-table {
        min-width: 600px
        }
    .comparison-table th, .comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem
        }
    .comparison-cta {
        padding: 2rem 1.5rem
        }
    .comparison-cta h4 {
        font-size: 1.5rem
        }
    .comparison-buttons {
        flex-direction: column;
        align-items: center
        }
    .insight-card {
        padding: 1.5rem
        }
    .insight-header h4 {
        font-size: 1.1rem
        }
    }
/* Material Guides Section */
.material-guides {
    background: #f8fafc;
    padding: 6rem 2rem
    }
.material-guides .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark)
    }
/* Why Choose - Narrative Style */
.why-story {
    max-width: 900px;
    margin: 0 auto 3rem auto;
    text-align: center
    }
.why-lead {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0
    }
.why-line {
    font-size: 1.2rem;
    color: var(--text-body);
    margin: 0.25rem 0
    }
.why-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem
    }
.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 9999px;
    background: #eef2ff;
    color: #4338ca;
    border: 1px solid #c7d2fe;
    font-weight: 600
    }
.pill i {
    color: #6366f1
    }
/* Experience Highlight Section */
/* Team photos under Why Choose */
.team-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0 auto
    }
.team-photo-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background: #fff
    }
.team-photo-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover
    }
@media (max-width: 900px) {
    .team-photos {
        grid-template-columns: 1fr 1fr
        }
    }
@media (max-width: 600px) {
    .team-photos {
        grid-template-columns: 1fr
        }
    }
/* Responsive Design for Experience Stats */