/* ==========================================
   CHEM-DRY SQUEEZE PAGE STYLES
   Mobile-First, High-Converting Design
   ========================================== */

/* CSS Variables - Chem-Dry Brand Colors */
:root {
    --primary-green: #00a859;
    --primary-blue: #0066b3;
    --dark-blue: #004080;
    --light-green: #e8f7f0;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e4e9;
    --dark-gray: #4a5568;
    --text-dark: #1a202c;
    --accent-red: #dc2626;
    --accent-orange: #f59e0b;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ==========================================
   URGENCY BANNER
   ========================================== */
.urgency-banner {
    background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.urgency-banner i {
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

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

.urgency-text {
    display: inline-block;
}

#voucher-count {
    font-size: 18px;
    font-weight: 800;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.65) 0%, rgba(0, 64, 128, 0.70) 100%), url('../images/team-photo.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 60px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 179, 0.55) 0%, rgba(0, 64, 128, 0.60) 100%);
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
}

.headline {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.headline .highlight {
    color: var(--accent-orange);
    position: relative;
    display: inline-block;
}

.sub-headline {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--accent-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.value-prop {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
}

.badge i {
    font-size: 20px;
    color: var(--accent-orange);
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, #008f4a 100%);
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 168, 89, 0.5);
}

.cta-button i {
    margin-right: 10px;
}

.cta-button.pulse {
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(0, 168, 89, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 168, 89, 0.7);
    }
}

.guarantee-text {
    font-size: 15px;
    opacity: 0.95;
    font-weight: 500;
}

.guarantee-text i {
    margin-right: 5px;
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offers {
    padding: 80px 20px;
    background-color: var(--light-gray);
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.offer-card.premium {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, #fff9f0 0%, var(--white) 100%);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.offer-badge.premium-badge {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #dc8c0b 100%);
}

.offer-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.price-container {
    text-align: center;
    margin-bottom: 10px;
}

.original-price {
    font-size: 20px;
    text-decoration: line-through;
    color: var(--dark-gray);
    margin-right: 10px;
}

.offer-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-green);
}

.offer-price::before {
    content: '$';
    font-size: 32px;
}

.savings {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 30px;
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
}

.offer-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features i {
    color: var(--primary-green);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.offer-features .bonus {
    background: var(--light-green);
    padding: 12px 15px;
    border-radius: 8px;
    border-bottom: none;
    margin-top: 5px;
}

.offer-features .bonus i {
    color: var(--accent-orange);
}

.offer-button {
    display: block;
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    padding: 18px 30px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.offer-button:hover {
    background: var(--dark-blue);
    transform: scale(1.02);
}

.offer-button.premium-button {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #dc8c0b 100%);
}

.offer-button.premium-button:hover {
    background: linear-gradient(135deg, #dc8c0b 0%, #b87309 100%);
}

/* Additional Services */
.additional-services {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.additional-services h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.service-item i {
    font-size: 24px;
    color: var(--primary-green);
}

.service-note {
    color: var(--dark-gray);
    font-style: italic;
    font-size: 14px;
}

/* ==========================================
   WHY CHEM-DRY SECTION
   ========================================== */
.why-chemdry {
    padding: 80px 20px;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit {
    text-align: center;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit:hover {
    background: var(--light-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #008f4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.benefit-icon i {
    font-size: 36px;
    color: var(--white);
}

.benefit h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-blue);
}

.benefit p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-gray) 100%);
}

.testimonial-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-green);
    transition: all 0.3s ease;
}

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

.stars {
    color: var(--accent-orange);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 15px;
}

/* ==========================================
   URGENCY SECTION
   ========================================== */
.urgency-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #b91c1c 100%);
    color: var(--white);
    text-align: center;
}

.urgency-content i {
    font-size: 48px;
    margin-bottom: 20px;
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.urgency-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 18px;
    margin-bottom: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lock-in-text {
    font-size: 20px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
}

/* ==========================================
   FORM SECTION
   ========================================== */
.form-section {
    padding: 80px 20px;
    background: var(--white);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    max-width: 700px;
    margin: 0 auto 60px;
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    min-height: 900px;
}

/* Form iframe Styling */
.form-container iframe {
    display: block;
    width: 100%;
    min-height: 876px;
    border: none;
    border-radius: 8px;
}

/* Alternative CTA */
.alt-cta {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.alt-cta h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-blue);
}

.phone-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 102, 179, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.phone-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 102, 179, 0.5);
}

.phone-button i {
    margin-right: 10px;
    animation: ring 1.5s infinite;
}

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

.cta-subtitle {
    font-size: 16px;
    color: var(--dark-gray);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #008f4a 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    background: var(--white);
    color: var(--primary-green);
}

.final-cta .cta-button:hover {
    background: var(--light-gray);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.9;
}

.footer-links {
    margin-bottom: 30px;
    font-size: 14px;
}

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

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

.separator {
    margin: 0 15px;
    opacity: 0.5;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.copyright {
    font-size: 13px;
    opacity: 0.7;
}

/* ==========================================
   STICKY CALL BUTTON (MOBILE)
   ========================================== */
.sticky-call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #008f4a 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-call-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 168, 89, 0.6);
}

.sticky-call-button i {
    animation: ring 1.5s infinite;
}

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

/* Tablets */
@media (min-width: 768px) {
    .urgency-banner {
        font-size: 16px;
    }
    
    .headline {
        font-size: 48px;
    }
    
    .sub-headline {
        font-size: 28px;
    }
    
    .offer-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sticky-call-button {
        display: none; /* Hide on larger screens, use regular CTAs */
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    .headline {
        font-size: 56px;
    }
    
    .sub-headline {
        font-size: 32px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    .testimonial-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .urgency-banner,
    .sticky-call-button {
        display: none;
    }
}
