/* ===================================
   4th of July 2026 Landing Page Styles
   Patriotic theme with red, white, blue, and DHC pink
   =================================== */

/* Hero Section */
.july4-hero {
    position: relative;
    padding: 12rem 0 10rem;
    overflow: hidden;
    text-align: center;
    color: white;
    background: #0a0e27;
}

.july4-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(178, 34, 52, 0.3), transparent),
        radial-gradient(ellipse 60% 50% at 50% 120%, rgba(60, 59, 110, 0.3), transparent),
        linear-gradient(180deg, #0a0e27 0%, #1a1d3a 50%, #0a0e27 100%);
    z-index: -2;
}

.july4-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        /* Patriotic stars pattern */
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 85% 25%, rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle at 25% 45%, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
        radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.4) 1.2px, transparent 1.2px),
        radial-gradient(circle at 45% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 65% 80%, rgba(255, 255, 255, 0.35) 1.5px, transparent 1.5px),
        radial-gradient(circle at 10% 85%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.3) 1.2px, transparent 1.2px),
        /* Subtle stripes */
        repeating-linear-gradient(
            180deg,
            transparent 0px,
            transparent 40px,
            rgba(178, 34, 52, 0.03) 40px,
            rgba(178, 34, 52, 0.03) 80px,
            transparent 80px,
            transparent 120px,
            rgba(60, 59, 110, 0.03) 120px,
            rgba(60, 59, 110, 0.03) 160px
        ),
        /* Color glows */
        radial-gradient(circle at 25% 25%, rgba(178, 34, 52, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(60, 59, 110, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(214, 0, 156, 0.08) 0%, transparent 50%);
    background-size: 
        100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%,
        100% 100%,
        100% 100%, 100% 100%, 100% 100%;
    animation: heroGlow 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.july4-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #b22234 10%, 
        #ffffff 25%, 
        #3c3b6e 40%, 
        #ffffff 50%, 
        #b22234 60%, 
        #ffffff 75%, 
        #3c3b6e 90%, 
        transparent 100%
    );
    z-index: 2;
    box-shadow: 0 4px 20px rgba(178, 34, 52, 0.4);
    animation: patrioticShine 3s linear infinite;
}

@keyframes patrioticShine {
    0% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
    }
}

.july4-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.july4-hero-content {
    position: relative;
    z-index: 3;
    padding: 0 2rem;
    text-align: left;
}

.july4-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(178, 34, 52, 0.2), rgba(60, 59, 110, 0.2));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 0.7rem 2.5rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 12px 40px rgba(178, 34, 52, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

.july4-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: -2px;
    position: relative;
}

.july4-hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    text-shadow: 
        0 0 40px rgba(178, 34, 52, 0.5),
        0 0 80px rgba(60, 59, 110, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

.july4-hero-subtitle {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.july4-hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.july4-hero-buttons .btn-primary {
    background: linear-gradient(135deg, #d6009c 0%, #b22234 100%);
    border: none;
    box-shadow: 
        0 10px 40px rgba(178, 34, 52, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.july4-hero-buttons .btn-primary::before {
    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.6s ease;
}

.july4-hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.july4-hero-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(178, 34, 52, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-outline-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #b22234;
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover::before {
    opacity: 1;
}

/* Hero Form */
.july4-hero-form {
    position: relative;
    z-index: 3;
}

.july4-quote-form-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.july4-quote-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-align: center;
}

.july4-quote-form-trust {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.july4-quote-form-trust::before {
    content: '🔒';
    font-size: 1rem;
}

.july4-quote-form-card iframe {
    flex: 1;
    min-height: 500px;
}

/* Flyer Section */
.july4-flyer-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
}

.july4-flyer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(178, 34, 52, 0.2) 50%, transparent 100%);
}

.july4-flyer-wrapper {
    max-width: 475px;
    margin: 0 auto;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: all 0.4s ease;
}

.july4-flyer-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.18);
}

.july4-flyer-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #b22234 0%, #3c3b6e 50%, #b22234 100%);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.5;
}

.july4-flyer-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.july4-flyer-wrapper:hover .july4-flyer-image {
    transform: scale(1.01);
}

/* Offers Section */
.july4-offers-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
}

.july4-offers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.july4-offer-card {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 25px;
    padding: 3.5rem 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.july4-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 1;
}

.july4-offer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(214, 0, 156, 0.03), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.loyal-card {
    border-color: rgba(178, 34, 52, 0.2);
}

.loyal-card::before {
    background: linear-gradient(90deg, #b22234 0%, #d6009c 100%);
}

.new-card {
    border-color: rgba(60, 59, 110, 0.2);
}

.new-card::before {
    background: linear-gradient(90deg, #3c3b6e 0%, #d6009c 100%);
}

.july4-offer-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border-color: #d6009c;
}

.loyal-card:hover {
    border-color: #b22234;
}

.new-card:hover {
    border-color: #3c3b6e;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #b22234 0%, #8b1a28 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(178, 34, 52, 0.3);
    position: relative;
    z-index: 2;
}

.new-card .offer-badge {
    background: linear-gradient(135deg, #3c3b6e 0%, #2a2a52 100%);
    box-shadow: 0 4px 15px rgba(60, 59, 110, 0.3);
}

.offer-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(178, 34, 52, 0.08), rgba(214, 0, 156, 0.12));
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.july4-offer-card:hover .offer-icon {
    transform: scale(1.1) rotate(5deg);
}

.new-card .offer-icon {
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.08), rgba(214, 0, 156, 0.12));
}

.offer-icon svg {
    color: #b22234;
    filter: drop-shadow(0 2px 4px rgba(178, 34, 52, 0.2));
}

.new-card .offer-icon svg {
    color: #3c3b6e;
    filter: drop-shadow(0 2px 4px rgba(60, 59, 110, 0.2));
}

.offer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    color: #b22234;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(178, 34, 52, 0.1);
}

.new-card .offer-price {
    color: #3c3b6e;
    text-shadow: 0 2px 4px rgba(60, 59, 110, 0.1);
}

.offer-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.offer-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d6009c;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.offer-price-secondary {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #d6009c;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(214, 0, 156, 0.1);
}

.offer-details {
    background: linear-gradient(135deg, rgba(178, 34, 52, 0.04), rgba(214, 0, 156, 0.06));
    border-radius: 15px;
    padding: 2rem 1.75rem;
    margin: 2rem 0;
    text-align: left;
    border: 1px solid rgba(178, 34, 52, 0.1);
    position: relative;
    z-index: 2;
}

.new-card .offer-details {
    background: linear-gradient(135deg, rgba(60, 59, 110, 0.04), rgba(214, 0, 156, 0.06));
    border-color: rgba(60, 59, 110, 0.1);
}

.offer-details p {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.offer-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-details li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.offer-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #b22234;
    font-weight: 700;
    font-size: 1.1rem;
    top: 0.5rem;
}

.new-card .offer-details li::before {
    color: #3c3b6e;
}

/* How to Claim Section */
.july4-how-to-claim {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.july4-claim-column {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.claim-column-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid #d6009c;
}

.claim-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.claim-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.claim-step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #b22234, #d6009c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.july4-claim-column:last-child .claim-step-number {
    background: linear-gradient(135deg, #3c3b6e, #d6009c);
}

.claim-step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.claim-step-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Why DHC Section */
.july4-why-dhc {
    padding: 5rem 0;
    background: white;
}

.july4-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.july4-feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.july4-feature-card:hover {
    border-color: #d6009c;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(214, 0, 156, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(178, 34, 52, 0.1), rgba(60, 59, 110, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrapper svg {
    color: #d6009c;
}

.july4-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.july4-feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Service Areas Section */
.july4-service-areas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.july4-areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.area-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-item:hover {
    border-color: #d6009c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 0, 156, 0.15);
}

.july4-areas-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 1rem;
}

.july4-areas-note a {
    color: #d6009c;
    font-weight: 600;
    text-decoration: none;
}

.july4-areas-note a:hover {
    text-decoration: underline;
}

/* Final CTA Section */
.july4-final-cta {
    padding: 9rem 0;
    background: #0a0e27;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.july4-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(178, 34, 52, 0.25), transparent),
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(60, 59, 110, 0.25), transparent),
        radial-gradient(circle at 30% 50%, rgba(214, 0, 156, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(60, 59, 110, 0.15) 0%, transparent 40%),
        linear-gradient(180deg, #0a0e27 0%, #1a1d3a 50%, #0a0e27 100%);
    animation: ctaGlow 10s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.july4-final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(178, 34, 52, 0.5) 25%, 
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(60, 59, 110, 0.5) 75%, 
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.july4-final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.july4-final-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.15;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.july4-final-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d6009c, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(214, 0, 156, 0.6);
}

.july4-final-text {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

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

.july4-final-buttons .btn-primary {
    background: linear-gradient(135deg, #d6009c 0%, #b22234 100%);
    border: none;
    box-shadow: 
        0 10px 40px rgba(178, 34, 52, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.july4-final-buttons .btn-primary::before {
    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.6s ease;
}

.july4-final-buttons .btn-primary:hover::before {
    left: 100%;
}

.july4-final-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(178, 34, 52, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.july4-final-buttons .btn-outline-white {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.july4-final-buttons .btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #b22234;
    border-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 
        0 15px 50px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Quote Form Section */
.july4-quote-form-section {
    padding: 5rem 0;
    background: white;
}

.july4-form-wrapper {
    max-width: 800px;
    margin: 3rem auto 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

/* FAQ Section */
.july4-faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.july4-faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.july4-faq-item {
    background: white;
    border-radius: 15px;
    padding: 2rem 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #d6009c;
}

.july4-faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.july4-faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Disclaimer Section */
.july4-disclaimer {
    padding: 3rem 0;
    background: #f8f9fa;
    border-top: 2px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .july4-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .july4-areas-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .july4-hero {
        padding: 6rem 0 4rem;
    }

    .july4-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .july4-hero-content {
        text-align: center;
    }

    .july4-hero-buttons {
        justify-content: center;
    }
    
    .july4-hero-title {
        font-size: 2.5rem;
    }
    
    .july4-hero-subtitle {
        font-size: 1.25rem;
    }

    .july4-quote-form-card {
        min-height: 550px;
    }
    
    .july4-offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .july4-claim-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .july4-final-title {
        font-size: 2.25rem;
    }
    
    .july4-final-text {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .july4-hero {
        padding: 5rem 0 3rem;
    }

    .july4-hero-grid {
        gap: 2.5rem;
    }

    .july4-hero-content {
        padding: 0 1rem;
    }
    
    .july4-hero-title {
        font-size: 2rem;
    }
    
    .july4-hero-subtitle {
        font-size: 1.125rem;
    }
    
    .july4-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .july4-quote-form-card {
        padding: 2rem 1.5rem;
        min-height: 500px;
    }

    .july4-quote-form-title {
        font-size: 1.5rem;
    }
    
    .july4-flyer-section {
        padding: 3rem 0;
    }
    
    .july4-offers-section,
    .july4-how-to-claim,
    .july4-why-dhc,
    .july4-service-areas,
    .july4-quote-form-section,
    .july4-faq-section {
        padding: 3.5rem 0;
    }
    
    .july4-final-cta {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .july4-offer-card {
        padding: 2.5rem 2rem;
    }
    
    .offer-price {
        font-size: 3rem;
    }
    
    .july4-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .july4-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .july4-final-title {
        font-size: 1.875rem;
    }
    
    .july4-final-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .july4-hero {
        padding: 4rem 0 2.5rem;
    }
    
    .july4-hero-title {
        font-size: 1.75rem;
    }
    
    .july4-hero-subtitle {
        font-size: 1rem;
    }
    
    .july4-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .july4-offer-card {
        padding: 2rem 1.5rem;
    }
    
    .offer-price {
        font-size: 2.5rem;
    }
    
    .offer-price-secondary {
        font-size: 2rem;
    }
    
    .july4-claim-column {
        padding: 2rem 1.5rem;
    }
    
    .claim-column-title {
        font-size: 1.5rem;
    }
    
    .claim-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .july4-areas-grid {
        grid-template-columns: 1fr;
    }
    
    .july4-final-title {
        font-size: 1.5rem;
    }
    
    .july4-final-text {
        font-size: 1rem;
    }
    
    .july4-faq-item {
        padding: 1.5rem 1.25rem;
    }
    
    .july4-faq-item h3 {
        font-size: 1.125rem;
    }
}
