:root {
    /* Core Palette - Industrial Elegance (General Contractor) */
    --primary: #1E293B;
    --primary-dark: #0F172A;
    --accent: #D97706;
    --accent-hover: #B45309;
    --bg-light: #F1F5F9;
    --bg-white: #ffffff;
    --text-heading: #1A1A1A;
    --text-main: #4a4a4a;
    --text-muted: #757575;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-drama: 'Cormorant Garamond', serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Design Tokens */
    --border-radius: 3rem;
    --border-radius-card: 1.5rem;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ═══════════════════════════════════════
   TEXTURE — Noise Overlay
   ═══════════════════════════════════════ */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    background: transparent;
    filter: url(#noise);
    opacity: 0.4;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.drama-text {
    font-family: var(--font-drama);
    font-style: italic;
    font-weight: 600;
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary);
}

.section-heading p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-label {
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════
   BUTTONS — Premium Slide-Up Hover
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-heading);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent {
    background-color: var(--accent);
    color: #fff;
}

.btn-accent::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-hover);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: var(--border-radius);
}

.btn-accent:hover {
    color: #fff;
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.btn-accent:hover::before {
    transform: translateY(0);
}

.btn-transparent {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-transparent::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
    border-radius: var(--border-radius);
}

.btn-transparent:hover {
    color: var(--primary);
    transform: scale(1.03);
    border-color: transparent;
}

.btn-transparent:hover::before {
    transform: translateY(0);
}

.btn-full {
    width: 100%;
}

/* ═══════════════════════════════════════
   HEADER — The Floating Island
   ═══════════════════════════════════════ */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-radius: 50px;
    border: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    top: 15px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    padding: 0 2rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--bg-white);
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--bg-white);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--bg-white);
    cursor: pointer;
}

/* ═══════════════════════════════════════
   HERO — Cinematic Full-Viewport
   ═══════════════════════════════════════ */
.hero {
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 41, 59, 0.92) 0%, rgba(30, 41, 59, 0.4) 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-left: 2rem;
}

.hero-text-container {
    max-width: 800px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.google-badge img {
    border-radius: 0;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    color: var(--bg-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-desc {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
    background: var(--primary);
    padding: 1.5rem 0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════
   SERVICES — Clean Card Grid
   ═══════════════════════════════════════ */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e8e5de;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(204, 88, 51, 0.25);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════ */
.why-us {
    background-color: var(--bg-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2.5rem 2rem;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #fff;
    box-shadow: 0 8px 25px rgba(46, 64, 54, 0.3);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: var(--text-main);
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.author strong {
    display: block;
    color: var(--text-heading);
}

.author p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════
   FAQ — Accordion
   ═══════════════════════════════════════ */
.faq {
    background-color: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8e5de;
}

.faq-item:first-child {
    border-top: 1px solid #e8e5de;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   CONTACT / FORM
   ═══════════════════════════════════════ */
.contact {
    background-color: var(--bg-light);
}

.contact-container {
    max-width: 700px;
}

.contact-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-lg);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h2 {
    font-size: 2rem;
    color: var(--primary);
}

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

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.25rem;
    border: 1px solid #d4d0c8;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(204, 88, 51, 0.15);
}

.form-message {
    text-align: center;
    font-weight: 600;
    margin-top: 0.5rem;
    min-height: 1.5rem;
}

.form-message.success {
    color: #16a34a;
}

.form-message.error {
    color: #dc2626;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
}

.footer .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

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

.footer-contact i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.hours {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 0.85rem;
}

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: rgba(46, 64, 54, 0.95);
        backdrop-filter: blur(16px);
        padding: 1.5rem 2rem;
        border-radius: 1.5rem;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }

    .hero {
        min-height: 600px;
        padding-bottom: 8vh;
    }

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

    .hero-content {
        padding-left: 0;
    }

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

    .trust-items {
        gap: 1.5rem;
    }

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

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

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 1.5rem;
    }

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

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

    .contact-card {
        padding: 2rem 1.5rem;
    }

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

    .section-padding {
        padding: 4rem 0;
    }

    .section-heading h2 {
        font-size: 2rem;
    }
}

/* ═══════════════════════════════════════
   ANIMATIONS — Scroll Fade-in
   ═══════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ═══════════════════════════════════════
   NEWSLETTER POPUP MODAL
   ═══════════════════════════════════════ */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-bounce);
}

.newsletter-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.newsletter-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    padding: var(--spacing-xl);
    text-align: center;
    transform: translateY(20px) scale(0.95);
    transition: var(--transition-bounce);
    transition-delay: 0.1s;
    background: var(--surface-light);
    border: 1px solid var(--border-color);
}

.newsletter-modal.is-active .newsletter-content {
    transform: translateY(0) scale(1);
}

.close-popup {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0.5rem;
    line-height: 1;
}

.close-popup:hover {
    color: var(--text-color);
}

.newsletter-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
}

.newsletter-content h3 {
    margin-bottom: var(--spacing-xs);
    font-size: 1.75rem;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.newsletter-form .form-input {
    width: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    color: white;
}

.newsletter-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    width: 100%;
    justify-content: center;
}

.newsletter-disclaimer {
    margin-top: var(--spacing-md);
    font-size: 0.75rem;
    opacity: 0.7;
}
