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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2d5016 0%, #4a5d23 30%, #6b7c32 60%, #8b9a42 100%);
    min-height: 100vh;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #b8860b);
    width: 0%;
    transition: width 0.3s ease;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Page Styles */
.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
    width: 100%;
}

.page.active {
    display: block;
}

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

/* Logo Styling */
.logo-container {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 80px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Hero Section (Page 1) */
.hero-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid #2d5016;
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d5016, #4a5d23);
    color: white;
    padding: 6px 12px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 2px solid #d4af37;
}

.hero-section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.benefits {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 2px solid rgba(45, 80, 22, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #2c3e50;
    padding: 6px 0;
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.benefit-item:hover {
    transform: translateX(3px);
    background: rgba(45, 80, 22, 0.05);
    border-radius: 6px;
    padding: 8px 10px;
    margin: 0 -10px 15px -10px;
}

.benefit-item i {
    color: #2d5016;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
    background: rgba(45, 80, 22, 0.1);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-item span {
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 12px;
}

/* Contact Card */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 18px;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.contact-card-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-photo {
    flex-shrink: 0;
}

.contact-headshot {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #2d5016;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.contact-info {
    flex: 1;
}

.contact-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 3px;
}

.contact-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #2c3e50;
}

.contact-item i {
    color: #2d5016;
    width: 16px;
    text-align: center;
    font-size: 0.8rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2d5016, #4a5d23);
    color: white;
    border: 3px solid #d4af37;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
    width: 100%;
    justify-content: center;
    margin-top: 15px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(45, 80, 22, 0.4);
    border-color: #d4af37;
}

.btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: white;
    border: 2px solid #2d5016;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    text-decoration: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Page Headers */
.page h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Options Grid (Page 2) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #2d5016;
}

.option-card.selected {
    border-color: #2d5016;
    background: rgba(45, 80, 22, 0.1);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.2);
}

.option-icon {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.option-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.option-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Simple Options (Pages 3-5) */
.options-simple {
    margin-bottom: 40px;
}

.option-simple {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.option-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

.option-simple.selected {
    border-color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.option-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.option-content i {
    font-size: 1.5rem;
    color: #dc2626;
    min-width: 30px;
}

.option-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
}

.option-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Form (Page 6) */
.quote-header {
    text-align: center;
    margin-bottom: 25px;
}

.quote-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin-bottom: 20px;
}

.trusted-companies-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.trusted-companies-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.promotional-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.promo-image:hover {
    transform: scale(1.02);
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 3px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 55px;
}

.form-group select {
    cursor: pointer;
    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='%23666' 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 18px center;
    background-size: 16px;
    padding-right: 50px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.5;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    border: 3px solid #e1e8ed;
    transition: all 0.3s ease;
    min-height: 60px;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.98);
    border-color: #dc2626;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
    transform: translateY(-2px);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 28px;
    height: 28px;
    border: 3px solid #dc2626;
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkbox-label:hover .checkmark {
    border-color: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    transform: scale(1.05);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #dc2626;
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.checkbox-text {
    flex: 1;
    font-weight: 500;
}

.checkbox-text strong {
    color: #dc2626;
    font-weight: 700;
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Thank You Page (Page 7) */
.thank-you-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 15px;
}

.thank-you-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 12px;
}

.thank-you-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.next-steps {
    text-align: left;
    margin: 25px 0;
}

.next-steps h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.step-number {
    width: 25px;
    height: 25px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h4 {
    color: #2c3e50;
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-content p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.3;
}

.bonus-offer {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    color: white;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    border: 2px solid #dc2626;
}

.bonus-offer h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.bonus-offer p {
    margin-bottom: 15px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.calendly-inline-widget {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.contact-info p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .hero-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .page h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .question-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .quote-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .quote-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .trusted-companies-section {
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .promo-image {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .option-card {
        padding: 15px;
        margin-bottom: 8px;
    }
    
    .option-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .option-card h3 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .option-card p {
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 15px;
        margin-top: 15px;
    }
    
    .contact-card-content {
        gap: 15px;
    }
    
    .contact-headshot {
        width: 65px;
        height: 65px;
    }
    
    .contact-name {
        font-size: 1.1rem;
    }
    
    .contact-title {
        font-size: 0.85rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 1rem;
        min-height: 50px;
    }
    
    .checkbox-label {
        padding: 15px;
        font-size: 0.9rem;
        min-height: 50px;
    }
    
    .checkmark {
        width: 24px;
        height: 24px;
    }
    
    .thank-you-content {
        padding: 20px 15px;
    }
    
    .thank-you-content h2 {
        font-size: 1.8rem;
    }
    
    /* Ensure button is always visible */
    .btn-primary {
        position: relative;
        z-index: 10;
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 8px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .page h2 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }
    
    .question-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .quote-title {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .quote-description {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }
    
    .trusted-companies-section {
        padding: 15px 10px;
        margin-bottom: 15px;
    }
    
    .promo-image {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .options-grid {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .option-card {
        padding: 12px;
        margin-bottom: 6px;
    }
    
    .option-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }
    
    .option-card h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .option-card p {
        font-size: 0.8rem;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 0.95rem;
        margin-top: 12px;
        margin-bottom: 12px;
    }
    
    .option-content {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .contact-card {
        padding: 12px;
        margin-top: 12px;
    }
    
    .contact-card-content {
        gap: 12px;
    }
    
    .contact-headshot {
        width: 55px;
        height: 55px;
    }
    
    .contact-name {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.75rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} 