/* =====================================================
   GLOBAL STYLES & RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colour Palette */
    --primary-blue: #0cc4eb;
    --aqua-accent: #0cc4eb;
    --light-sparkle: #CAF0F8;
    --neutral-grey: #F1F1F1;
    --text-dark: #333333;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Nunito Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* =====================================================
   ANIMATIONS
===================================================== */

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

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

@keyframes bubble-float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

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

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

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* =====================================================
   BUBBLES BACKGROUND ANIMATION
===================================================== */

.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    background: radial-gradient(circle at 30% 30%, rgba(0, 180, 216, 0.8), rgba(0, 119, 182, 0.4));
    border-radius: 50%;
    filter: blur(1px);
}

.bubble-1 {
    width: 150px;
    height: 150px;
    left: 10%;
    bottom: -150px;
    animation: bubble-float 15s infinite;
    animation-delay: 0s;
}

.bubble-2 {
    width: 100px;
    height: 100px;
    left: 25%;
    bottom: -100px;
    animation: bubble-float 18s infinite;
    animation-delay: 2s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    left: 50%;
    bottom: -80px;
    animation: bubble-float 20s infinite;
    animation-delay: 4s;
}

.bubble-4 {
    width: 120px;
    height: 120px;
    right: 15%;
    bottom: -120px;
    animation: bubble-float 17s infinite;
    animation-delay: 1s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    right: 5%;
    bottom: -90px;
    animation: bubble-float 19s infinite;
    animation-delay: 3s;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-sparkle) 100%);
    padding: var(--spacing-xl) var(--spacing-lg);
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.logo-container {
    margin-bottom: var(--spacing-xl);
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 20px rgba(12, 196, 235, 0.15));
}

.tagline {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-family: var(--font-primary);
}

.subtext {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.8;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-md);
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.1);
    border: 2px solid var(--light-sparkle);
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--aqua-accent);
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-top: var(--spacing-xs);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* =====================================================
   LEAD CAPTURE SECTION
===================================================== */

.lead-capture {
    position: relative;
    z-index: 1;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: white;
    text-align: center;
}

.lead-capture h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.lead-capture > .container > p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.email-form {
    margin-bottom: var(--spacing-lg);
}

.form-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-direction: column;
    align-items: center;
}

@media (min-width: 640px) {
    .form-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.email-input {
    flex: 1;
    min-width: 200px;
    max-width: 350px;
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--light-sparkle);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.email-input:focus {
    outline: none;
    border-color: var(--aqua-accent);
    box-shadow: 0 0 0 3px rgba(12, 196, 235, 0.1);
}

.submit-btn {
    padding: 0.9rem 1.8rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--aqua-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 182, 0.25);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.6;
    margin-top: var(--spacing-sm);
}

.cta-buttons {
    margin-bottom: var(--spacing-lg);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}

.whatsapp-btn:hover {
    background: #20BA5D;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.booking-teaser {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-top: var(--spacing-lg);
}

.booking-teaser i {
    margin-right: var(--spacing-xs);
}

/* =====================================================
   CAROUSEL SECTION
===================================================== */

.carousel-section {
    position: relative;
    z-index: 1;
    padding: var(--spacing-2xl) var(--spacing-lg);
    background: linear-gradient(135deg, var(--light-sparkle) 0%, white 100%);
}

.carousel-section h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: var(--spacing-2xl);
    font-size: 1.1rem;
}

.carousel-container {
    position: relative;
    margin-bottom: var(--spacing-xl);
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slide {
    display: none;
    animation: slideIn 0.5s ease-out;
}

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

.service-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.1);
    border: 2px solid var(--light-sparkle);
    transition: var(--transition);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
    border-color: var(--aqua-accent);
}

.card-icon {
    font-size: 3rem;
    color: var(--aqua-accent);
    margin-bottom: var(--spacing-lg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--aqua-accent);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

.carousel-nav:hover {
    background: var(--aqua-accent);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-sparkle);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--aqua-accent);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--primary-blue);
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    position: relative;
    z-index: 1;
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--aqua-accent);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--aqua-accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: var(--spacing-lg);
    font-size: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 180, 216, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--aqua-accent);
    transform: translateY(-3px);
}

.qr-code {
    max-width: 120px;
    width: 100%;
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
}

.legal-links {
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.legal-links a {
    color: var(--aqua-accent);
    text-decoration: none;
    transition: var(--transition);
}

.legal-links a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 var(--spacing-md);
    opacity: 0.5;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
===================================================== */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 2.5rem;
    }
    
    .hero {
        padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-2xl);
        min-height: auto;
    }
    
    .countdown {
        gap: var(--spacing-sm);
    }
    
    .countdown-item {
        min-width: 75px;
        padding: var(--spacing-sm);
    }
    
    .countdown-value {
        font-size: 1.5rem;
    }
    
    .countdown-label {
        font-size: 0.75rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .email-input {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .service-card {
        padding: var(--spacing-lg);
        min-height: auto;
    }
    
    .footer-content {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 150px;
    }
    
    .tagline {
        font-size: 1.8rem;
    }
    
    .carousel-dots {
        gap: var(--spacing-xs);
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--aqua-accent);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: var(--spacing-sm);
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}
