/* ==========================================================================
   VIBRANT MAGIC DESIGN SYSTEM - V7 (FUN, COLORFUL & PREMIUM)
   Theme: Playful, Bright, Magical Children's Universe
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

:root {
    --bg-white: #FFFFFF;
    
    /* Vibrant, magical pastel palette */
    --bg-blue: #E1F4FF;     /* Magical sky */
    --bg-pink: #FFE5EC;     /* Cotton candy */
    --bg-yellow: #FFF6C3;   /* Sunshine */
    --bg-purple: #F3E8FF;   /* Dreamy plum light */
    
    --text-main: #2B164D;   /* Deep purple for high contrast and elegance */
    --text-body: #4A3E59;
    
    --accent-coral: #FF5A7E;
    --accent-gold: #FFB300;
    --accent-teal: #00D2C1;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    --shadow-soft: 0 15px 35px rgba(43, 22, 77, 0.08);
    --shadow-float: 0 25px 45px rgba(255, 90, 126, 0.25);
    
    --gradient-magic: linear-gradient(135deg, #FF5A7E 0%, #FFB300 100%);
}

/* Base & Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-blue); /* Starting with a happy blue sky */
    color: var(--text-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.loading { overflow: hidden; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.15;
    font-weight: 900;
}
p { font-size: 1.15rem; line-height: 1.6; font-weight: 600; }

.text-gold { color: var(--accent-gold); }
.text-main { color: var(--text-main); }
.text-coral { color: var(--accent-coral); }

/* Backgrounds */
.bg-white { background-color: var(--bg-white); }
.bg-blue { background-color: var(--bg-blue); }
.bg-pink { background-color: var(--bg-pink); }
.bg-yellow { background-color: var(--bg-yellow); }
.bg-purple { background-color: var(--bg-purple); }

/* Wavy Dividers */
.wave-divider {
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 5;
    margin-top: -5px;
    margin-bottom: -5px;
}

.py-section { padding-top: 5rem; padding-bottom: 5rem; }

/* ===== PRELOADER - PREMIUM CENTERED ===== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(45deg, #ff0055, #ff7700, #ffdd00, #00ffcc, #7700ff, #ff0055);
    background-size: 400% 400%;
    animation: psychedelic-bg 5s infinite linear;
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}
@keyframes psychedelic-bg {
    0% { background-position: 0% 50%; filter: hue-rotate(0deg); }
    50% { background-position: 100% 50%; filter: hue-rotate(180deg); }
    100% { background-position: 0% 50%; filter: hue-rotate(360deg); }
}
.preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }

/* Glass card inside the preloader */
.preloader-inner {
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 36px;
    padding: 40px 36px;
    width: 90%; max-width: 400px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    text-align: center;
}

/* Logo pulsante com anel */
.preloader-logo-wrap {
    position: relative; margin-bottom: 20px;
}
.preloader-logo {
    width: 120px; height: 120px; border-radius: 50%; object-fit: cover;
    border: 5px solid rgba(255,255,255,0.9);
    box-shadow: 0 0 30px rgba(255,255,255,0.5);
    animation: logo-pulse 2s ease-in-out infinite;
    position: relative; z-index: 2;
    transition: transform 0.8s ease;
}
@keyframes logo-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255,255,255,0.4); }
    50% { transform: scale(1.06); box-shadow: 0 0 45px rgba(255,255,255,0.8), 0 0 80px rgba(255,90,126,0.5); }
}
.preloader-logo-ring {
    position: absolute; top: -8px; left: -8px;
    width: 136px; height: 136px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(255,255,255,0.9);
    border-right-color: rgba(255,255,255,0.6);
    animation: spin-ring 1.5s linear infinite;
    z-index: 1;
}
@keyframes spin-ring { to { transform: rotate(360deg); } }

/* Brand name */
.preloader-brand {
    font-family: var(--font-heading);
    color: #fff; font-size: 1.8rem; font-weight: 700;
    text-shadow: 0 3px 12px rgba(0,0,0,0.4);
    margin-bottom: 6px;
}
.preloader-subtitle {
    color: rgba(255,255,255,0.9); font-size: 1rem;
    font-family: var(--font-body); font-weight: 600;
    margin-bottom: 24px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Steps */
.preloader-steps { width: 100%; margin-bottom: 24px; }
.preloader-step {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.2); border-radius: 50px;
    padding: 10px 18px; margin-bottom: 10px;
    opacity: 0; transform: translateY(15px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255,255,255,0.3);
}
.preloader-step.visible {
    opacity: 1; transform: translateY(0) scale(1);
    background: rgba(255,255,255,0.35);
}
.preloader-step.done {
    background: rgba(255,255,255,0.5);
}
.step-icon { font-size: 1.4rem; flex-shrink: 0; }
.step-text {
    font-family: var(--font-heading); color: #fff;
    font-size: 1rem; font-weight: 600;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
    text-align: left;
}

/* Progress Bar */
.preloader-progress-wrap {
    width: 100%; height: 10px; border-radius: 10px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
}
.preloader-progress-bar {
    height: 100%; width: 0%; border-radius: 10px;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 100%);
    transition: width 0.7s ease;
    box-shadow: 0 0 12px rgba(255,255,255,0.8);
}


/* Navbar */
.magical-nav {
    position: fixed; top: 0; width: 100%;
    padding: 1rem 2rem; z-index: 1000;
    transition: all 0.4s ease; background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.magical-nav.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(43, 22, 77, 0.05); padding: 0.8rem 2rem;
}
.nav-brand {
    display: flex; align-items: center;
    font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900;
    color: var(--text-main); text-decoration: none;
}
.nav-logo-img {
    width: 55px; height: 55px; border-radius: 50%; margin-right: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); border: 3px solid var(--accent-gold);
}

/* Buttons */
.btn-magic {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--gradient-magic); color: var(--bg-white) !important;
    padding: 16px 36px; border-radius: 50px;
    font-weight: 900; font-size: 1.15rem; text-decoration: none;
    box-shadow: 0 10px 25px rgba(255, 90, 126, 0.3), inset 0 -3px 0 rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;
}
.btn-magic:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 90, 126, 0.4), inset 0 -3px 0 rgba(0,0,0,0.1);
}

.btn-outline-main {
    display: inline-flex; align-items: center; justify-content: center;
    background-color: var(--bg-white); color: var(--text-main);
    padding: 14px 30px; border-radius: 50px;
    font-weight: 900; font-size: 1.1rem; text-decoration: none;
    border: 3px solid var(--text-main);
    box-shadow: 0 10px 25px rgba(43, 22, 77, 0.1);
    transition: all 0.3s ease; cursor: pointer;
}
.btn-outline-main:hover {
    background-color: var(--text-main); color: var(--bg-white);
    box-shadow: 0 15px 35px rgba(43, 22, 77, 0.2);
}

/* Hero Section - Psychedelic Skies */
.hero {
    position: relative; padding-top: 180px; padding-bottom: 80px;
    background: linear-gradient(135deg, #E1F4FF 0%, #FFE5EC 50%, #F3E8FF 100%);
    background-size: 300% 300%;
    animation: flow-skies 8s ease-in-out infinite alternate;
    overflow: hidden;
}
@keyframes flow-skies {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
/* Magic Floating Orbs in Background */
.hero::before, .hero::after {
    content: ''; position: absolute; border-radius: 50%; z-index: 0;
    filter: blur(50px); animation: psycho-orb 6s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
}
.hero::before {
    width: 500px; height: 500px; background: linear-gradient(45deg, #ff0055, #ffdd00);
    top: -100px; right: -150px;
}
.hero::after {
    width: 450px; height: 450px; background: linear-gradient(45deg, #00ffcc, #7700ff);
    bottom: -100px; left: -150px; animation-delay: -3s; animation-direction: alternate-reverse;
}
@keyframes psycho-orb {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); filter: blur(50px) hue-rotate(0deg); }
    100% { transform: translate(-50px, 50px) scale(1.3) rotate(45deg); filter: blur(70px) hue-rotate(90deg); }
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block; background: var(--bg-white);
    color: var(--accent-coral); padding: 10px 22px; border-radius: 50px;
    font-weight: 900; font-size: 1rem; margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft); border: 2px solid var(--bg-pink);
    text-transform: uppercase;
}
.hero-title { font-size: clamp(3rem, 6vw, 5.5rem); margin-bottom: 1.5rem; letter-spacing: -1px; }
.hero-title .highlight {
    background: var(--gradient-magic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    transform: rotate(-3deg);
}
.hero-desc { font-size: 1.3rem; color: var(--text-main); margin-bottom: 2.5rem; max-width: 520px; font-weight: 700; }

.hero-img-wrapper { position: relative; z-index: 1; padding: 20px; }
.hero-img-main {
    border-radius: 40px; 
    box-shadow: 0 0 30px rgba(0, 210, 193, 0.5), 0 0 60px rgba(255, 90, 126, 0.4);
    width: 100%;
    animation: holographic-float 6s ease-in-out infinite;
    aspect-ratio: 1/1; object-fit: cover; 
    border: 4px solid rgba(255,255,255,0.8);
}
@keyframes holographic-float {
    0%, 100% { transform: translateY(0) rotate(0deg); filter: hue-rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); filter: hue-rotate(15deg); }
}

.floating-badge {
    position: absolute; background: white; padding: 15px 25px; border-radius: 30px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px;
    font-weight: 900; color: var(--text-main); z-index: 2; font-size: 1.2rem;
    border: 3px solid var(--bg-yellow);
}
.badge-1 { bottom: 10px; left: -30px; animation: float-slow 5s ease-in-out infinite alternate; }
.badge-2 { top: 30px; right: -40px; animation: float-slow 4.5s ease-in-out infinite alternate-reverse; }
.icon-circle {
    width: 50px; height: 50px; background: var(--bg-pink); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: var(--accent-coral);
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Grid */
.feature-card {
    background: var(--bg-white); padding: 45px 35px; border-radius: 40px;
    box-shadow: var(--shadow-soft); height: 100%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--bg-blue); text-align: center;
}
.feature-card:hover {
    transform: translateY(-15px) scale(1.02); box-shadow: var(--shadow-float); border-color: var(--bg-pink);
}
.feature-img-box {
    width: 140px; height: 140px; border-radius: 50%;
    margin: 0 auto 25px auto; overflow: hidden;
    border: 6px solid var(--bg-white);
    box-shadow: 0 10px 25px rgba(43, 22, 77, 0.15);
}
.feature-img-box img {
    width: 100%; height: 100%; object-fit: cover;
}

/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 1.5rem;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}
.masonry-item img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px rgba(43, 22, 77, 0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    border: 5px solid white;
}
.masonry-item img:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 90, 126, 0.4);
}

@media (max-width: 991px) {
    .masonry-gallery { column-count: 2; }
}
@media (max-width: 576px) {
    .masonry-gallery { column-count: 1; }
}

.feature-title { font-size: 1.8rem; margin-bottom: 15px; color: var(--text-main); }

/* Image Text Block (Gastronomy/Attractions) */
.image-text-block img {
    border-radius: 40px; box-shadow: 0 20px 50px rgba(43, 22, 77, 0.2);
    width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 10px solid var(--bg-white);
    transform: rotate(2deg); transition: transform 0.3s ease;
}
.image-text-block img:hover { transform: rotate(0deg) scale(1.02); }

.check-list li {
    font-size: 1.25rem; font-weight: 800; margin-bottom: 18px;
    display: flex; align-items: center; color: var(--text-main);
    background: var(--bg-white); padding: 15px 25px; border-radius: 20px;
    box-shadow: var(--shadow-soft);
}
.check-list li i { color: var(--accent-coral); font-size: 1.8rem; margin-right: 15px; }

/* Interactive Simulator */
.simulator-card {
    background: var(--bg-white); border-radius: 40px; padding: 50px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15); border: 8px solid var(--bg-yellow);
}
.custom-range::-webkit-slider-thumb {
    background: var(--accent-coral); box-shadow: 0 0 15px rgba(255, 90, 126, 0.6);
    border: 5px solid white; width: 35px; height: 35px;
    border-radius: 50%; cursor: pointer; appearance: none; -webkit-appearance: none;
}
.custom-range {
    width: 100%; height: 12px; background: var(--bg-pink);
    border-radius: 6px; outline: none; appearance: none;
}
.simulator-result {
    background: var(--bg-purple); border-radius: 30px; padding: 40px;
    text-align: center; border: 4px dashed var(--accent-coral);
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-white); padding: 40px; border-radius: 40px;
    box-shadow: var(--shadow-soft); text-align: center; height: 100%;
    position: relative; border: 4px solid var(--bg-yellow);
}
.testimonial-stars { color: var(--accent-gold); font-size: 1.5rem; margin-bottom: 20px; }
.testimonial-card p { font-size: 1.2rem; font-weight: 700; color: var(--text-main); }
.testimonial-card h5 { color: var(--accent-coral); font-size: 1.4rem; }

/* Forms */
.magic-form-container {
    background: var(--bg-white); border-radius: 40px; padding: 60px;
    box-shadow: 0 20px 50px rgba(43, 22, 77, 0.15); border: 8px solid var(--bg-blue);
}
.form-label { font-weight: 900; color: var(--text-main); margin-bottom: 12px; font-size: 1.1rem; }
.form-control-custom {
    width: 100%; padding: 20px 25px; border-radius: 20px;
    border: 3px solid var(--bg-purple); background-color: var(--bg-purple);
    font-family: var(--font-body); font-size: 1.1rem; font-weight: 800;
    color: var(--text-main); transition: all 0.3s ease; outline: none;
}
.form-control-custom:focus {
    background-color: var(--bg-white); border-color: var(--accent-coral);
    box-shadow: 0 0 0 5px rgba(255, 90, 126, 0.2);
}
.btn-submit-magic {
    width: 100%; background: var(--gradient-magic); color: var(--bg-white);
    padding: 22px; border-radius: 20px; font-size: 1.3rem; font-weight: 900;
    border: none; cursor: pointer; transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(255, 90, 126, 0.3); text-transform: uppercase;
}
.btn-submit-magic:hover {
    transform: translateY(-5px) scale(1.02); box-shadow: 0 20px 40px rgba(255, 90, 126, 0.5);
}

/* Footer */
.magic-footer {
    background: var(--text-main); color: var(--bg-white);
    padding: 80px 0 40px; border-top-left-radius: 60px; border-top-right-radius: 60px;
}
.footer-brand { color: var(--bg-white); font-size: 2.5rem; margin-bottom: 30px; }
.social-circle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 50%;
    background-color: rgba(255,255,255,0.15); color: var(--bg-white);
    margin: 0 15px; font-size: 1.6rem; transition: all 0.3s ease; text-decoration: none;
}
.social-circle:hover {
    background: var(--gradient-magic); color: var(--bg-white); transform: translateY(-8px) scale(1.1);
}

/* Floating WhatsApp Widget */
.wa-widget {
    position: fixed; bottom: 35px; right: 35px; z-index: 9999;
    background-color: #25D366; color: white; width: 75px; height: 75px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); text-decoration: none;
    border: 4px solid white;
}
.wa-widget:hover { transform: scale(1.15) rotate(-10deg); color: white; }

/* FAQ Accordion Styling */
.faq-accordion .accordion-item {
    border: none; margin-bottom: 20px; border-radius: 20px !important;
    box-shadow: 0 10px 25px rgba(43, 22, 77, 0.05); overflow: hidden;
}
.faq-accordion .accordion-button {
    background-color: var(--bg-white); color: var(--text-main); font-weight: 700;
    font-size: 1.25rem; padding: 25px 30px; border-radius: 20px !important;
    font-family: var(--font-heading);
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bg-purple); color: var(--accent-coral); box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body {
    background-color: var(--bg-white); padding: 0 30px 30px 30px;
    font-size: 1.15rem; color: var(--text-body); font-weight: 600;
}

@media (max-width: 991px) {
    /* Tablet adjustments */
    .hero { padding-top: 130px; padding-bottom: 40px; text-align: center; }
    .hero-title { font-size: 2.8rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .magic-form-container { padding: 40px 25px; }
    .image-text-block img { margin-bottom: 35px; }
    h2 { font-size: 2.4rem !important; }
    /* Badges repositioned for single-column layout */
    .badge-1 { bottom: -15px; left: 0px; }
    .badge-2 { top: 15px; right: 0px; }
}

/* ====== MOBILE FIRST - 480px ====== */
@media (max-width: 480px) {
    /* Nav */
    .magical-nav { padding: 0.6rem 1rem; }
    .nav-logo-img { width: 40px; height: 40px; }
    .nav-brand { font-size: 1.1rem; }
    .nav-brand span { font-size: 1rem; }
    
    /* Hero - Full redesign for mobile */
    .hero { padding-top: 100px; padding-bottom: 30px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 14px; margin-bottom: 0.8rem; }
    .hero-title { font-size: 2rem; margin-bottom: 0.8rem; letter-spacing: -0.5px; }
    .hero-desc { font-size: 1rem; margin-bottom: 1.5rem; padding: 0 5px; }
    .hero-img-wrapper { padding: 10px 10px 30px 10px; }
    .hero-img-main { border-radius: 28px; border-width: 6px; }
    .btn-magic { font-size: 1rem; padding: 14px 28px; }
    
    /* Floating badges - scaled down */
    .floating-badge { padding: 8px 12px; font-size: 0.75rem; gap: 8px; border-radius: 18px; }
    .badge-1 { bottom: 10px; left: -5px; }
    .badge-2 { top: 10px; right: -5px; }
    .icon-circle { width: 30px; height: 30px; font-size: 1rem; }
    
    /* Preloader */
    .preloader { padding: 20px; }
    .loading-steps { min-width: 0 !important; width: 100%; max-width: 100%; padding: 0 10px; }
    .loading-steps h3 { font-size: 1rem; margin-bottom: 0.8rem; }
    #spinner-icon { width: 100px !important; height: 100px !important; margin-bottom: 0.8rem !important; }
    .progress { width: 100% !important; max-width: 100%; }
    
    /* Sections */
    .py-section { padding-top: 3rem; padding-bottom: 3rem; }
    h2 { font-size: 1.9rem !important; }
    h3 { font-size: 1.5rem; }
    p { font-size: 0.95rem; }
    
    /* Feature Cards */
    .feature-card { padding: 25px 15px; margin-bottom: 5px; border-radius: 28px; }
    .feature-img-box { width: 90px; height: 90px; margin-bottom: 15px; }
    .feature-title { font-size: 1.5rem; margin-bottom: 10px; }
    
    /* Simulator */
    .simulator-card { padding: 25px 15px; border-radius: 28px; border-width: 4px; }
    #simGuestsDisplay { font-size: 2rem !important; }
    #simResultTitle { font-size: 1.6rem !important; }
    .simulator-result { padding: 20px 12px; border-radius: 20px; }
    
    /* Form */
    .magic-form-container { padding: 25px 15px; border-radius: 28px; border-width: 4px; }
    .form-control-custom { padding: 14px 16px; font-size: 0.95rem; border-radius: 14px; }
    .btn-submit-magic { font-size: 1.05rem; padding: 16px; border-radius: 14px; }
    
    /* FAQ */
    .faq-accordion .accordion-button { padding: 16px 18px; font-size: 1rem; }
    .faq-accordion .accordion-body { padding: 0 18px 20px 18px; font-size: 0.95rem; }
    
    /* Footer */
    .magic-footer { padding: 50px 0 30px; border-top-left-radius: 40px; border-top-right-radius: 40px; }
    .footer-brand { font-size: 1.8rem; }
    
    /* WhatsApp Widget */
    .wa-widget { width: 55px; height: 55px; font-size: 1.8rem; bottom: 15px; right: 15px; border-width: 3px; }
    
    /* Testimonials */
    .testimonial-card { padding: 28px 20px; border-radius: 28px; }
}

@media (max-width: 768px) {
    /* Navbar Mobile */
    .magical-nav { padding: 0.8rem 1rem; }
    .nav-brand { font-size: 1.3rem; }
    .nav-brand span { display: none; /* Hide text on very small screens to fit button */ }
    .nav-logo-img { width: 45px; height: 45px; margin-right: 0; }
    
    /* Hero Mobile */
    .hero { padding-top: 110px; padding-bottom: 50px; }
    .hero-title { font-size: 2.2rem; margin-bottom: 1rem; letter-spacing: -1px; }
    .hero-desc { font-size: 1.1rem; padding: 0 10px; }
    .hero-badge { font-size: 0.85rem; padding: 8px 16px; margin-bottom: 1rem; }
    
    /* Floating Badges Mobile - Bring them back! */
    .badge-1, .badge-2 { display: flex !important; font-size: 0.9rem; padding: 8px 15px; }
    .badge-1 { left: -10px; bottom: 0; }
    .badge-2 { right: -10px; top: 10px; }
    .icon-circle { width: 35px; height: 35px; font-size: 1.1rem; }
    
    /* Preloader Mobile Fix (Prevent Horizontal Scroll) */
    .loading-steps { min-width: 0 !important; width: 95%; max-width: 320px; }
    .loading-steps h3 { font-size: 1.1rem; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
    .loading-steps i { font-size: 1.1rem; margin-right: 8px !important; }
    #spinner-icon { width: 110px !important; height: 110px !important; margin-bottom: 1rem !important; }
    .progress { width: 90% !important; max-width: 320px; }

    
    /* Cards Mobile */
    .feature-card { padding: 30px 20px; }
    .feature-img-box { width: 110px; height: 110px; }
    
    /* Simulator Mobile */
    .simulator-card { padding: 30px 20px; }
    #simGuestsDisplay { font-size: 2rem !important; }
    #simResultTitle { font-size: 1.8rem !important; }
    .simulator-result { padding: 25px 15px; }
    
    /* Forms Mobile */
    .magic-form-container { padding: 30px 15px; border-width: 4px; }
    .form-control-custom { padding: 15px 20px; font-size: 1rem; }
    .btn-submit-magic { font-size: 1.1rem; padding: 18px; }
    
    /* FAQ Mobile */
    .faq-accordion .accordion-button { padding: 18px 20px; font-size: 1.1rem; }
    .faq-accordion .accordion-body { padding: 0 20px 20px 20px; font-size: 1rem; }
    
    /* Floating Button */
    .wa-widget { width: 60px; height: 60px; font-size: 2rem; bottom: 20px; right: 20px; }
}
