/* ========================================
   BAILEY FRANCHISE WEBSITE - MODERN STYLESHEET
   Brand Color: #6A00A8 (Purple)
   Color Palette with Gradients for Depth
   ======================================== */

/* ========== ROOT & VARIABLES - MODERN PURPLE PALETTE ========== */
:root {
    /* Purple Palette */
    --primary-dark: #6A00A8;          /* Deep Purple */
    --primary: #7D1BBE;               /* Rich Purple */
    --primary-light: #9933FF;         /* Bright Purple */
    --primary-lighter: #D4B3FF;       /* Pastel Purple */
    --primary-lightest: #F3E6FF;      /* Very Light Purple */
    
    /* Accents */
    --accent-coral: #FF6B6B;          /* Coral Red */
    --accent-cyan: #00D4FF;           /* Cyan Blue */
    --accent-gold: #FFD700;           /* Gold */
    
    /* Text & Borders */
    --dark-text: #1a1a1a;
    --light-text: #555555;
    --border-color: #E8D5FF;
    
    /* Shadows & Effects */
    --shadow: 0 4px 15px rgba(106, 0, 168, 0.1);
    --shadow-lg: 0 8px 30px rgba(106, 0, 168, 0.2);
    --shadow-xl: 0 12px 40px rgba(106, 0, 168, 0.25);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6A00A8 0%, #9933FF 100%);
    --gradient-light: linear-gradient(135deg, #F3E6FF 0%, #E8D5FF 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B6B 0%, #FFB84D 100%);
    --gradient-dark: linear-gradient(135deg, #4A0078 0%, #6A00A8 100%);
    
    /* Legacy color names for compatibility */
    --primary-color: #F3E6FF;
    --accent-color: #6A00A8;
    --hover-color: #9933FF;
}

/* ========== GENERAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark-text);
    background: linear-gradient(180deg, #FFFFFF 0%, #F3E6FF 50%, #FFFFFF 100%);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button, input, select, textarea {
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: linear-gradient(90deg, #FFFFFF 0%, #F8F4FF 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--primary-light);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.logo h1 {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.cta-btn {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, #6A00A8, #9933FF);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 20px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 800;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* ========== BUTTONS ========== */
.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-button.large {
    padding: 16px 48px;
    font-size: 18px;
}

.secondary-button {
    display: inline-block;
    background: var(--primary-lightest);
    color: var(--primary-dark);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--primary-light);
    text-align: center;
}

.secondary-button:hover {
    background: var(--primary-light);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ========== SECTIONS ========== */
section {
    padding: 80px 20px;
}

section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 20px;
    font-weight: 800;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* ========== BENEFITS SECTION ========== */
.benefits {
    background: linear-gradient(180deg, #F3E6FF 0%, #E8D5FF 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-lightest);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card > * {
    position: relative;
    z-index: 1;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 700;
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* ========== GRID STYLES ========== */
.what-we-provide,
.testimonials,
.provide-grid,
.reasons-grid,
.values-grid,
.our-values,
.roi-grid,
.success-factors,
.factors-grid {
    /* Defined individually as needed */
}

.provide-grid,
.reasons-grid,
.values-grid,
.roi-grid,
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.provide-item,
.reason-item,
.value-card,
.roi-item,
.factor-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.provide-item:hover,
.reason-item:hover,
.value-card:hover,
.roi-item:hover,
.factor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.provide-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.provide-item h3,
.reason-item h3,
.value-card h3,
.roi-item h3,
.factor-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

/* ========== SECTION SPECIFIC ========== */
.our-story,
.mission-vision {
    background: linear-gradient(180deg, #F3E6FF 0%, #E8D5FF 100%);
}

.mission-vision {
    padding: 60px 20px;
}

.mission-vision .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 45px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border-left: 6px solid var(--primary);
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-dark);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 800;
}

.our-story p {
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.9;
}

.testimonials {
    background: linear-gradient(180deg, #FFFFFF 0%, #F3E6FF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 35px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-light);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-size: 16px;
    color: var(--dark-text);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
    background: var(--gradient-dark);
    color: #ffffff;
    text-align: center;
}

.final-cta h2::after {
    background: linear-gradient(90deg, #D4B3FF 0%, #9933FF 100%);
}

.final-cta h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, #4A0078 0%, #6A00A8 100%);
    color: #ffffff;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #D4B3FF;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section a {
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D4B3FF;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* ========== FORM STYLES ========== */
.application-form-section,
.support-form-section {
    background: linear-gradient(180deg, #F3E6FF 0%, #E8D5FF 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-lighter);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-intro {
    color: var(--light-text);
    margin-bottom: 30px;
    text-align: left;
}

.form-section-title {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 35px 0 25px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-lighter);
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFC 100%);
    box-shadow: 0 2px 8px rgba(106, 0, 168, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(106, 0, 168, 0.2);
    background: #FFFFFF;
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.required {
    color: var(--accent-coral);
    font-weight: 700;
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
}

.error-message.show {
    display: block;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
    background-color: #fff5f5;
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 10px;
}

.radio-item,
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.radio-item input,
.checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-dark);
}

.radio-item label,
.checkbox-item label {
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--dark-text);
}

.submit-btn {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: var(--shadow);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-note {
    text-align: center;
    color: var(--light-text);
    margin-top: 15px;
    font-size: 14px;
}

.support-form {
    margin-top: 30px;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F3E6FF 100%);
}

.faq-item {
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-light);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
}

.faq-question:hover {
    background: var(--primary-lightest);
}

.faq-question.active {
    background: var(--primary-lightest);
}

.faq-question h3 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 700;
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-question.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 22px 0 22px;
}

.faq-answer.show {
    max-height: 500px;
    padding: 0 22px 22px 22px;
}

.faq-answer p,
.faq-answer ul {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin-left: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 700;
}

/* ========== CONTACT SUPPORT ========== */
.contact-support {
    background: linear-gradient(180deg, #F3E6FF 0%, #E8D5FF 100%);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-light);
}

.contact-item h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-item p {
    color: var(--light-text);
    margin: 10px 0;
}

.contact-item a {
    color: var(--primary);
    font-weight: 700;
}

/* ========== THANK YOU PAGE ========== */
.thank-you-section {
    background: linear-gradient(180deg, #F3E6FF 0%, #E8D5FF 100%);
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

.thank-you-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 2px solid var(--primary-lighter);
}

.success-icon {
    font-size: 80px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ========== PREMIUM ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(106, 0, 168, 0.1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(106, 0, 168, 0.3);
    }
}

/* Apply animations to elements */
.benefit-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.investment-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.investment-card:nth-child(1) { animation-delay: 0.1s; }
.investment-card:nth-child(2) { animation-delay: 0.2s; }
.investment-card:nth-child(3) { animation-delay: 0.3s; }

.requirement-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.requirement-item:nth-child(1) { animation-delay: 0.1s; }
.requirement-item:nth-child(2) { animation-delay: 0.2s; }
.requirement-item:nth-child(3) { animation-delay: 0.3s; }

.faq-item {
    animation: fadeInUp 0.5s ease-out backwards;
}

.timeline-item {
    animation: slideInLeft 0.6s ease-out backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

.factor-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.factor-item:nth-child(1) { animation-delay: 0.1s; }
.factor-item:nth-child(2) { animation-delay: 0.2s; }
.factor-item:nth-child(3) { animation-delay: 0.3s; }

.reason-card {
    animation: scaleIn 0.6s ease-out backwards;
}

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }
.reason-card:nth-child(4) { animation-delay: 0.4s; }

.value-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }

.roi-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.roi-card:nth-child(1) { animation-delay: 0.1s; }
.roi-card:nth-child(2) { animation-delay: 0.2s; }
.roi-card:nth-child(3) { animation-delay: 0.3s; }
.roi-card:nth-child(4) { animation-delay: 0.4s; }

.thank-you-card h1 {
    color: var(--primary-dark);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 800;
}

.success-message {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 40px;
    line-height: 1.8;
}

.timeline {
    text-align: left;
    margin: 50px 0;
    background: linear-gradient(135deg, #F3E6FF 0%, #E8D5FF 100%);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--primary);
}

.timeline h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -30px;
    width: 3px;
    background: var(--primary-lighter);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--light-text);
}

.next-steps {
    background: var(--primary-lightest);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 5px solid var(--primary);
}

.next-steps h2 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.step-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.step-item h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.step-item p {
    font-size: 14px;
    color: var(--light-text);
}

.contact-info {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.contact-info a {
    color: var(--primary);
    font-weight: 700;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.action-buttons a {
    flex: 1;
    min-width: 150px;
}

/* ========== INVESTMENT PACKAGES ========== */
.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.investment-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.investment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.investment-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: var(--gradient-light);
}

.investment-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.investment-card h3 {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.price {
    display: none;
}

.investment-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.investment-card li {
    color: var(--light-text);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.investment-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
}

.ideal-for {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

/* ========== REQUIREMENTS ========== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-item {
    background: linear-gradient(135deg, #F3E6FF 0%, #E8D5FF 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-light);
    box-shadow: var(--shadow);
}

.requirement-item h3 {
    color: var(--primary-dark);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.requirement-item p:first-of-type {
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
}

.requirement-item .desc {
    color: var(--light-text);
    font-size: 14px;
}

/* ========== CHECKLIST ========== */
.provide-checklist,
.we-provide .checklist-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.we-provide {
    background: linear-gradient(180deg, #F3E6FF 0%, #E8D5FF 100%);
}

.checklist-item {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    align-items: flex-start;
    border-left: 4px solid var(--primary-light);
}

.check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.checklist-item p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.6;
}

/* ========== DISCLAIMER ========== */
.disclaimer {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE8D6 100%);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    color: var(--light-text);
    font-size: 13px;
    margin-top: 30px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .mission-vision .container {
        grid-template-columns: 1fr;
    }

    .investment-card.featured {
        transform: scale(1);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #FFFFFF 0%, #F8F4FF 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
        z-index: 99;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        height: 400px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    section h2 {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons a {
        width: 100%;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .timeline-item:not(:last-child)::before {
        left: 25px;
    }

    /* Tablet improvements */
    .benefits-grid,
    .reasons-grid,
    .values-grid,
    .roi-grid,
    .factors-grid,
    .investment-grid,
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit-card,
    .investment-card,
    .requirement-item {
        padding: 25px;
    }

    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }

    .faq-item {
        border-radius: 8px;
    }

    .faq-question {
        padding: 16px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 16px;
        font-size: 14px;
    }

    .contact-form {
        gap: 15px;
    }

    .form-group {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo h1 {
        font-size: 22px;
    }

    section {
        padding: 50px 15px;
    }

    .hero {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .page-header {
        padding: 60px 15px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .form-wrapper {
        padding: 25px;
    }

    .thank-you-card {
        padding: 30px 20px;
    }

    .success-icon {
        font-size: 60px;
    }

    .thank-you-card h1 {
        font-size: 24px;
    }

    .provide-checklist,
    .benefits-grid,
    .reasons-grid,
    .values-grid,
    .roi-grid,
    .factors-grid,
    .investment-grid,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
    }

    section h2 {
        font-size: 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding: 20px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        margin-bottom: 25px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .next-steps {
        padding: 20px;
    }
}
    }

    .page-header h1 {
        font-size: 32px;
    }

    section h2 {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons a {
        width: 100%;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .timeline-item:not(:last-child)::before {
        left: 25px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo h1 {
        font-size: 22px;
    }

    section {
        padding: 50px 15px;
    }

    .hero {
        height: 350px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .page-header {
        padding: 60px 15px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .form-wrapper {
        padding: 25px;
    }

    .thank-you-card {
        padding: 30px 20px;
    }

    .success-icon {
        font-size: 60px;
    }

    .thank-you-card h1 {
        font-size: 24px;
    }

    .provide-checklist,
    .benefits-grid,
    .reasons-grid,
    .values-grid,
    .roi-grid,
    .factors-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
    }

    section h2 {
        font-size: 22px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline {
        padding: 20px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        margin-bottom: 25px;
    }

    .timeline-number {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .next-steps {
        padding: 20px;
    }
}
