/* ===== CSS RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #9b7cb8;
    --deep-purple: #7a5a9b;
    --light-lavender: #e6dff0;
    --ultra-light-lavender: #f8f4fc;
    --soft-gold: #d4af37;
    --bright-gold: #f4d03f;
    --warm-gray: #6e6e73;
    --light-gray: #f5f5f7;
    --text-dark: #1a1a1f;
    --white: #ffffff;
    --success-green: #4caf50;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.6); }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== BASE STYLES ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
    font-size: 18px;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 30px rgba(155, 124, 184, 0.1);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--deep-purple), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--soft-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.book-btn {
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    color: white !important;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(155, 124, 184, 0.3);
}

.book-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(155, 124, 184, 0.4);
}

.book-btn::after {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--ultra-light-lavender) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-purple);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--soft-gold);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--light-lavender);
    top: 50%;
    right: 10%;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--text-dark) 30%, var(--primary-purple) 70%, var(--soft-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 26px);
    color: var(--warm-gray);
    margin-bottom: 48px;
    max-width: 700px;
    line-height: 1.5;
    font-weight: 400;
}

.cta-container {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.primary-cta {
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    color: white;
    padding: 20px 48px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 20px 40px rgba(155, 124, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.primary-cta:hover::before {
    width: 300px;
    height: 300px;
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(155, 124, 184, 0.4);
}

.secondary-cta {
    color: var(--primary-purple);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid var(--primary-purple);
    border-radius: 60px;
}

.secondary-cta:hover {
    background: var(--primary-purple);
    color: white;
    gap: 12px;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.trust-badge {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(155, 124, 184, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(155, 124, 184, 0.15);
}

.badge-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 12px;
    line-height: 1;
}

.badge-label {
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.badge-sublabel {
    color: var(--warm-gray);
    font-size: 14px;
    line-height: 1.4;
}

/* ===== COMMON SECTION STYLES ===== */
section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    color: var(--soft-gold);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--soft-gold);
}

h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-dark) 60%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: clamp(20px, 2.5vw, 24px);
    color: var(--warm-gray);
    max-width: 900px;
    margin-bottom: 60px;
    line-height: 1.6;
    font-weight: 400;
}

/* ===== MIND-BODY SECTION ===== */
.mind-body-section {
    background: white;
    padding: 120px 0;
}

.mind-body-content {
    display: flex;
    flex-direction: column;
}

.mind-body-content h2 {
    font-size: clamp(36px, 4vw, 56px);
    margin-bottom: 32px;
}

.mind-body-text {
    color: var(--warm-gray);
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.8;
    margin-bottom: 40px;
}

.mind-body-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.body-insights {
    margin-top: 40px;
}

.body-insights h3 {
    font-size: clamp(28px, 3vw, 32px);
    color: var(--deep-purple);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.insight-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(155, 124, 184, 0.1);
    display: flex;
    align-items: start;
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-icon {
    color: var(--soft-gold);
    font-size: 24px;
    margin-right: 16px;
    margin-top: 2px;
}

.insight-content {
    flex: 1;
}

.insight-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: clamp(18px, 2vw, 20px);
    margin-bottom: 6px;
}

.insight-description {
    color: var(--warm-gray);
    font-size: clamp(16px, 1.8vw, 17px);
    line-height: 1.6;
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    background: linear-gradient(135deg, white 0%, var(--ultra-light-lavender) 100%);
    position: relative;
    overflow: hidden;
}

.journey-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.journey-text {
    padding-right: 40px;
}

.journey-text h2 {
    font-size: clamp(42px, 5vw, 72px);
    margin-bottom: 24px;
    line-height: 0.95;
}

.journey-subtitle {
    font-size: clamp(24px, 3vw, 32px);
    color: var(--primary-purple);
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.journey-description {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.journey-highlight {
    font-size: clamp(24px, 3vw, 28px);
    color: var(--text-dark);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 32px;
    display: inline-block;
}

.journey-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.journey-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(155, 124, 184, 0.15);
}

.journey-number {
    min-width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    flex-shrink: 0;
}

.journey-card-content h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.journey-card-content p {
    color: var(--warm-gray);
    font-size: clamp(16px, 1.8vw, 17px);
    line-height: 1.6;
}

/* ===== PACKAGES SECTION ===== */
.packages-section {
    background: var(--ultra-light-lavender);
    position: relative;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(155, 124, 184, 0.2);
}

.package-card h3 {
    font-size: clamp(22px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 16px;
}

.package-tagline {
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 24px;
    font-size: 17px;
}

.package-card ul {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}

.package-card li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--warm-gray);
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.5;
}

.package-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-purple);
    font-size: 18px;
    top: 12px;
}

.package-price {
    padding-top: 24px;
    border-top: 2px solid var(--light-gray);
    margin-top: auto;
}

.package-price span {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== INNOVATION SECTION ===== */
.innovation-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.innovation-text h3 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.innovation-text p {
    color: var(--warm-gray);
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.7;
    margin-bottom: 32px;
}

.tech-specs {
    background: linear-gradient(135deg, white, var(--ultra-light-lavender));
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.tech-specs h4 {
    font-size: clamp(22px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(155, 124, 184, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(15px, 1.8vw, 17px);
}

.spec-value {
    color: var(--primary-purple);
    font-weight: 700;
    font-size: clamp(17px, 2vw, 19px);
}

/* ===== WHY XAANT SECTION ===== */
.why-xaant-section {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--primary-purple) 50%, rgba(155, 124, 184, 0.8) 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.why-xaant-section::before,
.why-xaant-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.why-xaant-section::before {
    width: 500px;
    height: 500px;
    background: var(--soft-gold);
    top: -250px;
    right: -250px;
}

.why-xaant-section::after {
    width: 400px;
    height: 400px;
    background: white;
    bottom: -200px;
    left: -200px;
}

.why-xaant-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.why-xaant-section h2 {
    color: white;
    font-size: clamp(42px, 6vw, 80px);
    margin-bottom: 48px;
    background: none;
    -webkit-text-fill-color: white;
}

.why-xaant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.why-card-number {
    font-size: clamp(48px, 5vw, 64px);
    font-weight: 900;
    color: var(--soft-gold);
    opacity: 0.4;
    margin-bottom: 16px;
    line-height: 1;
}

.why-card h3 {
    font-size: clamp(24px, 2.5vw, 28px);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-card p {
    font-size: clamp(16px, 1.8vw, 18px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.why-cta {
    margin-top: 60px;
    background: white;
    color: var(--primary-purple);
    padding: 20px 48px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 19px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ===== INTEGRATION SECTION ===== */
.integration-section {
    background: linear-gradient(135deg, rgba(155, 124, 184, 0.3) 0%, var(--ultra-light-lavender) 50%, white 100%);
    position: relative;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.integration-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(155, 124, 184, 0.2);
}

.integration-card h3 {
    font-size: clamp(22px, 2.5vw, 26px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.integration-card ul {
    list-style: none;
}

.integration-card li {
    padding: 12px 0 12px 28px;
    position: relative;
    color: var(--warm-gray);
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.5;
}

.integration-card li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary-purple);
    font-size: 18px;
    top: 12px;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: white;
    padding: 120px 0;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--ultra-light-lavender);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(155, 124, 184, 0.15);
}

.faq-question {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: start;
    gap: 12px;
}

.faq-number {
    min-width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-purple));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-answer {
    color: var(--warm-gray);
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    padding-left: 48px;
}

/* ===== VIDEO & TEAM SECTIONS ===== */
.video-section {
    background: var(--ultra-light-lavender);
    text-align: center;
}

.video-section .lead-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.video-placeholder {
    background: #000;
    border-radius: 24px;
    max-width: 1000px;
    aspect-ratio: 16/9;
    margin: 60px auto 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder::before {
    content: '▶';
    position: absolute;
    font-size: clamp(60px, 8vw, 80px);
    color: white;
    background: rgba(155, 124, 184, 0.9);
    width: clamp(80px, 10vw, 120px);
    height: clamp(80px, 10vw, 120px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-placeholder:hover::before {
    transform: scale(1.1);
    background: rgba(155, 124, 184, 1);
}

.video-placeholder p {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
}

.team-section {
    background: white;
    text-align: center;
}

.team-highlight {
    background: linear-gradient(135deg, white 0%, var(--ultra-light-lavender) 100%);
    padding: clamp(40px, 6vw, 80px);
    border-radius: 32px;
    margin-top: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-highlight h3 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(135deg, var(--primary-purple), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-highlight p {
    font-size: clamp(18px, 2.2vw, 21px);
    color: var(--warm-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== SPACE GALLERY SLIDER ===== */
.space-slider-container {
    position: relative;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 2/1;
    min-height: 400px;
}

.space-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.space-slide {
    min-width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-lavender), var(--ultra-light-lavender));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 3vw, 30px);
    color: var(--warm-gray);
    font-weight: 600;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    font-size: 20px;
    color: var(--primary-purple);
}

.slider-btn:hover {
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease, width 0.3s ease;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* ===== CENTER INFO CARDS ===== */
.center-info {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.center-details {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.center-details h3 {
    font-size: clamp(28px, 3.5vw, 34px);
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.center-address {
    color: var(--warm-gray);
    font-size: clamp(17px, 2vw, 19px);
    line-height: 1.8;
    margin-bottom: 32px;
}

.center-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

.center-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 16px;
}

.franchise-logo {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.franchise-logo-placeholder {
    text-align: center;
    color: var(--warm-gray);
}

.franchise-logo-placeholder p {
    font-size: 15px;
    margin-top: 12px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--deep-purple), var(--primary-purple));
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.cta-section::before {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.2);
    top: -200px;
    right: -200px;
}

.cta-section::after {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    bottom: -150px;
    left: -150px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 24px;
    background: none;
    -webkit-text-fill-color: white;
}

.cta-section .lead-text {
    color: rgba(255, 255, 255, 0.95);
    margin: 0 auto 48px;
    max-width: 700px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Contact Section Styles - Xaant Lounge Theme */

.contact-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #f8f5ff 0%, #fff5f8 50%, #fffaf5 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(139, 107, 168, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(191, 155, 131, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(180, 151, 197, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.contact-section .container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(139, 107, 168, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    border: 1px solid rgba(139, 107, 168, 0.1);
}

.contact-section .section-header {
    text-align: center;
    padding: 20px 20px;
    background: linear-gradient(135deg, rgba(139, 107, 168, 0.1) 0%, rgba(191, 155, 131, 0.1) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.contact-section .section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8B6BA8, #BF9B83, transparent);
    animation: shimmer 4s infinite;
}

.contact-section .section-header::after {
    content: '';
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #8B6BA8, #BF9B83, #B497C5);
    border-radius: 10px;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-section .section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
    background: linear-gradient(135deg, #8B6BA8 0%, #BF9B83 50%, #B497C5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: gradientShift 5s ease infinite;
    background-size: 200% auto;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.contact-section .section-header p {
    font-size: 1.2rem;
    color: #6B5B7A;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-section .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.contact-section .contact-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent,
        #8B6BA8 20%,
        #BF9B83 50%,
        #B497C5 80%,
        transparent);
    transform: translateX(-50%);
}

.contact-section .form-side {
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.5);
}

.contact-section .map-side {
    padding: 0;
    background: rgba(248, 245, 255, 0.3);
    position: relative;
}

/* Form Styles */
.contact-section .contact-form {
    width: 100%;
}

.contact-section .form-group {
    margin-bottom: 30px;
    position: relative;
}

.contact-section .form-group label {
    display: block;
    margin-bottom: 10px;
    color: #8B6BA8;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(139, 107, 168, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    color: #3d3d3d;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    color: rgba(107, 91, 122, 0.4);
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    outline: none;
    border-color: #8B6BA8;
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 4px rgba(139, 107, 168, 0.1),
        0 8px 20px rgba(139, 107, 168, 0.15);
    transform: translateY(-2px);
}

.contact-section .form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-section .submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #8B6BA8 0%, #9F7FB8 50%, #B497C5 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 107, 168, 0.3);
}

.contact-section .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(139, 107, 168, 0.4),
        0 0 20px rgba(159, 127, 184, 0.3);
    background: linear-gradient(135deg, #9F7FB8 0%, #B497C5 50%, #C8AED8 100%);
}

.contact-section .submit-btn:hover::before {
    left: 100%;
}

.contact-section .submit-btn:active {
    transform: translateY(-1px);
}

/* Map Styles */
.contact-section .map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.contact-section .map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 107, 168, 0.05), rgba(191, 155, 131, 0.05));
    pointer-events: none;
    z-index: 1;
}

.contact-section .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0%) contrast(1.05) brightness(1.02);
    transition: filter 0.3s ease;
}

.contact-section .map-container:hover iframe {
    filter: grayscale(0%) contrast(1.1) brightness(1.05);
}

/* Contact Info */
.contact-section .contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: linear-gradient(135deg, rgba(139, 107, 168, 0.08) 0%, rgba(191, 155, 131, 0.08) 100%);
    border-top: 2px solid rgba(139, 107, 168, 0.2);
}

.contact-section .info-item {
    text-align: center;
    padding: 45px 35px;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
}

.contact-section .info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 107, 168, 0.1), rgba(191, 155, 131, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-section .info-item:hover::before {
    opacity: 1;
}

.contact-section .info-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, 
        transparent, 
        rgba(139, 107, 168, 0.3) 30%, 
        rgba(191, 155, 131, 0.3) 70%, 
        transparent);
}

.contact-section .info-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
}

.contact-section .info-item h3 {
    color: #8B6BA8;
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.contact-section .info-item p {
    color: #5d4a6e;
    font-size: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Success Message */
.contact-section .success-message {
    display: none;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(139, 107, 168, 0.15) 0%, rgba(180, 151, 197, 0.15) 100%);
    color: #8B6BA8;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #8B6BA8;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(139, 107, 168, 0.2);
}

.contact-section .success-message.show {
    display: block;
    animation: slideDown 0.5s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .contact-section {
        padding: 70px 15px;
    }

    .contact-section .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-wrapper::before {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent,
            #8B6BA8 20%,
            #BF9B83 50%,
            #B497C5 80%,
            transparent);
    }

    .contact-section .map-container {
        min-height: 450px;
    }

    .contact-section .section-header h2 {
        font-size: 2.3rem;
    }

    .contact-section .form-side {
        padding: 50px 35px;
    }

    .contact-section .contact-info {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-section .info-item:not(:last-child)::after {
        width: 70%;
        height: 1px;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        background: linear-gradient(90deg, 
            transparent, 
            rgba(139, 107, 168, 0.3) 30%, 
            rgba(191, 155, 131, 0.3) 70%, 
            transparent);
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 50px 10px;
    }

    .contact-section .section-header {
        padding: 45px 20px;
    }

    .contact-section .section-header h2 {
        font-size: 1.9rem;
    }

    .contact-section .form-side {
        padding: 35px 25px;
    }

    .contact-section .form-group input,
    .contact-section .form-group textarea {
        font-size: 0.95rem;
        padding: 14px 18px;
    }

    .contact-section .submit-btn {
        font-size: 1rem;
        padding: 16px;
    }

    .contact-section .info-item {
        padding: 35px 25px;
    }
}


.contact-option {
    background: white;
    color: var(--primary-purple);
    padding: 20px 48px;
    border-radius: 60px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: clamp(17px, 2vw, 19px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-option:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-logo {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--light-lavender), var(--soft-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 16px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 1001;
    padding: 14px 24px;
    background: var(--primary-purple);
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.skip-to-content:focus {
    left: 20px;
    top: 20px;
}

*:focus {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid var(--primary-purple);
    outline-offset: 2px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-xaant-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1440px) {
    .nav-menu {
        display: flex;
        gap: 35px;
        list-style: none;
        align-items: center;
    }
}   


@media (max-width: 1024px) {
    .logo {
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -2px;
        background: linear-gradient(135deg, var(--deep-purple), var(--soft-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nav-menu {
        display: flex;
        gap: 23px;
        list-style: none;
        align-items: center;
    }

    .nav-menu a {
        text-decoration: none;
        color: var(--text-dark);
        font-size: 11px;
        font-weight: 500;
        transition: all 0.3s 
    ease;
        letter-spacing: 0.5px;
        position: relative;
    }
    
    .journey-content,
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-text {
        padding-right: 0;
    }

    .center-info {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    section {
        padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .integration-grid {
        grid-template-columns: 1fr;
    }

    .journey-cards {
        gap: 16px;
    }

    .journey-card {
        padding: 24px;
        gap: 20px;
    }

    .journey-number {
        min-width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .tech-specs {
        padding: 24px;
    }

    .space-slider-container {
        min-height: 300px;
    }

    .center-details {
        padding: 32px;
    }

    .team-highlight {
        padding: 40px 24px;
    }

    .cta-section {
        padding: 80px 0;
    }

    .contact-option {
        padding: 16px 32px;
    }

    .why-card {
        padding: 32px;
    }

    .integration-card {
        padding: 32px;
    }

    .package-card {
        padding: 32px;
    }

    .primary-cta,
    .secondary-cta {
        font-size: 16px;
    }

    .primary-cta {
        padding: 16px 32px;
    }

    .secondary-cta {
        padding: 10px 20px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        padding-left: 0;
        margin-top: 16px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .badge-number {
        font-size: 32px;
    }

    h2 {
        font-size: 32px;
    }

    .journey-text h2 {
        font-size: 36px;
    }

    .journey-subtitle {
        font-size: 22px;
    }

    .journey-highlight {
        font-size: 20px;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-option {
        width: 90%;
        justify-content: center;
    }
}