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

:root {
    /* Winsted Concrete Demolition - Safety Orange Theme */
    --primary-color: #FF6600;            /* Safety Orange - From logo */
    --primary-dark: #E05500;             /* Darker safety orange */
    --secondary-color: #000000;          /* Black - From logo */
    --secondary-light: #1A1A1A;          /* Lighter black for variety */
    --accent-color: #FF8833;             /* Light safety orange */
    --lake-blue: #40798C;                /* Lake water blue - minimal use */
    --barn-red: #FF6600;                 /* Safety orange = primary CTA */
    --barn-red-dark: #CC5200;            /* Darker for shadows */
    --concrete-gray: #95a5a6;            /* Concrete texture */
    --dark-gray: #2C2C2C;                /* Dark gray for depth */
    --text-dark: #0A0A0A;
    --text-light: #5A5A5A;
    --bg-light: #F8F8F8;                 /* Light neutral background */
    --white: #FFFFFF;
    --success: #2D6A4F;
    --warning: #FF6600;
    --danger: #FF6600;                   /* Safety orange for urgent actions */
    --border-color: #D1D1D1;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-heavy: 0 12px 50px rgba(0,0,0,0.4);
    --shadow-orange: 0 8px 25px rgba(255, 102, 0, 0.3);
    
    /* 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::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px);
    pointer-events: none;
    z-index: 0;
}

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

/* Header */
.header {
    background: var(--secondary-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-top: 8px solid transparent;
    border-bottom: 4px solid var(--primary-color);
    background-image: 
        var(--caution-tape),
        linear-gradient(var(--secondary-color), var(--secondary-color));
    background-size: 100% 8px, 100% 100%;
    background-position: top, center;
    background-repeat: repeat-x, no-repeat;
}

.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: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.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: 14px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 var(--primary-dark), var(--shadow-orange);
    border: 2px solid var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-link:active {
    transform: translateY(3px);
    box-shadow: 0 1px 0 var(--primary-dark), 0 3px 10px rgba(0,0,0,0.3);
}

.phone-link:hover {
    background: #E01929;
    color: var(--white);
    box-shadow: 0 4px 0 var(--primary-dark), 0 8px 30px rgba(193, 18, 31, 0.5);
    transform: scale(1.05);
}

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

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20%, 40% {
        transform: rotate(15deg);
    }
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #FF6600, #E05500);
    color: var(--white);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.95; }
}

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

.urgency-content i {
    font-size: 24px;
    animation: fireFlicker 1.5s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.urgency-content span {
    font-size: 16px;
    font-weight: 500;
}

.urgency-content strong {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgency-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.urgency-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.92)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="concrete" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23111"/><circle cx="20" cy="20" r="2" fill="%23222"/><circle cx="80" cy="40" r="1.5" fill="%23333"/><circle cx="40" cy="70" r="2.5" fill="%23222"/><circle cx="90" cy="85" r="1" fill="%23333"/><path d="M10,10 L15,15 M85,20 L90,25 M45,80 L50,85" stroke="%23FF6600" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="url(%23concrete)"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-image: var(--caution-tape) 15;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 102, 0, 0.04) 10px, rgba(255, 102, 0, 0.04) 20px);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.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: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--white);
}

.hero-text h1::first-line {
    color: var(--primary-color);
}

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

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-benefits i {
    color: var(--barn-red);
    font-size: 20px;
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 2px solid var(--barn-red);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.badge:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-orange);
}

.badge i {
    font-size: 20px;
    color: #FFD700;
}

/* Form Card */
.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border: 3px solid var(--barn-red);
    border-top: 8px solid var(--barn-red);
    animation: fadeIn 1s ease;
    position: relative;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--caution-tape);
}

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

.form-card h2 {
    color: var(--text-dark);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

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

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

.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: 14px 16px;
    border: 3px solid var(--dark-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    font-weight: 600;
}

.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(255, 107, 0, 0.2), 0 4px 8px rgba(0,0,0,0.1);
}

.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: 18px 40px;
    border: 3px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 0 var(--primary-dark), var(--shadow-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.btn-primary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 var(--primary-dark), 0 4px 10px rgba(0,0,0,0.3);
}

.btn-primary:hover {
    background: #E01929;
    color: var(--white);
    box-shadow: 0 6px 0 var(--primary-dark), 0 10px 30px rgba(193, 18, 31, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary-color);
    padding: 18px 40px;
    border: 3px solid var(--secondary-color);
    border-radius: 4px;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 0 #E0E0E0, 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary:active {
    transform: translateY(4px);
    box-shadow: 0 2px 0 #E0E0E0, 0 4px 10px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 6px 0 #1F5438, 0 10px 25px rgba(45, 106, 79, 0.4);
}

.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: 12px solid transparent;
    background-image: 
        var(--caution-tape),
        linear-gradient(var(--bg-light), var(--bg-light));
    background-size: 100% 12px, 100% 100%;
    background-position: top, center;
    background-repeat: repeat-x, no-repeat;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--caution-tape-reverse);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--primary-color);
    box-shadow: 0 3px 0 var(--secondary-color);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 4px 0 var(--dark-gray), 0 8px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 3px solid var(--dark-gray);
    border-top: 6px solid var(--barn-red);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(253, 184, 19, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 0 var(--dark-gray), 0 16px 40px rgba(0,0,0,0.3);
    border-top-color: var(--accent-color);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 42px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 #0D2319, 0 8px 30px rgba(0,0,0,0.4);
    position: relative;
    border: 3px solid var(--primary-color);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 0 var(--primary-dark), 0 12px 40px rgba(212, 115, 11, 0.5);
}

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

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

/* 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: 18px;
    color: var(--text-light);
    margin-top: -40px;
    margin-bottom: 50px;
    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;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: var(--caution-tape);
}

.testimonials-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--primary-color);
    margin-top: -40px;
    margin-bottom: 50px;
    font-weight: 700;
}

.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;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    background-image: 
        var(--caution-tape),
        linear-gradient(var(--white), var(--white)),
        var(--caution-tape-reverse);
    background-size: 100% 12px, 100% 100%, 100% 12px;
    background-position: top, center, bottom;
    background-repeat: repeat-x, no-repeat, repeat-x;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 50px,
        rgba(212, 115, 11, 0.02) 50px,
        rgba(212, 115, 11, 0.02) 100px
    );
    pointer-events: none;
}

.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: 90px;
    height: 90px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 var(--primary-dark), 0 8px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--secondary-color);
}

.feature:hover .feature-icon {
    transform: translateY(-5px) rotate(-5deg);
    box-shadow: 0 10px 0 var(--primary-dark), 0 15px 40px rgba(212, 115, 11, 0.4);
    background: var(--primary-color);
    color: var(--white);
}

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

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

/* Process Section */
.process {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    background-image: 
        var(--caution-tape),
        linear-gradient(var(--white), var(--white)),
        var(--caution-tape-reverse);
    background-size: 100% 12px, 100% 100%, 100% 12px;
    background-position: top, center, bottom;
    background-repeat: repeat-x, no-repeat, repeat-x;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(0,0,0,.02) 20px,
        rgba(0,0,0,.02) 21px
    );
    pointer-events: none;
}

.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: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: 900;
    box-shadow: 0 6px 0 #0D2319, 0 8px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    border: 4px solid var(--primary-color);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 0 var(--primary-dark), 0 12px 40px rgba(212, 115, 11, 0.5);
}
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(26, 101, 158, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(26, 101, 158, 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: 18px;
    color: var(--text-light);
    margin-top: -40px;
    margin-bottom: 50px;
    font-weight: 600;
}

.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: 100px 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="concrete2" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23111"/><circle cx="15" cy="25" r="1.5" fill="%23222"/><circle cx="75" cy="35" r="2" fill="%23333"/><circle cx="35" cy="65" r="1" fill="%23222"/><circle cx="85" cy="80" r="1.5" fill="%23333"/><path d="M20,30 Q30,35 40,30 M60,50 Q70,55 80,50" stroke="%23FF6600" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="1200" height="600" fill="url(%23concrete2)"/></svg>');
    background-size: cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-image: var(--caution-tape) 15;
}

.cta::before {
    content: 'WINSTED STRONG';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 102, 0, 0.05);
    white-space: nowrap;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 10px;
}

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

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
    color: var(--white);
}

.cta-content p {
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    border-top: 15px solid transparent;
    border-image: var(--caution-tape) 15;
}

.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: 40px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

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

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

    .cta-content p {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo {
        font-size: 18px;
    }

    .hero {
        padding: 40px 0;
    }

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

    .hero-subtitle {
        font-size: 16px;
    }

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

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

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

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

    .radio-option {
        padding: 10px 12px;
        font-size: 14px;
    }

    .services, .why-choose, .process, .cta {
        padding: 50px 0;
    }

    .pricing {
        padding: 50px 0;
    }

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

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

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

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

    .price {
        font-size: 30px;
    }

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

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

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

    .section-title {
        font-size: 26px;
        margin-bottom: 35px;
    }

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

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

    .btn-secondary,
    .btn-primary {
        width: 100%;
    }

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

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

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

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

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

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

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

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

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

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

/* Floating animation for hero elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-form {
    animation: float 3s ease-in-out infinite;
}

/* 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%;
}
