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

:root {
    /* Twin Cities Concrete Demolition - Design System */
    --primary-color: #E85D00;            /* Deeper safety orange - better contrast */
    --primary-dark: #C24D00;             /* Hover/pressed state */
    --primary-light: #FF7A1F;            /* Lighter variant for accents */
    --secondary-color: #111111;          /* Near-black */
    --secondary-light: #1E1E1E;          /* Slightly lighter for layering */
    --accent-color: #FF8833;             /* Accent orange */
    --lake-blue: #40798C;                /* Lake water blue - minimal use */
    --barn-red: #E85D00;                 /* Unified with primary */
    --barn-red-dark: #C24D00;
    --concrete-gray: #7A8C8D;            /* Muted concrete tone */
    --dark-gray: #2C2C2C;
    --text-dark: #0F0F0F;
    --text-body: #2A2A2A;                /* Softer than pure black for body text */
    --text-light: #5C5C5C;
    --bg-light: #F5F5F5;
    --bg-section: #FAFAFA;
    --white: #FFFFFF;
    --success: #1E7A3C;
    --warning: #E85D00;
    --danger: #C0392B;
    --border-color: #D8D8D8;
    --border-strong: #B0B0B0;
    --shadow-sm: 0 1px 4px rgba(0,0,0,0.10);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.14);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
    --shadow-heavy: 0 12px 48px rgba(0,0,0,0.25);
    --shadow-orange: 0 6px 20px rgba(232, 93, 0, 0.35);
    
    /* Caution Tape Pattern */
    --caution-tape: repeating-linear-gradient(
        45deg,
        #FF6600,
        #FF6600 30px,
        #000000 30px,
        #000000 60px
    );
    --caution-tape-reverse: repeating-linear-gradient(
        -45deg,
        #FF6600,
        #FF6600 30px,
        #000000 30px,
        #000000 60px
    );
}

/* Caution Tape Utility Classes */
.caution-tape-border {
    border-top: 12px solid transparent;
    border-image: var(--caution-tape) 12;
}

.caution-tape-divider {
    height: 12px;
    background: var(--caution-tape);
    margin: 40px 0;
}

.caution-warning {
    display: inline-block;
    padding: 8px 20px;
    background: var(--caution-tape);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    position: relative;
}

/* Body grid pattern removed - was adding visual noise with no benefit */

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

/* Header */
.header {
    background: var(--secondary-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.45);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-image {
    height: 52px;
    width: auto;
}

.logo i {
    font-size: 32px;
    color: var(--primary-color);
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-orange);
    letter-spacing: 0.5px;
}

.phone-link:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232, 93, 0, 0.5);
}

.phone-link i {
    animation: ring 3s ease-in-out infinite;
}

@keyframes ring {
    0%, 85%, 100% { transform: rotate(0deg); }
    88%  { transform: rotate(-12deg); }
    92%  { transform: rotate(12deg); }
    96%  { transform: rotate(-8deg); }
}

/* Urgency Banner */
.urgency-banner {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-color);
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.urgency-content i {
    font-size: 16px;
    color: var(--primary-color);
}

.urgency-content span {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.urgency-content strong {
    font-weight: 700;
    color: var(--primary-color);
}

.urgency-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 7px 18px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(160deg, #0F0F0F 0%, #1A1A1A 60%, #261000 100%);
    color: var(--white);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
}

/* Subtle texture overlay - much less aggressive than before */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(232,93,0,0.08) 0%, transparent 60%),
                      radial-gradient(circle at 80% 20%, rgba(232,93,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Removed the white clip-path divider - created a jarring seam */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Excavator Decorative Element */
.hero-content::after {
    content: '\f6d9';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -120px;
    right: -80px;
    font-size: 350px;
    color: rgba(255, 102, 0, 0.06);
    transform: rotate(-12deg);
    z-index: -1;
    pointer-events: none;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    animation: fadeInUp 0.7s ease;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--white);
}

/* Highlight the key action word via a span in HTML, not ::first-line hack */
.hero-text h1 .h1-accent {
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.75);
}

.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
}

.hero-benefits i {
    color: var(--primary-color);
    font-size: 15px;
    flex-shrink: 0;
}

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.07);
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 13px;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.9);
}

.badge i {
    font-size: 16px;
    color: var(--primary-color);
}

/* Form Card */
.form-card {
    background: var(--white);
    padding: 36px 32px 32px;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-card h2 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: var(--white);
    font-weight: 400;
    color: var(--text-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(232, 93, 0, 0.15);
}

.form-group textarea {
    resize: vertical;
}

/* Form Row for Side-by-Side Inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Radio Button Groups */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
    font-weight: 500;
    position: relative;
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: rgba(255, 102, 0, 0.05);
    transform: translateX(3px);
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 700;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    border-width: 3px;
    background: rgba(255, 102, 0, 0.1);
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.radio-option.urgent:has(input[type="radio"]:checked) {
    border-color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.radio-option.urgent span {
    color: #CC0000;
    font-weight: 600;
}

.radio-option span {
    flex: 1;
    font-size: 15px;
}

/* Checkbox Group for Privacy Consent */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.checkbox-label span {
    color: var(--text-dark);
}

.checkbox-label .privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label .privacy-link:hover {
    color: var(--barn-red);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 32px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(232, 93, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    width: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(232, 93, 0, 0.5);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(232, 93, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.9);
    color: var(--white);
}

.form-privacy {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.form-privacy i {
    color: var(--success);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 48px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    text-align: center;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(232, 93, 0, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    transition: background 0.2s ease, color 0.2s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* Add a "Get Quote" micro-link to each card */
.service-card .card-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.2s ease;
}

.service-card .card-link:hover {
    color: var(--primary-dark);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    position: relative;
}

.pricing-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: -32px;
    margin-bottom: 44px;
    font-weight: 500;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 8px;
    padding: 40px 30px;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 4px;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.4);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--bg-light);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.pricing-card:hover .pricing-icon {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

.pricing-header h3 {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.size-range {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-body {
    text-align: center;
}

.price-range {
    margin-bottom: 25px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.project-types {
    list-style: none;
    text-align: left;
    margin: 0 auto;
    max-width: 250px;
}

.project-types li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-types li i {
    color: var(--primary-color);
    font-size: 18px;
}

.pricing-disclaimer {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 8px;
    border-left: 6px solid var(--primary-color);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pricing-disclaimer i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-disclaimer p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

.pricing-disclaimer strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Caution tape stripe on testimonials removed */

.testimonials-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-top: -32px;
    margin-bottom: 44px;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 35px 30px;
    border: 3px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.3);
    border-color: var(--primary-color);
}

.testimonial-card.featured {
    border-color: var(--primary-color);
    border-width: 4px;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 20px;
    margin-right: 3px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    min-height: 100px;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.author-location {
    color: var(--text-light);
    font-size: 14px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
}

.verified-badge i {
    font-size: 16px;
}

.testimonials-cta {
    text-align: center;
    background: rgba(255, 102, 0, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 3px solid var(--primary-color);
}

.testimonials-cta p {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.testimonials-cta strong {
    color: var(--primary-color);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 12px;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(232, 93, 0, 0.3);
}

.feature:hover .feature-icon {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 93, 0, 0.4);
}

.feature h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.feature p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--bg-section);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.step {
    text-align: center;
    position: relative;
    z-index: 1;
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 3px solid var(--border-color);
    box-shadow: 0 4px 0 #D1D1D1;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 0 var(--dark-gray), 0 12px 30px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: 3px solid var(--primary-color);
}

.step:hover .step-number {
    transform: scale(1.08);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(232, 93, 0, 0.4);
}

.step h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: -32px;
    margin-bottom: 44px;
    font-weight: 500;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

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

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(160deg, #0F0F0F 0%, #1E1E1E 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary-color);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--white);
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 36px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 56px 0 20px;
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--barn-red);
}

.footer-section h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--barn-red);
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-legal {
    margin-top: 10px;
    font-size: 14px;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Privacy Policy & Terms of Service Sections */
.privacy-section,
.terms-section {
    padding: 80px 0;
    background: var(--white);
}

.privacy-section {
    background: var(--light-background);
}

.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.effective-date {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

.privacy-block,
.terms-block {
    margin-bottom: 40px;
}

.privacy-block h3,
.terms-block h3 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.privacy-block p,
.terms-block p,
.privacy-block ul,
.terms-block ul {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-block ul,
.terms-block ul {
    list-style: disc;
    margin-left: 30px;
    margin-top: 10px;
}

.privacy-block li,
.terms-block li {
    margin-bottom: 10px;
}

.privacy-block a,
.terms-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-block a:hover,
.terms-block a:hover {
    color: var(--barn-red);
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    max-width: 500px;
    margin: 20px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 20px;
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.modal-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* White Text Utilities */
.text-white {
    color: var(--white) !important;
}

.text-white-shadow {
    color: var(--white) !important;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8) !important;
}

.text-bright {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7), 0 0 20px rgba(255,255,255,0.1) !important;
    font-weight: 700 !important;
}

.highlight-white {
    background: linear-gradient(180deg, transparent 60%, rgba(255,255,255,0.2) 60%);
    color: var(--white);
    font-weight: 700;
    padding: 0 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 30px;
    }
}

/* Tablet: stop the form from rendering tiny on mid-size screens */
@media (max-width: 768px) {
    .hero {
        padding: 52px 0 64px;
    }

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

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

@media (max-width: 640px) {
    /* Header: keep logo and phone on same row, just smaller */
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .logo-image {
        height: 40px;
    }

    .phone-link {
        font-size: 15px;
        padding: 10px 16px;
        white-space: nowrap;
    }

    .phone-link span {
        /* On very small screens, show only icon */
    }

    .urgency-banner {
        display: none; /* Banner already in view on mobile - remove duplicate noise */
    }

    .hero {
        padding: 40px 0 52px;
    }

    .hero-text h1 {
        font-size: 26px;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-benefits li {
        font-size: 14px;
    }

    .trust-badges {
        gap: 10px;
    }

    .badge {
        padding: 8px 12px;
        font-size: 12px;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-card h2 {
        font-size: 18px;
    }

    .form-subtitle {
        font-size: 13px;
    }

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

    .services,
    .why-choose,
    .process,
    .cta,
    .testimonials,
    .faq,
    .pricing {
        padding: 56px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-disclaimer {
        padding: 18px;
        flex-direction: column;
        gap: 10px;
    }

    .price {
        font-size: 28px;
    }

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

    .testimonial-text {
        min-height: auto;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .services-grid,
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-secondary,
    .cta-buttons .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        padding: 28px 20px;
    }

    .modal-icon {
        font-size: 56px;
    }

    .modal-content h2 {
        font-size: 22px;
    }

    .modal-content p {
        font-size: 15px;
    }

    .privacy-section,
    .terms-section {
        padding: 48px 0;
    }

    .privacy-block h3,
    .terms-block h3 {
        font-size: 17px;
    }

    .privacy-block ul,
    .terms-block ul {
        margin-left: 18px;
    }

    /* Process steps: horizontal line connector doesn't work vertically, remove */
    .step {
        padding: 24px 18px;
    }
}

/* Extra small - 375px iPhone */
@media (max-width: 400px) {
    .phone-link span {
        display: none;
    }

    .phone-link {
        padding: 10px 14px;
        font-size: 18px;
    }

    .hero-text h1 {
        font-size: 22px;
    }
}

/* Scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Float animation removed - made the form appear unstable and affected perceived trust.
   Forms should feel solid and anchored. */
.hero-form {
    /* no animation */
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Shine effect on hover */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.shine-effect:hover::after {
    left: 100%;
}

/* ============================================
   MOBILE STICKY CTA BAR
   Appears at bottom of screen on mobile after
   scrolling past the hero form
   ============================================ */
.mobile-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--secondary-color);
    border-top: 2px solid var(--primary-color);
    padding: 10px 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
}

.mobile-cta-bar .cta-bar-inner {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
}

.mobile-cta-bar .bar-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.mobile-cta-bar .bar-call:hover {
    background: var(--primary-dark);
}

.mobile-cta-bar .bar-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-cta-bar .bar-quote:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .mobile-cta-bar {
        display: block;
    }

    /* Add padding to footer so sticky bar doesn't cover content */
    .footer {
        padding-bottom: 80px;
    }
}

/* ============================================
   TRUST STRIP (below hero, above services)
   ============================================ */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
}

.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
}

.trust-strip-item i {
    color: var(--primary-color);
    font-size: 18px;
}

@media (max-width: 640px) {
    .trust-strip-inner {
        gap: 20px;
    }

    .trust-strip-item {
        font-size: 13px;
    }

    .trust-strip-item i {
        font-size: 16px;
    }
}

/* ============================================
   IMPROVED SECTION SPACING CONSISTENCY
   ============================================ */
body > section + section {
    /* ensure no accidental gap between sections */
}

/* Pricing card CTA */
.pricing-card .btn-primary {
    display: block;
    margin-top: 20px;
    text-align: center;
    text-decoration: none;
}

/* ============================================
   WORK GALLERY SECTION
   ============================================ */
.work-gallery {
    padding: 80px 0;
    background: #f8f8f8;
}

.work-gallery .section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: -16px;
    margin-bottom: 40px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    background: #222;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 24px 12px 10px;
}

/* Service card photo */
.service-card-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
    margin: -20px -20px 16px -20px;
    width: calc(100% + 40px);
}

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

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

/* Gallery responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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