/* ========================================================
   JUST GELATO – Under Construction Site
   Tropical Theme | Static HTML/CSS/JS
   ======================================================== */

/* ----- CSS Custom Properties (Design Tokens) ----- */
:root {
    /* Brand Colors (from logo) */
    --brand-orange: #E87B35;
    --brand-orange-light: #F4A261;
    --brand-purple: #4A2060;
    --brand-purple-light: #6B3A80;

    /* Tropical Palette */
    --tropical-teal: #0D7377;
    --tropical-teal-dark: #064E50;
    --tropical-green: #2E8B57;
    --tropical-green-light: #3CB371;
    --tropical-gold: #DAA520;
    --tropical-coral: #FF6F61;
    --tropical-sunset: #FF8C42;

    /* Dark Theme */
    --bg-primary: #0a1a1f;
    --bg-secondary: #0f2327;
    --bg-card: rgba(15, 35, 39, 0.7);
    --bg-glass: rgba(15, 35, 39, 0.5);

    /* Text */
    --text-primary: #f0ece4;
    --text-secondary: #b8c5c9;
    --text-muted: #7a9199;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light), var(--tropical-coral));
    --gradient-tropical: linear-gradient(135deg, var(--tropical-teal), var(--tropical-green));
    --gradient-sunset: linear-gradient(135deg, var(--brand-orange), var(--tropical-coral), var(--brand-purple-light));
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));

    /* Sizing */
    --container-max: 1200px;
    --header-height: 80px;

    /* Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;

    /* Shadows */
    --shadow-glow-orange: 0 0 60px rgba(232, 123, 53, 0.25);
    --shadow-glow-teal: 0 0 60px rgba(13, 115, 119, 0.25);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s var(--ease-out-expo);
    --transition-normal: 0.4s var(--ease-out-expo);
    --transition-slow: 0.8s var(--ease-out-expo);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-script: 'Dancing Script', cursive;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

input {
    border: none;
    outline: none;
    font-family: inherit;
}

::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--tropical-teal-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tropical-teal);
}

::selection {
    background: rgba(232, 123, 53, 0.3);
    color: var(--text-primary);
}

/* ----- Preloader ----- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(232, 123, 53, 0.3);
    box-shadow: 0 0 30px rgba(232, 123, 53, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 auto 16px;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-brand);
    border-radius: 3px;
    animation: load-bar 2s ease-in-out forwards;
}

.preloader-text {
    font-family: var(--font-script);
    font-size: 1.1rem;
    color: var(--text-secondary);
    animation: fade-pulse 1.5s ease-in-out infinite;
}

@keyframes load-bar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(232, 123, 53, 0.4)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 40px rgba(232, 123, 53, 0.6)); }
}

@keyframes fade-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ----- Particles Canvas ----- */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* ----- Tropical Leaves Overlay ----- */
.tropical-leaves {
    position: fixed;
    z-index: 2;
    pointer-events: none;
    opacity: 0.6;
}

.leaf-top-left {
    top: -20px;
    left: -20px;
    width: 250px;
    transform: rotate(0deg);
}

.leaf-bottom-right {
    bottom: -20px;
    right: -20px;
    width: 250px;
    transform: rotate(0deg);
}

/* ----- Ambient Orbs ----- */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--brand-orange) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    animation: float-orb-1 12s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--tropical-teal) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: float-orb-2 15s ease-in-out infinite;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--brand-purple) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-orb-3 10s ease-in-out infinite;
}

@keyframes float-orb-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 30px) scale(1.1); }
    66% { transform: translate(20px, -20px) scale(0.9); }
}

@keyframes float-orb-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes float-orb-3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

/* ----- Main Content ----- */
#main-content {
    position: relative;
    z-index: 3;
}

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13, 115, 119, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(232, 123, 53, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(74, 32, 96, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(232, 123, 53, 0.4);
    box-shadow: 0 0 40px rgba(232, 123, 53, 0.2), 0 0 80px rgba(232, 123, 53, 0.1), inset 0 0 20px rgba(232, 123, 53, 0.05);
    animation: logo-float 6s ease-in-out infinite;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.logo-wrapper:hover {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 0 60px rgba(232, 123, 53, 0.35), 0 0 100px rgba(232, 123, 53, 0.15);
}

.logo-glow {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 123, 53, 0.25), transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: -1;
}

.logo-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    transition: transform var(--transition-normal);
}

.logo-img:hover {
    transform: scale(1.05);
}

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

/* Tagline */
.tagline-wrapper {
    margin-bottom: 40px;
}

.tagline-top {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--tropical-green-light);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s forwards;
}

.main-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.heading-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.heading-line:nth-child(1) { animation-delay: 0.5s; }
.heading-line:nth-child(2) { animation-delay: 0.7s; }
.heading-line:nth-child(3) { animation-delay: 0.9s; }

.heading-accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tagline-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.1s forwards;
}

/* Construction Badge */
.construction-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--border-radius-xl);
    padding: 16px 32px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.3s forwards;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.construction-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.badge-icon {
    font-size: 2rem;
    animation: bounce-subtle 2s ease-in-out infinite;
}

.badge-text {
    text-align: left;
}

.badge-label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-orange-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

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

/* Countdown */
.countdown-section {
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.5s forwards;
}

.countdown-title {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-unit {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--border-radius-md);
    padding: 20px 24px;
    min-width: 90px;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.countdown-unit:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-glow-teal);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-top: 8px;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-muted);
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* =============================================
   SNEAK PEEK SECTION
   ============================================= */
.peek-section {
    padding: 100px 24px 120px;
    position: relative;
}

.peek-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--tropical-teal), transparent);
}

/* Section Headers (shared) */
.section-badge {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-orange-light);
    font-weight: 600;
    background: rgba(232, 123, 53, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(232, 123, 53, 0.2);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Peek Cards */
.peek-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.peek-card {
    position: relative;
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    opacity: 0;
    transform: translateY(40px);
}

.peek-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.peek-card:nth-child(1).visible { transition-delay: 0.1s; }
.peek-card:nth-child(2).visible { transition-delay: 0.25s; }
.peek-card:nth-child(3).visible { transition-delay: 0.4s; }

.peek-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-elevated);
}

.peek-card-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.peek-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.peek-card:hover .peek-card-img {
    transform: scale(1.1);
}

.peek-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 26, 31, 0.9) 100%);
    pointer-events: none;
}

.peek-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.tropical-vibes {
    background: linear-gradient(135deg, var(--tropical-teal-dark), var(--tropical-green), var(--brand-orange));
    animation: shimmer-bg 4s ease-in-out infinite alternate;
}

@keyframes shimmer-bg {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.peek-card-content {
    padding: 28px;
    position: relative;
}

.peek-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    display: inline-block;
    animation: bounce-subtle 3s ease-in-out infinite;
}

.peek-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.peek-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============================================
   NOTIFY SECTION
   ============================================= */
.notify-section {
    padding: 80px 24px 100px;
    position: relative;
}

.notify-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}

.notify-content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    border-radius: var(--border-radius-xl);
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}

.notify-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--gradient-brand);
    border-radius: 2px;
}

.notify-text {
    margin-bottom: 36px;
}

.notify-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 12px;
    line-height: 1.7;
}

/* Form */
.notify-form {
    position: relative;
}

.form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.notify-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.notify-input::placeholder {
    color: var(--text-muted);
}

.notify-input:focus {
    border-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(232, 123, 53, 0.15);
}

.notify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--gradient-brand);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.notify-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.notify-btn:hover::before {
    opacity: 1;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-orange);
}

.notify-btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.notify-btn:hover .btn-icon {
    transform: translateX(4px);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.form-success {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 16px 24px;
    background: rgba(46, 139, 87, 0.15);
    border: 1px solid rgba(46, 139, 87, 0.3);
    border-radius: var(--border-radius-md);
    animation: fadeInUp 0.5s var(--ease-out-expo);
}

.form-success.show {
    display: flex;
}

.success-icon {
    font-size: 1.2rem;
}

.success-text {
    font-size: 0.95rem;
    color: var(--tropical-green-light);
    font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
    padding: 60px 24px 40px;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(232, 123, 53, 0.3);
    box-shadow: 0 0 20px rgba(232, 123, 53, 0.15);
    transition: transform var(--transition-normal);
}

.footer-logo:hover {
    transform: rotate(10deg) scale(1.1);
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-tagline {
    margin-bottom: 28px;
}

.footer-script {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--brand-orange-light);
    margin-bottom: 6px;
}

.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--gradient-brand);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-made {
    margin-top: 6px;
    font-family: var(--font-script);
    font-size: 1rem !important;
    color: var(--text-secondary) !important;
}

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--border-glass);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
}

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

.back-to-top:hover {
    background: var(--gradient-brand);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* =============================================
   UTILITY ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =============================================
   RESPONSIVE – Tablet (768px)
   ============================================= */
@media (max-width: 768px) {
    .logo-wrapper {
        width: 150px;
        height: 150px;
        margin-bottom: 24px;
    }

    .logo-glow {
        inset: -20px;
    }

    .main-heading {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .tagline-top {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .tagline-sub {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .tagline-wrapper {
        margin-bottom: 28px;
    }

    .construction-badge {
        padding: 14px 24px;
        gap: 12px;
        margin-bottom: 32px;
    }

    .badge-icon {
        font-size: 1.5rem;
    }

    .badge-label {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .badge-desc {
        font-size: 0.78rem;
    }

    .countdown-unit {
        min-width: 70px;
        padding: 14px 16px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .peek-section {
        padding: 80px 20px 80px;
    }

    .peek-cards {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
        margin: 0 auto;
    }

    .peek-card-img-wrapper {
        height: 200px;
    }

    .peek-card-content {
        padding: 22px;
    }

    .peek-card-content h3 {
        font-size: 1.3rem;
    }

    .peek-card-content p {
        font-size: 0.9rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .notify-section {
        padding: 60px 20px 80px;
    }

    .notify-content {
        padding: 36px 24px;
        border-radius: var(--border-radius-lg);
    }

    .notify-description {
        font-size: 0.95rem;
    }

    .form-group {
        flex-direction: column;
    }

    .notify-input {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .notify-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .leaf-top-left {
        width: 120px;
    }

    .leaf-bottom-right {
        width: 120px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-links {
        gap: 12px;
    }

    .footer-section {
        padding: 48px 20px 32px;
    }

    .footer-logo {
        width: 64px;
        height: 64px;
    }

    .footer-script {
        font-size: 1.1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    /* Reduce orb sizes on tablet */
    .orb-1 {
        width: 300px;
        height: 300px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
    }

    .orb-3 {
        width: 200px;
        height: 200px;
    }
}

/* =============================================
   RESPONSIVE – Mobile (480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-section {
        padding: 20px 16px;
        min-height: 100svh; /* safe viewport height for mobile browsers */
    }

    .logo-wrapper {
        width: 130px;
        height: 130px;
        margin-bottom: 20px;
        border-width: 2px;
    }

    .logo-glow {
        inset: -15px;
    }

    .main-heading {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .tagline-top {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .tagline-sub {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    .tagline-wrapper {
        margin-bottom: 20px;
    }

    .construction-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 14px 20px;
        margin-bottom: 24px;
        border-radius: var(--border-radius-lg);
    }

    .badge-text {
        text-align: center;
    }

    .badge-label {
        font-size: 0.75rem;
    }

    .badge-desc {
        font-size: 0.72rem;
    }

    .countdown-timer {
        gap: 6px;
    }

    .countdown-unit {
        min-width: 60px;
        padding: 10px 8px;
    }

    .countdown-number {
        font-size: 1.4rem;
    }

    .countdown-label {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }

    .countdown-separator {
        font-size: 1.2rem;
    }

    .peek-section {
        padding: 48px 16px 60px;
    }

    .peek-cards {
        max-width: 100%;
        gap: 16px;
    }

    .peek-card-img-wrapper {
        height: 120px;
    }

    .peek-card-content {
        padding: 14px;
    }

    .peek-card-icon {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .peek-card-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .peek-card-content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 0.88rem;
    }

    .notify-section {
        padding: 40px 16px 60px;
    }

    .notify-content {
        padding: 28px 18px;
        border-radius: var(--border-radius-md);
    }

    .notify-description {
        font-size: 0.88rem;
    }

    .notify-input {
        padding: 13px 16px;
        font-size: 0.95rem;
        border-radius: var(--border-radius-sm);
    }

    .notify-btn {
        padding: 13px 20px;
        font-size: 0.95rem;
        border-radius: var(--border-radius-sm);
    }

    .form-note {
        font-size: 0.72rem;
    }

    .form-success {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .success-text {
        font-size: 0.85rem;
    }

    .footer-section {
        padding: 40px 16px 28px;
    }

    .footer-logo {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .footer-script {
        font-size: 1rem;
    }

    .footer-address {
        font-size: 0.82rem;
    }

    .footer-tagline {
        margin-bottom: 20px;
    }

    .social-links {
        gap: 10px;
        margin-bottom: 24px;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        padding-top: 16px;
    }

    .footer-made {
        font-size: 0.88rem !important;
    }

    .leaf-top-left {
        width: 80px;
        opacity: 0.3;
    }

    .leaf-bottom-right {
        width: 80px;
        opacity: 0.3;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }

    /* Minimal orbs on mobile */
    .orb-1 {
        width: 200px;
        height: 200px;
        filter: blur(60px);
    }

    .orb-2 {
        width: 180px;
        height: 180px;
        filter: blur(60px);
    }

    .orb-3 {
        display: none;
    }
}

/* =============================================
   RESPONSIVE – Small Mobile (360px and below)
   ============================================= */
@media (max-width: 360px) {
    .hero-section {
        padding: 16px 12px;
    }

    .logo-wrapper {
        width: 110px;
        height: 110px;
        margin-bottom: 16px;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .tagline-top {
        font-size: 0.85rem;
    }

    .tagline-sub {
        font-size: 0.65rem;
    }

    .construction-badge {
        padding: 12px 16px;
    }

    .badge-icon {
        font-size: 1.3rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .badge-desc {
        font-size: 0.68rem;
    }

    .countdown-unit {
        min-width: 52px;
        padding: 8px 6px;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .countdown-separator {
        font-size: 1rem;
    }

    .peek-card-img-wrapper {
        height: 160px;
    }

    .peek-card-content {
        padding: 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .notify-content {
        padding: 22px 14px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* =============================================
   RESPONSIVE – Large Desktop (1400px+)
   ============================================= */
@media (min-width: 1400px) {
    .logo-wrapper {
        width: 220px;
        height: 220px;
    }

    .peek-card-img-wrapper {
        height: 280px;
    }

    .notify-content {
        max-width: 720px;
        padding: 64px 48px;
    }
}

/* =============================================
   TOUCH DEVICE OPTIMIZATIONS
   ============================================= */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover-dependent effects on touch devices */
    .peek-card:hover {
        transform: none;
    }

    .logo-wrapper:hover {
        transform: none;
    }

    .countdown-unit:hover {
        transform: none;
    }

    .construction-badge:hover {
        transform: none;
    }

    /* Ensure good tap targets (min 44px) */
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }

    .notify-btn {
        min-height: 48px;
    }

    .back-to-top {
        min-width: 44px;
        min-height: 44px;
    }
}

/* =============================================
   SAFE AREA for Notched Phones (iPhone X+)
   ============================================= */
@supports (padding: env(safe-area-inset-bottom)) {
    .footer-bottom {
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .back-to-top {
        bottom: calc(16px + env(safe-area-inset-bottom));
    }
}

/* =============================================
   LANDSCAPE MOBILE
   ============================================= */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 24px 32px;
    }

    .logo-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }

    .tagline-wrapper {
        margin-bottom: 16px;
    }

    .main-heading {
        font-size: 2rem;
    }

    .construction-badge {
        margin-bottom: 16px;
        padding: 10px 20px;
    }

    .badge-icon {
        font-size: 1.2rem;
    }
}

/* =============================================
   REDUCED MOTION (accessibility)
   ============================================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    #particles-canvas {
        display: none;
    }

    .orb {
        animation: none;
    }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
    #particles-canvas,
    .tropical-leaves,
    .orb,
    #preloader,
    .back-to-top {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}
