/* CSS Variables - Matching other pages */

:root {
    --maroon: #800020;
    --maroon-light: #a53860;
    --gold: #d4af37;
    --dark: #1a1a1a;
    --gray: #444;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-h1: 3rem;
    --font-size-h2: 2.5rem;
    --font-size-h3: 2rem;
    --font-size-hero: 3.5rem;
    --font-size-section: 2.75rem;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    font-size: var(--font-size-base);
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block;
}

h1, h2, h3, h4, h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section { 
    padding: 100px 0; 
}

/* ================= HEADER - MATCHING ABOUT PAGE ================= */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 6px 0;
    transition: var(--transition);
    transform: translateY(0) !important;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo { 
    height: 85px;
    width: auto; 
    transition: var(--transition);
    object-fit: contain;
}

.logo:hover { 
    transform: scale(1.05); 
}

.menu-button {
    background: none;
    border: none;
    color: var(--maroon);
    font-weight: 600;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.menu-button:hover { 
    background: rgba(128, 0, 32, 0.1); 
}

/* ================= DESKTOP HEADER ================= */
.desktop-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 8px 0;
    animation: slideDown 0.5s ease;
}

.desktop-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0 auto;
}

.desktop-nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--maroon);
    transition: var(--transition);
}

.desktop-nav a:hover {
    color: var(--maroon);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a.active {
    color: var(--maroon);
}

.desktop-nav a.active::after {
    width: 100%;
}

.desktop-cta {
    background: var(--maroon);
    color: var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.2);
    white-space: nowrap;
    border: 2px solid var(--maroon);
    font-size: 1rem;
}

.desktop-cta:hover {
    background: var(--maroon-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(128, 0, 32, 0.3);
    border-color: var(--maroon-light);
}

/* ================= RESPONSIVE HEADER SHOW/HIDE ================= */
@media (min-width: 769px) {
    .desktop-header {
        display: block;
    }
    .main-header {
        display: none;
    }
}

@media (max-width: 768px) {
    .desktop-header {
        display: none;
    }
    .main-header {
        display: block;
    }
    
    .logo {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 60px;
    }
}

/* ================= Mobile Menu ================= */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    padding: 120px 40px 40px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active { 
    right: 0; 
}

.mobile-menu-links { 
    display: flex; 
    flex-direction: column; 
    gap: 25px; 
}

.mobile-menu-link {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
    position: relative;
}

.mobile-menu-link:hover {
    color: var(--maroon);
    padding-left: 15px;
}

.mobile-menu-link.active {
    color: var(--maroon);
    font-weight: 600;
    border-left: 3px solid var(--maroon);
    padding-left: 15px;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--maroon);
    transform: rotate(90deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}

.overlay.active { 
    display: block; 
}

/* ================= HERO - LIKE ABOUT PAGE ================= */
.getstarted-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--maroon);
    color: white;
    overflow: hidden;
    /* FIXED: Remove all gaps */
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Mobile-first approach - default to small image */
.getstarted-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(135deg, 
            rgba(128, 0, 32, 0.85) 0%,
            rgba(128, 0, 32, 0.75) 50%,
            rgba(128, 0, 32, 0.7) 100%),
        url('images/medium-shot-happy-african-people-small.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Medium screens */
@media (min-width: 768px) {
    .getstarted-hero::before {
        background-image: 
            linear-gradient(135deg, 
                rgba(128, 0, 32, 0.85) 0%,
                rgba(128, 0, 32, 0.75) 50%,
                rgba(128, 0, 32, 0.7) 100%),
            url('images/medium-shot-happy-african-people-medium.jpg');
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .getstarted-hero::before {
        background-image: 
            linear-gradient(135deg, 
                rgba(128, 0, 32, 0.85) 0%,
                rgba(128, 0, 32, 0.75) 50%,
                rgba(128, 0, 32, 0.7) 100%),
            url('images/medium-shot-happy-african-people.jpg');
    }
}

/* Desktop: Fixed background for parallax effect */
@media (min-width: 769px) {
    .getstarted-hero::before {
        background-attachment: fixed;
    }
}

/* Mobile: Scroll background for better performance */
@media (max-width: 768px) {
    .getstarted-hero::before {
        background-attachment: scroll;
    }
    .getstarted-hero {
        min-height: 100vh;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .getstarted-hero {
        min-height: 100vh;
    }
}

/* ================= FIX HERO IMAGE ON MOBILE ================= */
/* Force the hero background image to show on mobile */
@media (max-width: 768px) {
    .getstarted-hero::before {
        background-image: 
            linear-gradient(135deg, 
                rgba(128, 0, 32, 0.88) 0%,
                rgba(128, 0, 32, 0.78) 50%,
                rgba(128, 0, 32, 0.72) 100%),
            url('images/medium-shot-happy-african-people-small.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        content: '' !important;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .getstarted-hero::before {
        background-image: 
            linear-gradient(135deg, 
                rgba(128, 0, 32, 0.90) 0%,
                rgba(128, 0, 32, 0.80) 50%,
                rgba(128, 0, 32, 0.75) 100%),
            url('images/medium-shot-happy-african-people-small.jpg') !important;
    }
}

.getstarted-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 2;
}

.hero-box {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    /* FIXED: Remove gap and adjust for header */
    padding: 0 !important;
    padding-top: 180px !important; /* Adjusted for header height */
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.hero-box h1 {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.hero-box p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* ================= FIX HERO TEXT SIZE ON MOBILE ================= */
/* Make hero text responsive on mobile */
@media (max-width: 768px) {
    .hero-box {
        padding: 0 25px !important;
        padding-top: 150px !important; /* Adjusted for mobile header */
    }
    
    .hero-box h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-box p {
        font-size: 1.2rem !important;
        line-height: 1.5 !important;
        margin-bottom: 30px !important;
    }
    
    .hero-tagline {
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
        margin-bottom: 15px !important;
    }
    
    .btn {
        padding: 14px 35px !important;
        font-size: 1rem !important;
    }
}

/* For small mobile screens */
@media (max-width: 480px) {
    .hero-box h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-box p {
        font-size: 1.1rem !important;
    }
    
    .hero-box {
        padding: 0 20px !important;
        padding-top: 140px !important; /* Adjusted for small mobile */
    }
    
    .hero-tagline {
        font-size: 0.85rem !important;
        padding: 6px 12px !important;
    }
    
    .btn {
        padding: 12px 30px !important;
        font-size: 0.95rem !important;
    }
}

/* For extra small screens */
@media (max-width: 360px) {
    .hero-box h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-box p {
        font-size: 1rem !important;
    }
    
    .hero-box {
        padding: 0 15px !important;
        padding-top: 130px !important;
    }
    
    .btn {
        padding: 12px 25px !important;
        width: 100% !important;
        max-width: 280px !important;
    }
}

/* Ensure text doesn't overflow */
.hero-box h1,
.hero-box p {
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
}

.btn {
    display: inline-block;
    background: white;
    color: var(--maroon);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease 0.4s both;
    border: 2px solid white;
}

.btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ================= CONTENT WRAPPER ================= */
.content-wrapper { 
    position: relative; 
    z-index: 1;
    background-color: var(--light-gray);
}

/* Background image only shows on desktop/tablet (≥769px) */
@media (min-width: 769px) {
    .content-wrapper {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
            url('images/medium-shot-happy-african-people.jpg');
        background-size: cover;
        background-position: center center;
        background-attachment: fixed;
        background-repeat: no-repeat;
    }
}

/* Medium screens (tablet) */
@media (min-width: 769px) and (max-width: 1199px) {
    .content-wrapper {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
            url('images/medium-shot-happy-african-people-medium.jpg');
    }
}

/* Large screens (desktop) */
@media (min-width: 1200px) {
    .content-wrapper {
        background-image: 
            linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.15)),
            url('images/medium-shot-happy-african-people.jpg');
    }
}

/* Mobile (< 769px) - NO BACKGROUND IMAGE */
@media (max-width: 768px) {
    .content-wrapper {
        background-image: none !important;
    }
}

/* ================= BENEFITS SECTION ================= */
.benefits-section {
    padding: 100px 0;
}

.section-header { 
    text-align: center; 
    margin-bottom: 60px; 
}

.section-header-box {
    background: rgba(255, 255, 255, 0.92);
    padding: 50px 60px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.section-header h2 { 
    font-size: var(--font-size-section); 
    margin-bottom: 15px; 
    color: var(--dark); 
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--maroon);
}

.section-header p { 
    font-size: 1.2rem; 
    color: var(--gray); 
    max-width: 700px;
    margin: 25px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.88);
    padding: 50px 35px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--maroon);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.benefit-card:hover::before {
    opacity: 0.85;
}

.benefit-card > * {
    position: relative;
    z-index: 2;
}

.benefit-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.benefit-card:hover .benefit-icon,
.benefit-card:hover h3,
.benefit-card:hover p {
    color: white;
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--maroon);
    margin-bottom: 30px;
    transition: var(--transition);
}

.benefit-card h3 {
    color: var(--dark);
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
    transition: var(--transition);
}

/* ================= PRICE SUMMARY ================= */
.price-summary {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--maroon);
    animation: slideIn 0.5s ease;
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-summary h3 {
    color: var(--maroon);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--gray);
    font-weight: 500;
}

.price-value {
    color: var(--dark);
    font-weight: 600;
}

.price-row.subtotal .price-value {
    color: var(--maroon);
}

.price-row.total {
    background: rgba(128, 0, 32, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    border: 2px solid var(--maroon);
}

.price-row.total .price-value {
    color: var(--maroon);
    font-size: 1.3rem;
}

/* ================= PAYMENT METHOD ================= */
.payment-method-section {
    margin: 40px 0 30px;
    padding: 30px;
    background: rgba(245, 245, 245, 0.8);
    border-radius: 15px;
}

.payment-method-section h3 {
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid #eee;
}

.payment-option:hover {
    border-color: var(--maroon);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.payment-option input[type="radio"] {
    margin: 0;
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--maroon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.payment-option span {
    font-weight: 600;
    color: var(--dark);
}

/* ================= BOOKING SECTION ================= */
.booking-section {
    padding: 100px 0;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-form {
    background: rgba(255, 255, 255, 0.92);
    padding: 70px 60px;
    border-radius: 25px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--maroon) 0%, var(--gold) 100%);
}

.booking-form::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.booking-form > * {
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    background: var(--white);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.12);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

/* PayPal Button Container */
#paypal-button-container {
    margin: 30px 0;
    min-height: 55px;
}

/* Submit Button Styles */
.submit-btn {
    display: block;
    margin: 50px auto 0;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-light) 100%);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    max-width: 350px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.2);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(128, 0, 32, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secondary-btn {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%) !important;
    margin-top: 20px !important;
}

.secondary-btn:hover {
    background: transparent !important;
    color: #495057 !important;
    border-color: #495057 !important;
}

/* Loading overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 32, 0.95);
    color: white;
    z-index: 1000;
    text-align: center;
    padding-top: 200px;
    font-size: 24px;
}

.loading-overlay.show {
    display: block;
}

.loading-animation {
    font-size: 80px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ================= FOOTER ================= */
.main-footer { 
    background: #1a1a1a; 
    color: var(--white); 
    padding: 80px 0 30px; 
    position: relative; 
    z-index: 2; 
}

.footer-content { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 50px; 
    margin-bottom: 50px; 
}

.footer-logo-container { 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
    margin-bottom: 25px; 
}

.footer-logo { 
    height: 85px;
    width: auto; 
    object-fit: contain;
}

.footer-logo-text { 
    font-family: 'Inter', sans-serif;
    font-weight: 700; 
    font-size: 1.5rem; 
    color: var(--white); 
}

.footer-tagline { 
    color: #aaa; 
    font-size: 0.95rem; 
    margin-bottom: 25px; 
    line-height: 1.6; 
}

.whatsapp-footer-link { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    background: #25D366; 
    color: white; 
    padding: 12px 25px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 0.95rem; 
    transition: var(--transition); 
}

.whatsapp-footer-link:hover { 
    background: #128C7E; 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3); 
}

.social-links { 
    display: flex; 
    gap: 15px; 
    margin-top: 25px; 
}

.social-link { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    width: 40px; 
    height: 40px; 
    background: rgba(255, 255, 255, 0.1); 
    color: var(--white); 
    border-radius: 50%; 
    text-decoration: none; 
    transition: var(--transition); 
}

.social-link:hover { 
    background: var(--maroon); 
    transform: translateY(-3px); 
}

.footer-column h4 { 
    color: var(--white); 
    font-size: 1.2rem; 
    margin-bottom: 25px; 
    position: relative; 
    padding-bottom: 10px; 
}

.footer-column h4::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 40px; 
    height: 2px; 
    background: var(--maroon); 
}

.footer-links { 
    list-style: none; 
}

.footer-links li { 
    margin-bottom: 12px; 
}

.footer-links a { 
    color: #aaa; 
    text-decoration: none; 
    transition: var(--transition); 
    display: inline-block; 
}

.footer-links a:hover { 
    color: var(--white); 
    transform: translateX(5px); 
}

.contact-info { 
    color: #aaa; 
}

.contact-item { 
    margin-bottom: 15px; 
    display: flex; 
    align-items: flex-start; 
    gap: 10px; 
}

.contact-item i { 
    color: var(--maroon); 
    margin-top: 5px; 
    font-size: 1.1rem; 
}

.footer-bottom { 
    text-align: center; 
    padding-top: 30px; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: #777; 
    font-size: 0.9rem; 
}

.footer-bottom p:first-child { 
    margin-bottom: 10px; 
}

/* ================= RESPONSIVE DESIGN ================= */
@media (max-width: 991px) {
    .footer-logo {
        height: 75px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        height: 70px;
    }
    
    .hero-box { 
        max-width: 100%; 
        text-align: center; 
        margin: 0 20px;
    }
    
    .hero-box h1 {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    
    .hero-box p {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .booking-form::after {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .footer-content {
        gap: 50px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 60px;
    }
    
    .hero-box h1 {
        font-size: 2.1rem;
    }
    
    .hero-box p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header-box {
        padding: 35px 25px;
    }
    
    .booking-form {
        padding: 40px 25px;
    }
    
    .benefit-card {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-logo-container {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
    
    .submit-btn {
        padding: 18px 30px;
        font-size: 1.1rem;
        max-width: 280px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 20px;
    }
    
    .benefit-card:hover {
        transform: translateY(-8px);
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .price-summary {
        padding: 20px 15px;
    }
    
    .payment-method-section {
        padding: 20px 15px;
    }
}

/* Tablet specific fixes */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-box h1 {
        font-size: 3.2rem;
    }
    
    .hero-box p {
        font-size: 1.3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .benefit-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Large mobile landscape */
@media (max-width: 896px) and (orientation: landscape) {
    .getstarted-hero {
        min-height: 100vh;
    }
    
    .hero-box {
        padding: 20px 0;
    }
    
    .hero-box h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-box p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .getstarted-hero::before,
    .content-wrapper {
        background-size: cover !important;
    }
}

/* Print styles */
@media print {
    .getstarted-hero,
    .content-wrapper {
        background: none !important;
    }
    
    .getstarted-hero {
        color: var(--dark);
        background: var(--white) !important;
    }
    
    .hero-box h1 {
        color: var(--dark);
    }
    
    .section-header-box,
    .benefit-card,
    .booking-form {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    #paypal-button-container {
        display: none !important;
    }
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
  }
  
  .close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .modal-success { border-left: 6px solid #4CAF50; }
  .modal-error   { border-left: 6px solid #f44336; }
  .modal-info    { border-left: 6px solid #2196F3; }

