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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Variables */
:root {
    --primary: #0A192F; /* Deep Navy */
    --accent: #64FFDA; /* Electric Teal/Green */
    --text-light: #8892b0;
    --white: #ffffff;
    --light-gray: #f4f4f4;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--accent);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary);
    margin-left: 10px;
    transition: all 0.3s ease;
}

.btn-modified {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--accent);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 50px;
}

.bg-light {
    background-color: var(--light-gray);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.dot {
    color: var(--primary); /* Keep same or use accent */
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
}

.btn-nav {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
}

/* Hero */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.8)), url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.2rem;
    color: #ccd6f6;
    margin-bottom: 30px;
}

.trust-badge {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #8892b0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Problem Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    padding: 30px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #eee;
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.step-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(10, 25, 47, 0.1);
    margin-bottom: -20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    color: var(--primary);
}

/* Pricing */
.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid var(--primary);
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.currency {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.features-list {
    text-align: left;
    margin: 30px 0;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.guarantee {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ccd6f6;
    margin-left: 20px;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    color: #8892b0;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Quick fix for mobile menu - add JS later if needed */
    .steps-grid { grid-template-columns: 1fr; }
    .btn-secondary { display: block; margin: 10px 0 0 0; text-align: center;}
    .btn-primary { display: block; width: 100%; text-align: center; }
}



/* --- Elegant Success Page Styles --- */

.success-bg {
    background-color: #F8F9FC;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.confirmation-card {
    background: var(--white);
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
    overflow: hidden;
    border: 1px solid rgba(10, 25, 47, 0.05);
}

/* Header Section */
.card-header {
    background: var(--primary); /* Deep Navy */
    color: var(--white);
    padding: 50px 40px;
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(100, 255, 218, 0.15); /* Low opacity Accent */
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 0 rgba(100, 255, 218, 0.7);
    animation: pulse 2s infinite;
}

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

.card-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    color: #a8b2d1; /* Light Blue-Grey */
    max-width: 80%;
    margin: 0 auto;
}

/* Timeline Section */
.timeline-wrapper {
    padding: 50px 40px;
    background: var(--white);
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
    opacity: 0.5; /* Dim future steps */
}

/* Vertical Line */
.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px; /* Center of marker (32px width / 2 approx) */
    top: 35px;
    bottom: -35px;
    width: 2px;
    background: #eee;
}

.timeline-item.active, 
.timeline-item.current {
    opacity: 1;
}

.timeline-marker {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    z-index: 1;
}

/* Styles for Completed Steps */
.timeline-item.active .timeline-marker {
    background: var(--accent); /* Green */
    color: var(--primary);
}

/* Styles for Current Step */
.timeline-item.current .timeline-marker {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--accent);
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Footer Section */
.card-footer {
    padding: 30px 40px;
    background: #FAFAFA;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.btn-primary-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-primary-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.nav-support-link {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .card-header { padding: 40px 20px; }
    .timeline-wrapper { padding: 40px 20px; }
    .card-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .card-header h1 { font-size: 2rem; }
    .subtitle { max-width: 100%; }
}

/* --- Legal Pages Styles --- */

.legal-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.legal-header p {
    color: #a8b2d1;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-content {
    max-width: 800px; /* Narrower for better readability */
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.legal-block p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-block ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

.legal-block li {
    margin-bottom: 10px;
}

.nav-back-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-back-link:hover {
    color: var(--accent); /* Electric Green on hover */
}

/* --- Contact Page Styles --- */

.contact-header {
    text-align: center;
    padding: 60px 0 40px;
    background-color: #f8f9fc;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0; /* No gap because we want them touching or seamless */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

/* Left Side */
.contact-info {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-desc {
    color: #a8b2d1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item a, .info-item p {
    color: #a8b2d1;
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--accent);
}

/* Right Side (Form) */
.contact-form-container {
    padding: 50px;
    background: var(--white);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    background-color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info, .contact-form-container {
        padding: 30px;
    }
}

/* --- Booking / Checkout Page Styles --- */

.booking-bg {
    background-color: #F8F9FC;
    min-height: 100vh;
    padding-top: 40px;
}

.secure-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #c8e6c9;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Left side wider */
    gap: 50px;
    align-items: start;
}

/* Left Column */
.booking-details h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.sub-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.package-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.package-summary h3 {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    color: var(--primary);
}

.booking-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}

.booking-list span {
    margin-right: 15px;
    font-size: 1.2rem;
}

.scout-note {
    background: #fff8e1;
    border-left: 4px solid #ffc107;
    padding: 15px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #856404;
}

/* Right Column (Checkout Card) */
.checkout-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px; /* Sticks as you scroll */
}

.order-summary h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.95rem;
}

.summary-row.total {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.4rem;
    margin-top: 15px;
}

.btn-lg {
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: center;
    background-color: #00b894; /* Green for "Go" */
    border-color: #00b894;
    color: #fff;
}

.btn-lg:hover {
    background-color: #00a187;
    color: #fff;
}

.trust-icons {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
}

.cards span {
    margin: 0 5px;
}

.footer-simple {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #888;
}

.footer-simple a {
    text-decoration: underline;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .booking-wrapper {
        grid-template-columns: 1fr; /* Stack them */
        gap: 30px;
    }
    
    .checkout-card {
        position: static; /* Unstick on mobile */
    }
    
    .booking-wrapper {
        flex-direction: column-reverse; /* Put price at bottom or top? standard is stack normal */
    }
}

/* --- Pre-Book Checklist Styles --- */
.pre-book-checklist {
    background: #fff3e0; /* Light Orange warning background */
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #ffe0b2;
}

.pre-book-checklist h3 {
    color: #e65100;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.checklist-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    background: #e65100;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-item p {
    font-size: 0.95rem;
    color: #5d4037;
    margin: 0;
}

.checklist-item em {
    font-style: italic;
    background: rgba(255,255,255,0.5);
    padding: 2px 5px;
    border-radius: 4px;
}


/* --- New Landing Page Styles --- */

.hero-badge {
    background: rgba(100, 255, 218, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--accent);
}

/* Scenarios Grid (Replacing Testimonials) */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.scenario-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary);
}

.scenario-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.scenario-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary);
}

.scenario-card p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* Dark Trust Section */
.bg-dark {
    background-color: var(--primary);
    color: var(--white);
}

.text-white {
    color: var(--white) !important;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-item h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.trust-item p {
    color: #ccd6f6;
    line-height: 1.6;
}

/* Highlight Card for Pricing Comparison */
.highlight-card {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-highlight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-dark, #00b894);
    margin: 10px 0;
}

.small-text {
    font-size: 0.9rem;
    color: #777;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .highlight-card {
        transform: scale(1); /* Reset scale on mobile */
    }
}