/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00a8ff;       /* Bright sky blue */
    --primary-dark: #0078d4;  /* Darker blue */
    --secondary: #1e3a8a;     /* Deep navy blue */
    --accent: #06b6d4;        /* Cyan accent */
    --text-dark: #1e293b;     /* Near black for text */
    --text-medium: #64748b;   /* Medium gray for secondary text */
    --text-light: #94a3b8;    /* Light gray for tertiary text */
    --bg-light: #f1f5f9;      /* Very light blue/gray for backgrounds */
    --bg-white: #ffffff;      /* White for cards and content areas */
    --success: #00a8ff;       /* Blue for success states */
    --warning: #f59e0b;       /* Orange/yellow for stars/highlights */
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    font-size: 16px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Layout */
header, section, footer {
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    animation: pulse 2s infinite;
}

.urgency-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.2rem;
}

.urgency-text {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.urgency-cta {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
}

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

/* Header styles */
header {
    text-align: center;
    padding: 2.5rem 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    color: white;
    margin-bottom: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-guarantee {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.guarantee-badge {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

header h1 {
    color: white;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Call Button */
.call-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 168, 255, 0.3);
    letter-spacing: 0.5px;
}

.call-button:hover {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 168, 255, 0.4);
}

.call-button.mobile {
    display: block;
    margin: 2rem auto 0;
    max-width: 250px;
    text-align: center;
}

/* Before-After Section */
.hero-image {
    background: linear-gradient(to bottom, var(--secondary) 0%, #0f172a 100%);
    padding: 3rem 1rem;
    box-shadow: inset 0 -5px 10px rgba(0,0,0,0.1);
}



.before-after-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.full-comparison {
    max-width: 1000px;
    margin: 2.5rem auto 0;
    text-align: center;
}

.comparison-img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border: 5px solid var(--bg-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 4px;
}

.before, .after {
    position: relative;
    flex: 1;
    min-width: 280px;
    border: 5px solid var(--bg-white);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.before:hover, .after:hover {
    transform: translateY(-5px);
}

.before img, .after img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

.label {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Benefits section */
.benefits {
    text-align: center;
    padding: 4rem 1rem 2rem;
    background-color: var(--bg-white);
    box-shadow: 0 0 20px rgba(0,0,0,0.03);
    margin-bottom: 0;
}

.benefits-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bullet-list-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
    padding: 0 1rem;
}

.benefits-comparison {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    text-align: center;
}

.benefits-comparison-img {
    width: 100%;
    border: 5px solid #f0f0f0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefits-comparison-caption {
    margin-top: 1rem;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 500;
    font-style: italic;
}

.benefit {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--primary);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit p {
    color: var(--text-medium);
    line-height: 1.7;
}

.benefit-bullets {
    list-style: none;
    padding: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    display: inline-block;
    text-align: left;
}

.benefit-bullets li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.benefit-bullets li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight {
    color: var(--secondary);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Testimonials section */
.testimonials {
    background: linear-gradient(to bottom, var(--bg-light) 0%, #f0f2f5 100%);
    text-align: center;
    padding: 4rem 1rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    text-align: left;
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 0;
    left: 15px;
    font-size: 5rem;
    color: rgba(39, 174, 96, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: var(--warning);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

.author {
    font-weight: 600;
    color: var(--text-medium);
    text-align: right;
    font-family: 'Montserrat', sans-serif;
}

/* Pricing section */
.pricing {
    background: linear-gradient(to bottom, var(--bg-white) 0%, #f9f9f9 100%);
    text-align: center;
    padding: 2rem 1rem 4rem;
    margin-top: 0;
}

.pricing h2 {
    margin-bottom: 3rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.price-box {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary);
    transition: transform 0.3s ease;
    position: relative;
}

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

.price-box.popular {
    transform: scale(1.05);
    border-top: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 1;
}

.price-box.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.urgency-tag {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.value-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #059669, #047857);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
}

.price-box h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(46, 204, 113, 0.2);
}

.price-box.popular .price {
    color: var(--accent);
    text-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
}

.dollar-sign {
    font-size: 2rem;
    vertical-align: super;
    margin-right: 5px;
}

.price-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 2rem auto;
    min-height: 180px;
}

.price-features li {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.price-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.price-box.popular .price-features li:before {
    color: var(--accent);
}

.price-box .call-button.mobile {
    margin: 1.5rem auto 0;
    max-width: 200px;
}

/* CTA Form section */
.cta {
    background-color: var(--bg-white);
    padding: 4rem 1rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.03);
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.form-container {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.questions-container {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: center;
}

.questions-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: left;
    border-left: 5px solid var(--primary);
}

.questions-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.questions-box p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.service-hours {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.service-hours p {
    margin-bottom: 0.5rem;
}

/* Hidden honeypot field for spam prevention */
.hidden {
    display: none !important;
}

form {
    max-width: 500px;
    margin: 2rem auto;
    text-align: left;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: 'Montserrat', sans-serif;
}

.optional {
    font-weight: 400;
    color: var(--text-medium);
    font-size: 0.9rem;
    font-style: italic;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Open Sans', sans-serif;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--bg-white);
}

/* Enhanced select dropdown styling */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 45px;
    cursor: pointer;
    color: var(--text-dark);
}

select:invalid {
    color: var(--text-medium);
}

select option {
    color: var(--text-dark);
    background-color: var(--bg-white);
    padding: 12px;
}

select option:hover {
    background-color: var(--bg-light);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
    outline: none;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox label {
    margin-left: 10px;
    margin-bottom: 0;
}

.checkbox input {
    width: auto;
    accent-color: var(--primary);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--primary-dark), #0056b3);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 168, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Success message styling */
.success-message {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 5px solid var(--success);
}

.success-message h3 {
    color: var(--success);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

/* Media Queries */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-comparison {
        margin-top: 0;
        order: -1;
        max-width: 100%;
    }
    
    .benefits-comparison-img {
        max-width: 90%;
    }
    
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }
    
    .price-box {
        max-width: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    /* Reset popular box scaling on mobile */
    .price-box.popular {
        transform: scale(1);
    }
    
    .price-box.popular:hover {
        transform: translateY(-5px);
    }
    
    .price-features {
        min-height: auto;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .dollar-sign {
        font-size: 2rem;
    }
    
    /* Hide entire hero section on mobile */
    .hero-image {
        display: none;
    }
    
    .call-button {
        padding: 12px 22px;
        font-size: 1rem;
    }
    
    .book-button {
        width: 90%;
        padding: 12px 22px;
        font-size: 1rem;
    }
    
    .questions-container {
        margin-top: 2rem;
    }
    
    .form-container, .questions-container {
        max-width: 100%;
    }
}

.custom-inquiry {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-medium);
    font-size: 1.1rem;
    font-style: italic;
}

.custom-inquiry a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.custom-inquiry a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.book-button {
    display: inline-block;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 168, 255, 0.3);
    letter-spacing: 0.5px;
    width: 80%;
    text-align: center;
}

.book-button:hover {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 168, 255, 0.4);
}

.comparison-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    font-family: 'Montserrat', sans-serif;
}

.header-icon {
    width: 0.9em;
    height: 0.9em;
    vertical-align: middle;
    margin-right: 0.4rem;
    stroke: white;
}

/* Mobile/Desktop visibility classes */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Mobile Carousel Styles */
.mobile-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.carousel-dots {
    text-align: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--text-light);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--text-light);
    opacity: 0.6;
}

.dot.active,
.dot:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .desktop-only {
        display: none;
    }
} 