/* =========================================
   The Coastal Paradise — Coming Soon Page
   Premium Design System
   ========================================= */

/* CSS Custom Properties */
:root {
    /* Brand Colors */
    --navy-900: #0a1628;
    --navy-800: #111f3d;
    --navy-700: #1a2e52;
    --navy-600: #1e3a5f;
    --navy-500: #254a75;
    --navy-400: #3a6a9b;

    /* Gold Palette */
    --gold-500: #c9a96e;
    --gold-400: #d4b87a;
    --gold-300: #dfca92;
    --gold-200: #eadbb0;
    --gold-100: #f5edcf;
    --gold-600: #a88b4a;

    /* Neutral */
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #eef0f4;
    --gray-200: #dce0e8;
    --gray-300: #b0b8c8;
    --gray-400: #8892a8;
    --gray-500: #5f6b82;
    --gray-600: #3d4760;
    --gray-700: #2a3348;
    --gray-800: #1a2035;

    /* Semantic */
    --success: #34d399;
    --error: #f87171;
    --whatsapp: #25D366;

    /* Typography */
    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 120px);
    --container-max: 1200px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.3);
}

/* Reset */
*,
*::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: var(--navy-900);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out-expo);
}

ul {
    list-style: none;
}

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

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* =========================================
   Particles Background
   ========================================= */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 42px;
    height: 42px;
    color: var(--gold-500);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-the {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--gray-300);
    letter-spacing: 1px;
    font-weight: 500;
}

.logo-paradise {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gold-500);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gold-400);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-phone:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold-500);
    transform: translateY(-1px);
}

.nav-phone svg {
    color: var(--gold-500);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1); }
    100% { transform: scale(1.2); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.5) 30%,
        rgba(10, 22, 40, 0.6) 60%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: heroContentIn 1.2s var(--ease-out-expo) 0.3s both;
}

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

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 50px;
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.2); }
    50% { box-shadow: 0 0 20px 5px rgba(201, 169, 110, 0.15); }
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-500);
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.coming-soon-badge span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-400);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.title-line-1 {
    font-family: var(--font-accent);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--gray-200);
    letter-spacing: 4px;
    animation: titleLine1 1s var(--ease-out-expo) 0.5s both;
}

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

.title-line-2 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-300) 50%, var(--gold-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: titleLine2 1s var(--ease-out-expo) 0.7s both;
}

@keyframes titleLine2 {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--gold-400);
    margin-bottom: 16px;
    letter-spacing: 1px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.9s both;
}

.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
    animation: fadeInUp 1s var(--ease-out-expo) 1.1s both;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 36px;
    animation: fadeInUp 1s var(--ease-out-expo) 1.3s both;
}

.hero-location svg {
    color: var(--gold-500);
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-out-expo) 1.5s both;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 1.5px solid rgba(201, 169, 110, 0.4);
    color: var(--gold-400);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-secondary:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold-500);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    animation: fadeInUp 1s var(--ease-out-expo) 2s both;
}

.scroll-indicator span {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   Section Shared Styles
   ========================================= */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left-aligned {
    text-align: left;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
    position: relative;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-500);
    margin: 10px auto 0;
}

.left-aligned .section-label::after {
    margin: 10px 0 0 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.gold-text {
    color: var(--gold-500);
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    color: var(--gray-400);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.left-aligned .section-subtitle {
    margin: 0;
}

/* =========================================
   Countdown Section
   ========================================= */
.countdown-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.countdown-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 3vw, 24px);
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 100px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--white), var(--gold-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    font-weight: 500;
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold-500);
    opacity: 0.5;
    animation: separatorPulse 1s ease-in-out infinite;
    padding-bottom: 24px;
}

@keyframes separatorPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.15; }
}

/* =========================================
   Features Section
   ========================================= */
.features-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
    background: var(--navy-800);
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: var(--shadow-xl);
}

.feature-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

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

.feature-card:hover .feature-image img {
    transform: scale(1.08);
}

.feature-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.85) 100%);
}

.feature-content {
    padding: 30px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--gold-500);
    transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover .feature-icon {
    background: rgba(201, 169, 110, 0.2);
    transform: scale(1.05);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.feature-list {
    margin-bottom: 20px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--gray-300);
    line-height: 1.6;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
}

.feature-list li strong {
    color: var(--gold-400);
    font-weight: 600;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 5px 14px;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--gold-400);
    font-weight: 500;
}

/* =========================================
   Occasions Section
   ========================================= */
.occasions-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 20px;
}

.occasion-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: 16px;
    transition: all 0.4s var(--ease-out-expo);
    cursor: default;
}

.occasion-card:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.occasion-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border-radius: 14px;
    color: var(--gold-500);
    transition: all 0.4s var(--ease-out-expo);
}

.occasion-card:hover .occasion-icon {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.25), rgba(201, 169, 110, 0.1));
    transform: scale(1.05);
}

.occasion-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    padding: var(--section-pad) 0;
    position: relative;
    z-index: 1;
    background: var(--navy-900);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0.3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-item:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: rgba(201, 169, 110, 0.2);
    transform: translateX(4px);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.1);
    border-radius: 12px;
    color: var(--gold-500);
}

.contact-label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 0.95rem;
    color: var(--gray-200);
    font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all 0.3s var(--ease-out-expo);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-500);
    background: rgba(201, 169, 110, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: var(--shadow-gold);
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

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

/* =========================================
   Footer
   ========================================= */
.footer {
    padding: 40px 0 30px;
    position: relative;
    z-index: 1;
    background: var(--navy-900);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-style: italic;
    color: var(--gray-400);
    padding-left: 54px;
}

.footer-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--gray-400);
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    background: rgba(201, 169, 110, 0.15);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--gold-500);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer-domain {
    font-weight: 600;
    color: var(--gold-500) !important;
    letter-spacing: 0.5px;
}

/* =========================================
   WhatsApp Float
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease-out-expo);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* =========================================
   Scroll Animations (Intersection Observer)
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header.left-aligned {
        text-align: center;
    }

    .left-aligned .section-label::after {
        margin: 10px auto 0;
    }

    .left-aligned .section-subtitle {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-phone {
        padding: 8px 14px;
        font-size: 0;
    }

    .nav-phone svg {
        width: 22px;
        height: 22px;
    }

    .hero {
        min-height: 600px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }

    .scroll-indicator {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-tagline {
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .countdown-item {
        min-width: 60px;
    }

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

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
