@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;1,400&display=swap');

:root {
    --bg-dark: #050608; /* Premium Slate Black */
    --surface-dark: #0f0a0d; /* Shaded dark burgundy base background */
    --surface-card: rgba(22, 16, 20, 0.7);
    --accent: #ff0844; /* Vibrant Premium Crimson Red matching logo and buttons */
    --accent-glow: rgba(255, 8, 68, 0.45);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: rgba(255, 255, 255, 0.05);
    --glass-bg: rgba(7, 8, 10, 0.4); /* Completely translucent dark red hue overlay */
    --glass-border: rgba(255, 255, 255, 0.02);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body);
}

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ================= PREMIUM SMOOTH GRADIENT BACKGROUND ================= */
body {
    background: radial-gradient(circle at top right, #1a0508 0%, #050608 60%, #020202 100%);
    background-attachment: fixed;
    background-size: cover;
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    padding-top: 0;
}

/* Background floating glow blobs */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

.blob-1 { top: 10%; left: -150px; }
.blob-2 { top: 45%; right: -150px; background: radial-gradient(circle, rgba(255, 8, 68, 0.2) 0%, transparent 70%); }
.blob-3 { bottom: 5%; left: 15%; }

@keyframes floatBlob {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 80px) scale(1.1); }
}

/* Selection and Scrollbars */
::selection { background: var(--accent); color: white; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: #1e1215; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ================= SCROLL REVEALS ================= */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.reveal-active {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }



/* ================= TRANSPARENT NAVIGATION HEADER ================= */
.navbar {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    padding: 24px 60px;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 16px 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 45px rgba(0, 0, 0, 0.4);
}

/* Logo featuring Red lightning bolt spark matching FlaShoot bolt */
.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo .highlight {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
    display: inline-flex;
    align-items: center;
}

.nav-links {
    display: none !important;
}

/* Icons navigation wrapper */
.nav-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.nav-icons-wrapper a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.nav-icons-wrapper a:hover,
.nav-icons-wrapper a.active {
    color: var(--accent);
    transform: scale(1.1);
}

.nav-icons-wrapper .separator {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

/* Right layout controls */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Get the App Capsule Button */
.btn-get-app {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.btn-get-app:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Book Now Capsule Button */
.btn-contact {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    padding: 10px 26px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 8, 68, 0.25);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 8, 68, 0.55);
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-primary);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 0;
    transform: scale(1.08);
    transition: opacity 1.8s cubic-bezier(0.16, 1, 0.3, 1), transform 10s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active {
    opacity: 0.25;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(5,6,8,0.1) 0%, var(--bg-dark) 90%),
                linear-gradient(to bottom, transparent 40%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 76px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.hero h1 span {
    color: var(--accent);
    text-shadow: 0 0 25px var(--accent-glow);
}

.hero p {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 45px;
}

/* Buttons */
.hero-cta-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    padding: 18px 45px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--accent);
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.35);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 8, 68, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    padding: 16px 40px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* ================= TRUST BADGES ================= */
.trust-badges {
    position: relative;
    z-index: 10;
    background: rgba(7, 8, 10, 0.8);
    padding: 60px 20px;
    border: none;
    backdrop-filter: blur(10px);
}

.trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media(min-width: 768px) {
    .trust-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 46px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--accent-glow);
    transition: var(--transition-smooth);
}

.trust-item:hover .trust-number {
    transform: translateY(-5px) scale(1.05);
}

.trust-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ================= GENERAL SECTIONS ================= */
.section {
    padding: 120px 20px;
    position: relative;
    z-index: 5;
}

.section.darker {
    background: rgba(7, 8, 10, 0.4);
}

.section-title {
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 70px auto;
    font-size: 17px;
}

/* ================= PACKAGES (DYNAMIC MOUSE-TRACK GLOW GRID) ================= */
.pricing-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .pricing-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .pricing-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: linear-gradient(180deg, #1e050a 0%, #080102 100%);
    border: 1px solid rgba(255, 8, 68, 0.15);
    border-radius: 28px;
    padding: 45px 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 8, 68, 0.45), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.01);
    background: linear-gradient(180deg, #2a050d 0%, #080102 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 8, 68, 0.3);
}

.pricing-card.featured {
    border-color: rgba(255, 8, 68, 0.5);
}

.featured-badge {
    position: absolute;
    top: 24px;
    right: 28px;
    background: linear-gradient(90deg, #f7971e 0%, #ffd200 100%);
    color: #000000;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.pricing-card-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center;
}

.plan-desc {
    font-size: 13px;
    color: #ff0844;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.price-block {
    text-align: center;
    margin-bottom: 25px;
}

.price {
    font-size: 44px;
    font-weight: 800;
    color: #ff0844;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.price span {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-gst {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.included-header {
    font-size: 10px;
    font-weight: 700;
    color: #ff0844;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 18px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
}

.pricing-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card ul li::before {
    content: '✓';
    color: #ff0844;
    font-weight: 900;
    font-size: 15px;
}

.pricing-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #ff0844 0%, #d30335 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 8, 68, 0.2);
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 8, 68, 0.45);
    background: linear-gradient(135deg, #ff1e56 0%, #e6043c 100%);
}

/* ================= VIDEO / WORK GRID (DISCOVER) ================= */
.video-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.video-card:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.video-card video {
    width: 100%;
    border-radius: 14px;
    display: block;
    object-fit: cover;
    aspect-ratio: 9/16;
}

/* ================= REVIEWS DYNAMIC SLIDER ================= */
.reviews-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.reviews-slider {
    position: relative;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 60px 40px;
    margin-bottom: 60px;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.review-slide {
    animation: fadeIn 0.6s var(--transition-smooth);
    display: none;
    max-width: 750px;
}

.review-slide.active {
    display: block;
}

.review-stars {
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px var(--accent-glow);
}

.review-content {
    font-size: 21px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.review-author {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.review-nav-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.review-dot.active {
    background: var(--accent);
    transform: scale(1.4);
    box-shadow: 0 0 10px var(--accent);
}

.review-form-wrapper {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 45px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.star-rating-select {
    display: flex;
    gap: 8px;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 10px;
    cursor: pointer;
}

.star-rating-select span {
    color: rgba(255, 255, 255, 0.15);
    transition: var(--transition-smooth);
}

.star-rating-select span:hover,
.star-rating-select span.selected {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent-glow);
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--surface-dark);
    color: var(--text-primary);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 8, 68, 0.15);
}

/* ================= BOOKING FORM REDESIGN ================= */
.form-card {
    background: linear-gradient(145deg, #180407, #0a0305);
    border: 1px solid rgba(255, 8, 68, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    max-width: 650px;
    width: 100%;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group.half-width {
    flex: 1 1 calc(50% - 10px);
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-left: 5px;
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.phone-prefix {
    width: 110px;
    padding: 15px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

.form-input.with-icon {
    padding-left: 45px;
}

/* ================= ACCORDION FAQ ================= */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.faq-header {
    padding: 26px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    user-select: none;
}

.faq-icon {
    font-size: 20px;
    color: var(--accent);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
    padding: 0 35px 26px 35px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active {
    border-color: rgba(255, 8, 68, 0.2);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ================= SUBPAGE OVERLAYS ================= */
.subpage-container {
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subpage-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 55px 45px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.subpage-card h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    text-align: center;
    letter-spacing: -1.5px;
}

.subpage-card p.subtitle {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 15px;
}

/* ================= DEDICATED JOURNEY BOXES ================= */
.journey-wrapper {
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.journey-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 28px;
    backdrop-filter: blur(10px);
}

.journey-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.journey-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================= REALTIME CHATBOT WIDGET ================= */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chatbot-toggle {
    background: var(--accent);
    color: #ffffff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 8, 68, 0.4);
    transition: var(--transition-smooth);
}

.chatbot-toggle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 8, 68, 0.6);
}

.chatbot-box {
    width: 360px;
    height: 500px;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    backdrop-filter: blur(20px);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.chatbot-header {
    background: var(--surface-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-messages {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bot-message,
.user-message {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.5;
    white-space: pre-wrap;
    max-width: 85%;
}

.bot-message {
    background: var(--surface-dark);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color);
}

.user-message {
    background: var(--accent);
    color: #ffffff;
    align-self: flex-end;
    font-weight: 500;
    border-bottom-right-radius: 4px;
}

.chatbot-input {
    display: flex;
    border-top: 1px solid var(--border-color);
    background: var(--surface-dark);
}

.chatbot-input input {
    flex: 1;
    padding: 18px 20px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 14px;
}

.chatbot-input button {
    background: transparent;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    color: var(--accent);
    cursor: pointer;
}

/* ================= FOOTER ================= */
.footer-top {
    border-top: 1px solid var(--border-color);
    padding: 100px 20px 70px 20px;
    text-align: center;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-logo .highlight {
    color: var(--accent);
}

.social-icons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(255, 8, 68, 0.3);
}

.social-icons svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.social-icons a:hover svg {
    color: #ffffff;
    transform: scale(1.1);
}

.footer-bottom {
    background: var(--surface-dark);
    padding: 35px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ================= MOBILE NAV ================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
        top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .navbar.scrolled {
        padding: 15px 30px;
    }
    
    .nav-icons-wrapper, .nav-actions {
        display: none !important; /* Hide center icons and right action buttons */
    }
    
    .nav-links {
        position: absolute;
        top: 75px;
        left: 20px;
        right: 20px;
        width: auto;
        background: var(--surface-dark);
        border: 1px solid var(--border-color);
        flex-direction: column;
        display: none;
        padding: 0;
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.8);
        overflow: hidden;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 20px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
    }
    
    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-links li a svg.mobile-icon {
        display: block;
        width: 20px;
        height: 20px;
        color: var(--text-secondary);
    }

    .nav-links li a.mobile-book-now {
        background: rgba(255, 8, 68, 0.08);
        color: var(--accent);
        border-top: 1px solid rgba(255, 8, 68, 0.2);
        border-bottom: none;
    }

    .nav-links li a.mobile-book-now svg.mobile-icon {
        color: var(--accent);
    }
    
    .nav-links li a.mobile-book-now[style] {
        /* Override any inline styles on mobile */
        padding: 18px 20px !important;
        font-size: 16px !important;
        border-radius: 0 !important;
    }
    
    .nav-links.active {
        display: flex !important;
        animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: var(--text-primary);
        cursor: pointer;
    }
    
    .hero h1 {
        font-size: 44px;
    }
    .hero p {
        font-size: 17px;
    }
    .section-title {
        font-size: 34px;
    }
}

/* ================= MOBILE PHONES ONLY ================= */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: 100vh;
    }
    
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }
    .hero p {
        font-size: 15px;
        padding: 0 10px;
    }
    
    /* Smart Crop for Mobile Hero Images */
    .slide {
        background-position: center center !important;
        background-size: cover !important;
    }
    
    .navbar {
        padding: 15px 20px;
        top: 10px;
    }
    
    .form-card {
        padding: 30px 20px;
    }
    
    .form-group.half-width {
        flex: 1 1 100%;
    }
    
    /* Fix horizontal overflow causing blank space */
    .glow-blob {
        width: 300px !important;
        height: 300px !important;
        filter: blur(80px);
    }
    
    .blob-1 { left: -100px; top: 5%; }
    .blob-2 { right: -100px; top: 40%; }
    .blob-3 { left: 0; bottom: 5%; }
}
