

/* ============================================
   CSS Variables & Base Styles
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Francois+One&display=swap');

:root {
    --purple-dark: #2D1B4E;
    --purple-medium: #4A2C7A;
    --purple-light: #6B4C9A;
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8960C;
    --cream: #FDF8F0;
    --charcoal: #1A1A2E;
    --soft-lavender: #E8E0F0;
    --font-heading: 'Francois One', sans-serif;
    --font-body: 'Francois One', sans-serif;
    --border-radius: 16px;
    --shadow-medium: 0 8px 32px rgba(45, 27, 78, 0.2);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #1A1A2E 100%);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background:var(--purple-dark);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    transition: var(--transition);
}

.nav-brand i {
    color: var(--gold);
    font-size: 1.3rem;
}

.nav-brand {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: inline-block;
    padding: 10px 18px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 60%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: 60%;
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--charcoal);
    font-weight: 500;
    padding: 10px 24px;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    color: var(--charcoal);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Responsive Navigation */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(180deg, var(--charcoal) 0%, var(--purple-dark) 100%);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1rem;
        background: rgba(45, 27, 78, 0.4);
        border: 1px solid rgba(212, 175, 55, 0.15);
        border-radius: 12px;
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.15);
        border-color: var(--gold);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.nav-cta {
        margin-top: 10px;
        background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
        border: none;
    }

    /* Overlay for mobile menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Title */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--cream);
    letter-spacing: 1px;
}

.section-title .highlight {
    color: var(--gold);
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--soft-lavender);
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.text-center {
    text-align: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-medium) 0%, var(--purple-light) 100%);
    color: var(--cream);
    box-shadow: 0 4px 20px rgba(106, 76, 154, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(106, 76, 154, 0.6);
}

.btn-secondary {
    background: var(--gold);
    color: var(--charcoal);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D1B4E 50%, #1A1A2E 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-top: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    color: var(--gold);
}

.hero-badge span {
    color: var(--gold-light);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--soft-lavender);
    margin-bottom: 1rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.6;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

@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);
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.3) 50%, transparent 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 400px;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--gold);
    position: relative;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-photo {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple-medium) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--gold);
    position: relative;
    z-index: 2;
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.8;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.about-text {
    padding-left: 20px;
}

.about-description {
    font-size: 1.15rem;
    color: var(--cream);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

.about-decorations {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.decoration-star {
    color: var(--gold);
    font-size: 1rem;
    animation: twinkle 2s infinite ease-in-out;
}

.decoration-star:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-star:nth-child(3) {
    animation-delay: 1s;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* About Social Links */
.about-social {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.about-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.about-social .social-link:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(45, 27, 78, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.card-icon i {
    font-size: 2rem;
    color: var(--charcoal);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--soft-lavender);
    font-size: 1rem;
    line-height: 1.6;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* ============================================
   Travel Business Section - New Layout
   ============================================ */
.travel-business {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.4) 50%, transparent 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.travel-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-plane {
    position: absolute;
    color: rgba(212, 175, 55, 0.15);
    font-size: 2rem;
}

.fp-1 {
    top: 15%;
    left: 5%;
    animation: floatDiagonal1 20s infinite linear;
}

.fp-2 {
    top: 60%;
    right: 10%;
    animation: floatDiagonal2 25s infinite linear;
    font-size: 1.5rem;
}

.fp-3 {
    bottom: 20%;
    left: 20%;
    animation: floatDiagonal3 22s infinite linear;
    font-size: 1.8rem;
}

.floating-icon {
    position: absolute;
    color: rgba(212, 175, 55, 0.1);
    font-size: 3rem;
}

.fi-1 {
    top: 30%;
    right: 5%;
    animation: floatUpDown 8s infinite ease-in-out;
}

.fi-2 {
    bottom: 30%;
    left: 8%;
    animation: floatUpDown 10s infinite ease-in-out 2s;
    font-size: 2.5rem;
}

.fi-3 {
    top: 70%;
    right: 15%;
    animation: floatUpDown 9s infinite ease-in-out 1s;
    font-size: 2rem;
}

@keyframes floatDiagonal1 {
    0% {
        transform: translate(0, 0) rotate(20deg);
    }

    50% {
        transform: translate(200px, -100px) rotate(30deg);
    }

    100% {
        transform: translate(0, 0) rotate(20deg);
    }
}

@keyframes floatDiagonal2 {
    0% {
        transform: translate(0, 0) rotate(-15deg);
    }

    50% {
        transform: translate(-150px, 80px) rotate(-25deg);
    }

    100% {
        transform: translate(0, 0) rotate(-15deg);
    }
}

@keyframes floatDiagonal3 {
    0% {
        transform: translate(0, 0) rotate(10deg);
    }

    50% {
        transform: translate(100px, -60px) rotate(20deg);
    }

    100% {
        transform: translate(0, 0) rotate(10deg);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Travel Header */
.travel-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.travel-icon-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    animation: pulseGlow 3s infinite ease-in-out;
}

.travel-icon-badge i {
    font-size: 2.5rem;
    color: var(--charcoal);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 50px rgba(212, 175, 55, 0.6);
    }
}

.travel-intro {
    max-width: 600px;
    margin: 0 auto;
}

.travel-intro p {
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

/* Travel Features Grid */
.travel-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.travel-feature-card {
    background: rgba(45, 27, 78, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.travel-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(45, 27, 78, 0.4);
}

.travel-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.travel-feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scale(1.1);
}

.travel-feature-card .feature-icon i {
    font-size: 1.5rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.travel-feature-card:hover .feature-icon i {
    color: var(--charcoal);
}

.travel-feature-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.travel-feature-card p {
    font-size: 0.9rem;
    color: var(--soft-lavender);
    line-height: 1.5;
}

/* CTA Card */
.travel-cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    background: rgba(45, 27, 78, 0.7);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 40px 50px;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 2rem;
}

.cta-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    font-size: 1rem;
}

.cta-points i {
    color: var(--gold);
    font-size: 1rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* CTA Visual - Orbiting Globe */
.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-globe {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-globe>i {
    font-size: 4rem;
    color: var(--gold);
    z-index: 3;
    animation: gentlePulse 3s infinite ease-in-out;
}

@keyframes gentlePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.orbit {
    position: absolute;
    border: 2px dashed rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 100px;
    height: 100px;
    animation: rotateOrbit 15s linear infinite;
}

.orbit-2 {
    width: 140px;
    height: 140px;
    animation: rotateOrbit 20s linear infinite reverse;
}

.orbit-3 {
    width: 180px;
    height: 180px;
    animation: rotateOrbit 25s linear infinite;
    border-style: dotted;
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Orbiting Icons */
.orbit-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.orbit-icon i {
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* Position each icon on different orbits */
.orbit-icon-1 {
    animation: orbitPath1 8s linear infinite;
}

.orbit-icon-2 {
    animation: orbitPath2 10s linear infinite;
}

.orbit-icon-3 {
    animation: orbitPath3 12s linear infinite;
}

.orbit-icon-4 {
    animation: orbitPath1 9s linear infinite reverse;
}

.orbit-icon-5 {
    animation: orbitPath2 11s linear infinite reverse;
}

.orbit-icon-6 {
    animation: orbitPath3 13s linear infinite reverse;
}

@keyframes orbitPath1 {
    0% {
        top: 50%;
        left: calc(50% + 48px);
        transform: translate(-50%, -50%);
    }

    25% {
        top: calc(50% + 48px);
        left: 50%;
        transform: translate(-50%, -50%);
    }

    50% {
        top: 50%;
        left: calc(50% - 48px);
        transform: translate(-50%, -50%);
    }

    75% {
        top: calc(50% - 48px);
        left: 50%;
        transform: translate(-50%, -50%);
    }

    100% {
        top: 50%;
        left: calc(50% + 48px);
        transform: translate(-50%, -50%);
    }
}

@keyframes orbitPath2 {
    0% {
        top: calc(50% - 68px);
        left: 50%;
        transform: translate(-50%, -50%);
    }

    25% {
        top: 50%;
        left: calc(50% + 68px);
        transform: translate(-50%, -50%);
    }

    50% {
        top: calc(50% + 68px);
        left: 50%;
        transform: translate(-50%, -50%);
    }

    75% {
        top: 50%;
        left: calc(50% - 68px);
        transform: translate(-50%, -50%);
    }

    100% {
        top: calc(50% - 68px);
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@keyframes orbitPath3 {
    0% {
        top: calc(50% + 88px);
        left: 50%;
        transform: translate(-50%, -50%);
    }

    25% {
        top: 50%;
        left: calc(50% - 88px);
        transform: translate(-50%, -50%);
    }

    50% {
        top: calc(50% - 88px);
        left: 50%;
        transform: translate(-50%, -50%);
    }

    75% {
        top: 50%;
        left: calc(50% + 88px);
        transform: translate(-50%, -50%);
    }

    100% {
        top: calc(50% + 88px);
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* Globe Halo Effect */
.globe-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: haloBreath 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes haloBreath {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* ============================================
   Magic & Miracles Section
   ============================================ */
.magic-miracles {
    padding: 100px 20px;
}

.magic-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.magic-visual {
    display: flex;
    justify-content: center;
}

.book-display {
    position: relative;
    width: 250px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book {
    width: 180px;
    height: 240px;
    background: linear-gradient(135deg, var(--purple-medium) 0%, var(--purple-dark) 100%);
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    border-left: 8px solid var(--gold);
}

.book i {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.8;
}

.book::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--gold-dark);
    border-radius: 2px;
}

.magic-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.magic-sparkles i {
    position: absolute;
    color: var(--gold);
    animation: sparkle 2s infinite ease-in-out;
}

.sparkle-1 {
    top: 10%;
    right: 10%;
    font-size: 1.5rem;
}

.sparkle-2 {
    bottom: 20%;
    left: 10%;
    font-size: 1rem;
    animation-delay: 0.5s;
}

.sparkle-3 {
    top: 30%;
    left: 5%;
    font-size: 1.2rem;
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.magic-text {
    padding-left: 20px;
}

.magic-description {
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.magic-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.magic-intro .magic-description {
    margin-bottom: 0;
}

/* Books Container - Horizontal Layout */
.books-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.book-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    background: rgba(45, 27, 78, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    align-items: center;
}

/* Reverse layout - info on left, image on right */
.book-card-reverse {
    grid-template-columns: 1fr 280px;
}

.book-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(45, 27, 78, 0.4);
}

.book-image {
    position: relative;
    width: 100%;
    height: auto;
}

.book-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.book-card:hover .book-image img {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.book-glow {
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 12px;
    filter: blur(20px);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.book-card:hover .book-glow {
    opacity: 1;
}

.book-info {
    position: relative;
    z-index: 2;
}

.book-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.book-subtitle {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.book-description {
    font-size: 1rem;
    color: var(--soft-lavender);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.book-card .btn {
    display: inline-flex;
    width: auto;
}

/* ============================================
   Affirmations Section
   ============================================ */
.affirmations {
    padding: 100px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.3) 50%, transparent 100%);
    text-align: center;
}

.affirmations-content {
    max-width: 700px;
    margin: 0 auto;
}

.affirmations-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--purple-medium) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 3px solid var(--gold);
    animation: gentle-float 4s infinite ease-in-out;
}

@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.affirmations-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.affirmations-description {
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* ============================================
   Email List Section
   ============================================ */
.email-list {
    padding: 100px 20px;
}

.email-card {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(45, 27, 78, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 60px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.email-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.email-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.email-icon i {
    font-size: 2.5rem;
    color: var(--charcoal);
}

.email-description {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.email-card .btn {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

/* ============================================
   Social Proof Section
   ============================================ */
.social-proof {
    padding: 80px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(45, 27, 78, 0.2) 50%, transparent 100%);
}

.proof-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    margin-bottom: 2rem;
}

.quote-icon i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.6;
}

.proof-text {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--cream);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
}

.proof-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.proof-decoration .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.proof-decoration i {
    color: var(--gold);
    font-size: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 20px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.8) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--soft-lavender);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

a {
    text-decoration: none;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.footer-copyright p {
    color: var(--soft-lavender);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-text {
        padding-left: 0;
    }

    .about-decorations {
        justify-content: center;
    }

    /* New Travel Section Responsive */
    .travel-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .travel-cta-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .cta-points {
        justify-content: center;
    }

    .cta-visual {
        order: -1;
        margin-bottom: 1rem;
    }

    .cta-globe {
        width: 120px;
        height: 120px;
    }

    .cta-globe>i {
        font-size: 3rem;
    }

    .orbit-1 {
        width: 100px;
        height: 100px;
    }

    .orbit-2,
    .orbit-plane {
        width: 130px;
        height: 130px;
    }

    .magic-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .magic-text {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .image-frame {
        width: 220px;
        height: 220px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .travel-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .travel-feature-card {
        padding: 25px 20px;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }

    .cta-points {
        flex-direction: column;
        gap: 10px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
        width: 100%;
    }

    .book-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .book-image {
        max-width: 220px;
        margin: 0 auto;
    }

    .book-card .btn {
        width: 100%;
        justify-content: center;
    }

    .visual-card {
        width: 250px;
        height: 250px;
    }

    .visual-icon {
        width: 100px;
        height: 100px;
    }

    .visual-icon i {
        font-size: 2.5rem;
    }

    .ring-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }

    .ring-2 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }

    .ring-3 {
        width: 250px;
        height: 250px;
        top: -125px;
        left: -125px;
    }

    .book-display {
        width: 200px;
        height: 250px;
    }

    .book {
        width: 150px;
        height: 200px;
    }

    .book i {
        font-size: 3rem;
    }

    .email-card {
        padding: 40px 25px;
    }

    .craving-list li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 8px 16px;
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .about-description,
    .magic-description,
    .affirmations-description,
    .email-description {
        font-size: 1rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .top-text p {
        font-size: 1rem;
    }

    .reassurance-text {
        padding: 15px 20px;
    }

    .proof-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.social-link:focus {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}