* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4A853;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-light-gray: #6b7280;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-progress, 0%);
    height: 2px;
    background: linear-gradient(90deg, #D4A853 0%, #e7c98d 100%);
    z-index: 1200;
    box-shadow: 0 0 14px rgba(212, 168, 83, 0.55);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Motion */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px) scale(0.99);
    filter: blur(2.5px);
    transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1), filter 1.05s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: transform, opacity, filter;
}

.reveal-on-scroll.reveal-left {
    transform: translateX(-22px) scale(0.99);
}

.reveal-on-scroll.reveal-right {
    transform: translateX(22px) scale(0.99);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
    filter: blur(0);
}

img:not(.no-motion-img) {
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1), filter 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

img:not(.no-motion-img):hover {
    filter: saturate(1.08) contrast(1.02);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.italic-gold {
    color: var(--primary-gold);
    font-style: italic;
}

.italic-blue {
    color: #60a5fa;
    font-style: italic;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a.nav-cta {
    color: var(--dark-bg) !important;
}

.nav-links a.nav-cta:hover {
    color: var(--dark-bg) !important;
}

.nav-links a.nav-cta::after {
    display: none !important;
}

.nav-links a.nav-cta:hover::after {
    width: 0;
    display: none !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/*Banners*/

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #070707;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 8, 8, 0.78) 0%, rgba(8, 8, 8, 0.55) 55%, rgba(8, 8, 8, 0.72) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    background-size: cover;
    background-position: center;
    transition: opacity 1.8s ease, transform 9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.hero-bg-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px);
    animation: heroLineReveal 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line:nth-of-type(1) { animation-delay: 0.22s; }
.hero-line:nth-of-type(2) { animation-delay: 0.4s; }
.hero-line:nth-of-type(3) { animation-delay: 0.58s; }
.hero-line:nth-of-type(4) { animation-delay: 0.76s; }

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-subtext {
    opacity: 0;
    transform: translateY(22px);
    animation: heroSubtextReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.95s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes heroLineReveal {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtextReveal {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }
    100% {
        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); }
}

/* Stats Section */
.stats {
    background: var(--darker-bg);
    padding: 4rem 0;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
    border-bottom: 1px solid rgba(212, 168, 83, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Journey Section */
.journey {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journey-card {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.1);
}

.journey-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.journey-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.journey-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Education Section */
.education {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.education-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.education-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.certified-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-item {
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tab-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    color: var(--text-white);
    text-align: left;
}

.tab-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 168, 83, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

.tab-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
}

.tab-arrow {
    transition: transform 0.3s ease;
    color: var(--primary-gold);
}

.tab-item.active .tab-arrow {
    transform: rotate(180deg);
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.tab-item.active .tab-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.tab-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.progress-bar {
    height: 4px;
    background: rgba(212, 168, 83, 0.2);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gold);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Destinations Slider */
.destinations {
    padding: 6rem 0;
    background: var(--dark-bg);
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.slider-wrapper {
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.slide {
    min-width: calc(33.333% - 1.33rem);
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 168, 83, 0.2);
    transition: all 0.3s ease;
}

.slide:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.slide-image {
    height: 250px;
    overflow: hidden;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide:hover .slide-image img {
    transform: scale(1.1);
}

.slide-content {
    padding: 1.5rem;
}

.slide-tag {
    color: var(--primary-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.slide h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background: #e5b86a;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    min-width: calc(50% - 1rem);
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-light-gray);
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #e5b86a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 168, 83, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-feature i {
    color: var(--primary-gold);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 168, 83, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.footer-social {
    margin-top: 0.6rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 83, 0.35);
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    color: #e5b86a;
    border-color: #e5b86a;
    background: rgba(212, 168, 83, 0.12);
}

.footer-links {
    max-width: 760px;
    background: rgba(212, 168, 83, 0.06);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 14px;
    padding: 1rem 1.25rem;
}

.footer-line,
.footer-note {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-note {
    margin-top: 0.6rem;
    color: var(--text-light-gray);
}

.footer-contact-row {
    margin-top: 0.5rem;
    color: var(--text-gray);
    font-size: 0.88rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.footer-contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #e5b86a;
}

.footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(212, 168, 83, 0.7);
}

.copyright {
    color: var(--text-light-gray);
    font-size: 0.85rem;
}

/* Section IDs for navigation */
section {
    scroll-margin-top: 80px;
}

/* Video Sections */
.video-wrapper video {
    width: 100% !important;
}


@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-on-scroll,
    .reveal-on-scroll.reveal-left,
    .reveal-on-scroll.reveal-right {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    .scroll-indicator {
        animation: none;
    }

    .hero-line,
    .hero-subtext {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero-bg-slide {
        transition: none;
        transform: none;
    }

    body::before {
        display: none;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .slide {
        min-width: calc(50% - 1rem);
    }

    .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(212, 168, 83, 0.2);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn {
        display: block;
    }

    .education-content {
        grid-template-columns: 1fr;
    }

    .slide {
        min-width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        padding: 1rem;
    }

    .footer-contact-row {
        justify-content: center;
    }

    .footer-dot {
        display: none;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}