/* Reset and Base Styles */
:root {
    --primary-blue: #2563eb; /* Bright modern blue */
    --secondary-blue: #1e40af; /* Darker blue */
    --text-dark: #1f2937;
    --text-light: #4b5563;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --accent-gold: #fbbf24;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1000px; /* Narrower for focus */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.sct-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s;
}

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Utilities */
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 2rem; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.rounded { border-radius: 0.5rem; }

/* Buttons */
.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(37, 99, 235, 0.3);
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 50px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    max-width: 900px;
}

.hero-subheadline {
    font-size: 1.4rem !important;
    margin-top: 1.5rem !important;
    color: #475569 !important; /* Darker slate for better legibility on light bg */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-secondary-subheadline {
    font-size: 1.2rem !important;
    margin-top: 1rem !important;
    color: #64748b !important; /* Slate for secondary text */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    background-color: #dbeafe; /* Light blue highlight */
    color: var(--primary-blue);
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1;
}

/* Badges */
.briefing-badge {
    display: inline-block;
    background-color: #fee2e2;
    color: #b91c1c;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-badge {
    display: inline-block;
    background-color: #d1fae5;
    color: #065f46;
    padding: 8px 16px;
    border-radius: 9999px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Thank You Page */
.thankyou-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    text-align: left;
    transition: transform 0.3s;
}

.step-card:hover { transform: translateY(-5px); }

.step-num {
    background: var(--primary-blue);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-card p { font-size: 0.95rem; color: var(--text-light); }

.survey-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: underline;
}

.video-proof-section { background-color: #1e293b; color: white; padding: 5rem 0; }

.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.results-gallery img {
    border-radius: 12px;
    border: 4px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.results-gallery img:hover { transform: scale(1.05); }

/* Policy & Terms Pages */
.policy-container {
    padding: 4rem 0;
    background-color: #0f172a;
    color: white;
    min-height: 100vh;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
    margin-bottom: 2rem;
}

.back-home:hover {
    color: white;
}

.policy-card {
    background: #1e293b;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #94a3b8;
    font-size: 0.9rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-content h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: #e2e8f0;
}

.policy-content h4 {
    font-size: 1.1rem;
    margin: 1.25rem 0 0.5rem;
    color: #cbd5e1;
}

.policy-content p {
    color: #94a3b8;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.policy-content li {
    color: #94a3b8;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.policy-icon {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.important-notice {
    background-color: rgba(251, 191, 36, 0.1);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.important-notice h3 {
    color: var(--accent-gold) !important;
    margin-top: 0 !important;
}

.hero-arrow {
    font-size: 2rem;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.optin-container {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.optin-header h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: center;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 1rem;
    line-height: 1.4;
}

/* Briefing Section */
.briefing-section {
    padding: 4rem 0;
    background-color: white;
}

.briefing-tag {
    display: inline-block;
    background-color: #fee2e2; /* Light red/alert */
    color: #b91c1c;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sub-heading {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Countdown */
.countdown-wrapper {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.time-block .time {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.time-block .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.event-details h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Discover Box */
.discover-box {
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.discovery-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.discovery-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.discovery-list i {
    color: #10b981; /* Green check */
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Reasons Section */
.reasons-section {
    padding: 4rem 0;
    background-color: #f3f4f6;
}

.reasons-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.reason-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.proof-image-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #1e293b; /* Dark bg */
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.host-img {
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255,255,255,0.1);
}

.host-meta {
    text-align: center;
    margin-top: 1rem;
}

.host-story h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.host-story p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    border-radius: 8px;
    transition: transform 0.3s;
    border: 2px solid rgba(255,255,255,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: white;
}

.faq-grid {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: row-reverse; /* Put icon on the left */
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-body);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 3.5rem; /* Indent text to align with question after icon */
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1rem;
    color: var(--primary-blue);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background-color: #0f172a;
    color: #64748b;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links a {
    color: #94a3b8;
    margin: 0 5px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f3f4f6; /* Same as reasons section */
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-blue);
    font-style: italic;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.testimonial-card cite {
    display: block;
    text-align: right;
    font-weight: 700;
    color: var(--text-light);
    font-style: normal;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background-color: white;
    text-align: center;
}

.final-cta-section .sub-heading {
    max-width: 800px;
    margin: 1.5rem auto 2rem;
    font-size: 1.2rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
    overflow-y: auto; /* Allow scrolling for long forms on mobile */
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 100%; /* Changed from 90% to use padding from overlay */
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    padding: 0;
    animation: modalIn 0.3s ease-out;
    margin: auto; /* Center correctly in scrolling overlay */
}

@keyframes modalIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content .optin-container {
    max-width: 100%;
    box-shadow: none;
    border: none;
    margin: 0;
}

/* Validation Messages */
.hide { display: none !important; }
#error-msg { color: #dc2626; font-size: 0.8em; margin-top: 5px; display: block; }
#valid-msg { color: #059669; font-size: 0.8em; margin-top: 5px; display: block; }
input.error { border-color: #dc2626 !important; }

/* Form Success State */
.form-success-container {
    text-align: center;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.form-success-container i {
    color: #10b981;
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.form-success-container h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.form-success-container p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Phone Input Overrides (Intl Tel Input) */
.iti { width: 100%; margin-bottom: 10px; }
.iti__country-list { 
    max-width: 280px; 
    max-height: 200px; 
    overflow-x: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}
.iti__country-name {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.5rem; }
    .sct-container { max-width: 900px; }
}

@media (max-width: 768px) {
    /* Global */
    .section-title { font-size: 2rem; }
    .sub-heading { font-size: 1.1rem; margin-bottom: 2rem; }
    
    /* Hero */
    .hero-section { padding: 4rem 0; }
    .hero-title { font-size: 2.25rem; line-height: 1.3; }
    .hero-subheadline { font-size: 1.2rem !important; }
    .hero-secondary-subheadline { font-size: 1.1rem !important; }
    .btn-large { font-size: 1.1rem; padding: 16px 30px; width: 100%; }
    
    /* Countdown */
    .countdown-wrapper { padding: 1.5rem; }
    .countdown-timer { gap: 1rem; }
    .time-block .time { font-size: 2.25rem; }
    .time-block .label { font-size: 0.7rem; }
    .event-details h3 { font-size: 1.25rem; }

    /* Grids */
    .reasons-grid, .testimonials-grid, .next-steps-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .host-image-wrapper { max-width: 250px; margin: 0 auto; }
    .host-story h2 { font-size: 1.75rem; }
    
    /* FAQ */
    .faq-question { font-size: 1rem; padding: 1.25rem 1rem; }
    .faq-answer-content { padding: 0 1rem 1.5rem 3rem; }

    /* Modal */
    .modal-content { width: 95%; padding: 0; }
    .optin-container { padding: 1.5rem; }
    .optin-header h2 { font-size: 1.25rem; }
    
    /* Policy Pages */
    .policy-title { font-size: 2rem; }
    .policy-card { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.85rem; }
    .time-block .time { font-size: 1.75rem; }
    .countdown-timer { gap: 0.5rem; }
    .discovery-list li { font-size: 0.95rem; }
    .reason-card { padding: 1.5rem; }
    .testimonial-card { padding: 1.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .results-gallery { grid-template-columns: 1fr; }
}
