/* External Font Import */
@import url('https://fonts.cdnfonts.com/css/ok-noted');

/* Font Face Definitions */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables - Dark Premium Theme */
:root {
    --primary-purple: #8B5CF6;
    --primary-purple-dark: #7C3AED;
    --primary-purple-light: #A78BFA;
    --secondary-purple: #8B5CF6;
    --accent-purple: #C4B5FD;
    --dark-purple: #4C1D95;

    /* Dark theme colors */
    --bg-dark: #0f0f1a;
    --bg-dark-secondary: #1a1a2e;
    --bg-dark-tertiary: #16213e;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(139, 92, 246, 0.3);

    --text-dark: #ffffff;
    --text-medium: rgba(255, 255, 255, 0.7);
    --text-light: rgba(255, 255, 255, 0.5);
    --background-light: rgba(139, 92, 246, 0.1);
    --background-white: #0f0f1a;
    --background-gradient: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-modern: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
    --shadow-modern-lg: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
    --shadow-modern-hover: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 80px rgba(139, 92, 246, 0.2);
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);
    --transition-base: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-purple) var(--bg-dark);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-gradient);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-purple-light);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

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

.logo span {
    color: #ffffff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: var(--transition-base);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Ok Noted', var(--font-primary);
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.mobile-menu-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary-purple-light);
    margin: 3px 0;
    transition: var(--transition-base);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%),
                url('/img/edens.jpeg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content h1 span {
    color: #a78bfa;
}

.hero-content .tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.hero-image {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease 0.5s both;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Ok Noted', var(--font-primary);
    font-weight: 400;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: var(--shadow-modern);
}

.btn-primary:hover {
    background: var(--primary-purple-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-modern-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-purple-light);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: transparent;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    transition: var(--transition-base);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 0.5rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(139, 92, 246, 0.05);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content h2 span {
    background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
}

.about-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-purple-light);
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header h2 span {
    background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    transition: var(--transition-base);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-purple);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--background-gradient);
    color: white;
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: white;
    font-size: 1rem;
}

.testimonial-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

/* Booking Section */
.booking {
    padding: 6rem 0;
    background: rgba(139, 92, 246, 0.05);
    position: relative;
}

.booking::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.booking .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-info h2 {
    margin-bottom: 1.5rem;
}

.booking-info h2 span {
    background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    padding: 1rem 0;
    padding-left: 3rem;
    position: relative;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--text-medium);
}

.booking-benefits li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-purple-light);
    font-weight: 700;
    font-size: 1.25rem;
}

/* Form Styles */
.booking-form {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
}

.booking-form h3 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select option {
    background: var(--bg-dark);
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-form .btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0a1a 0%, #1a1025 50%, #0f0a1a 100%);
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.contact-info h2 span {
    color: var(--primary-purple-light);
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.contact-benefits li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-benefits li i {
    color: var(--primary-purple-light);
    font-size: 1.25rem;
}

.contact-direct {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-direct h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-direct p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-direct a {
    color: var(--primary-purple-light);
}

.contact-direct a:hover {
    color: white;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form h3 {
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form .form-group label {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}

.contact-form .form-group select option {
    background: var(--text-dark);
    color: white;
}

.contact-form .btn {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(15, 15, 26, 0.95) 0%, #0a0a12 100%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand .logo span {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul a:hover {
    color: var(--primary-purple-light);
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-contact address strong {
    color: white;
}

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
}

.footer-contact address a:hover {
    color: var(--primary-purple-light);
}

.footer-contact address i {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-purple);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Alert Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #6EE7B7;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FCA5A5;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        position: relative;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 0;
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 1rem;
    }

    .nav-links a:hover {
        background: rgba(139, 92, 246, 0.1);
        color: var(--primary-purple-light);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .nav-cta {
        margin: 1rem 1.5rem;
        text-align: center;
        border-radius: 8px;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero .container,
    .about .container,
    .booking .container,
    .contact .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-benefits {
        text-align: left;
    }

    .contact-direct {
        text-align: left;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-image::before {
        display: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .about-features {
        text-align: left;
    }

    h1 { font-size: 2.25rem; }

    .stats-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
    }
}

/* ========================================
   FREE COURSE BANNER
   ======================================== */

.free-course-banner {
    background: var(--background-gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.free-course-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.free-course-banner h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.free-course-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.banner-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.banner-features span {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.free-course-banner .btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
}

.free-course-banner .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* ========================================
   COURSES SECTION
   ======================================== */

.courses {
    padding: 6rem 0;
    background: transparent;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.course-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: var(--transition-base);
    border: 1px solid var(--border-glow);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.course-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.course-card.featured {
    border-color: #F59E0B;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.1) 0%, var(--bg-card) 100%);
}

.course-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.course-badge.free {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.course-badge.popular {
    background: var(--primary-purple);
    color: white;
}

.course-badge.premium {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.course-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-meta span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.course-meta .duration {
    color: var(--primary-purple);
    font-weight: 600;
}

.course-description {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.course-audience,
.course-modules {
    margin-bottom: 1.5rem;
}

.course-audience strong,
.course-modules strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.course-audience ul,
.course-modules ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-audience li,
.course-modules li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0.25rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.course-audience li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.course-modules li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.course-price {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    margin-bottom: 1rem;
}

.price-original {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-purple);
}

.course-card.featured .price-current {
    color: #D97706;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.course-card .btn {
    width: 100%;
    text-align: center;
}

/* Responsive for courses */
@media (max-width: 1024px) {
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .course-card:last-child {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .free-course-banner h2 {
        font-size: 2rem;
    }

    .banner-features {
        gap: 1rem;
    }

    .banner-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   PRESENTATION STYLES - Dark Theme
   ======================================== */

.presentation-body {
    background: #0f0a1a;
    min-height: 100vh;
    color: #ffffff;
}

/* Presentation Container */
.presentation {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0f0a1a 0%, #1a1025 50%, #0f0a1a 100%);
    position: relative;
    overflow: hidden;
}

.presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Slide Header */
.slide-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    z-index: 10;
}

.slide-header .logo {
    font-size: 1.25rem;
}

.slide-header .logo span {
    color: #a78bfa;
}

.slide-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slide-counter {
    font-size: 0.9rem;
    color: #a78bfa;
    font-weight: 500;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Slide Content */
.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
    position: relative;
    z-index: 5;
}

.slide-module {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.1;
    max-width: 900px;
}

.slide-title span {
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bullet Points */
.slide-bullets {
    list-style: none;
    max-width: 800px;
}

.slide-bullets li {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.slide-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-purple);
}

.slide-bullets li.active {
    color: #ffffff;
    background: rgba(124, 58, 237, 0.1);
    margin-left: -1rem;
    padding-left: 3.5rem;
    border-radius: 8px;
}

.slide-bullets li.active::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 20px var(--primary-purple);
}

.slide-bullets li.played {
    color: rgba(255, 255, 255, 0.5);
}

/* Audio Controls */
.slide-controls {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    position: relative;
    z-index: 10;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.audio-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.audio-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.6);
}

.audio-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.audio-btn svg {
    width: 24px;
    height: 24px;
}

.audio-status {
    font-size: 0.9rem;
    color: #a78bfa;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-purple);
    background: transparent;
    color: var(--primary-purple-light);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.nav-btn svg {
    width: 20px;
    height: 20px;
}

/* Keyboard Hints */
.keyboard-hints {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    z-index: 100;
}

.keyboard-hints kbd {
    background: rgba(124, 58, 237, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.25rem;
}

/* Presentation Index Page */
.presentation-index {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f0a1a 0%, #1a1025 100%);
    min-height: 100vh;
}

.presentation-index .section-header h2 {
    color: #ffffff;
}

.presentation-index .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.slides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.slide-card {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.slide-card:hover {
    transform: translateY(-5px);
    background: rgba(124, 58, 237, 0.2);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
}

.slide-card-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.slide-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.slide-card-sentences {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Module badges */
.module-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.module-badge.intro { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.module-badge.module-1 { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.module-badge.module-2 { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.module-badge.module-3 { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.module-badge.module-4 { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.module-badge.closing { background: rgba(236, 72, 153, 0.2); color: #f472b6; }

/* Responsive */
@media (max-width: 1024px) {
    .slide-content {
        padding: 3rem 4rem;
    }

    .slide-title {
        font-size: 2.75rem;
    }

    .slide-bullets li {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 2rem;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-bullets li {
        font-size: 1.1rem;
        padding-left: 2rem;
    }

    .slide-controls {
        flex-direction: column;
        gap: 1.5rem;
    }

    .keyboard-hints {
        display: none;
    }

    .progress-bar {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .slide-header {
        padding: 1rem;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .slide-bullets li {
        font-size: 1rem;
        padding: 0.75rem 0;
        padding-left: 1.5rem;
    }

    .nav-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   ENHANCED DESIGN EFFECTS (InnConnect Style)
   ======================================== */

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glow Effect on Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::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 ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Enhanced Card Hover Effects */
.service-card,
.course-card,
.testimonial-card {
    position: relative;
}

.service-card::before,
.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover::before,
.course-card:hover::before {
    opacity: 1;
}

/* Animated Glow on Stats */
.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple), var(--primary-purple-light));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(8px);
}

.stat-item:hover::after {
    opacity: 0.3;
}

/* Hero Enhanced Glow */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Language Selector Styling */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-link {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-link:hover {
    color: var(--primary-purple);
}

.lang-link.active {
    color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.1);
}

.lang-divider {
    color: var(--text-light);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .language-selector {
        margin-left: auto;
        margin-right: 1rem;
    }
}

/* Floating Animation for Banner Badge */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.banner-badge {
    animation: bounce 2s ease-in-out infinite, float 3s ease-in-out infinite;
}

/* Smooth Fade-in for Sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced Focus States */
input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15), 0 0 20px rgba(124, 58, 237, 0.1);
}

/* Subtle Pattern Background for Sections */
.stats,
.booking {
    position: relative;
}

.stats::before,
.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */

.scroll-to-top {
    position: fixed;
    bottom: 100px; /* Positioned above future chatbot widget */
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Pulse animation on hover */
.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover::before {
    animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 16px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}
