/* ==========================================================================
   ZAMOYA AYURVEDA - LUXURY MAINTENANCE PAGE STYLES
   ========================================================================== */

:root {
    --bg-primary: #080807;
    --bg-secondary: #11100f;
    --bg-card: rgba(20, 18, 16, 0.7);
    --bg-card-border: rgba(212, 175, 55, 0.25);
    
    --gold-primary: #dfb15b;
    --gold-secondary: #f3d88a;
    --gold-dark: #a1782a;
    --gold-glow: rgba(223, 177, 91, 0.35);
    
    --text-primary: #fbf8f2;
    --text-secondary: #b8b2a8;
    --text-muted: #7d776e;
    
    --emerald-green: #059669;
    --emerald-bright: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.4);
    
    --font-heading: 'Cinzel', serif;
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Ambient Background Glows & Particle Canvas
   -------------------------------------------------------------------------- */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(140px);
    opacity: 0.55;
}

.glow-top-left {
    top: -10%;
    left: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(139, 26, 26, 0.3) 0%, transparent 70%);
}

.glow-top-right {
    top: 5%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(199, 142, 38, 0.22) 0%, transparent 70%);
}

.glow-center {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 114, 30, 0.15) 0%, transparent 75%);
}

.glow-bottom {
    bottom: -15%;
    left: 20%;
    width: 900px;
    height: 700px;
    background: radial-gradient(circle, rgba(110, 20, 20, 0.25) 0%, rgba(5, 150, 105, 0.1) 50%, transparent 80%);
}

.stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        radial-gradient(1.5px 1.5px at 40px 60px, rgba(243, 216, 138, 0.45), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 150px 220px, rgba(255, 255, 255, 0.35), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 320px 140px, rgba(223, 177, 91, 0.3), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 450px 380px, rgba(243, 216, 138, 0.4), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 680px 180px, rgba(255, 255, 255, 0.3), rgba(0,0,0,0)),
        radial-gradient(1.5px 1.5px at 850px 290px, rgba(223, 177, 91, 0.4), rgba(0,0,0,0)),
        radial-gradient(1px 1px at 1020px 80px, rgba(255, 255, 255, 0.35), rgba(0,0,0,0)),
        radial-gradient(2px 2px at 1200px 310px, rgba(243, 216, 138, 0.45), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 800px 800px;
    opacity: 0.6;
}

/* --------------------------------------------------------------------------
   Page Wrapper
   -------------------------------------------------------------------------- */
.page-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 1360px;
    margin: 0 auto;
    padding: 24px 32px 36px 32px;
}

/* --------------------------------------------------------------------------
   Top Navigation
   -------------------------------------------------------------------------- */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0 28px 0;
}

.nav-left, .nav-right {
    width: 44px;
}

.brand-monogram {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(25, 23, 21, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.brand-monogram:hover {
    transform: rotate(10deg) scale(1.05);
    border-color: var(--gold-secondary);
    box-shadow: 0 0 20px rgba(223, 177, 91, 0.4);
}

.wellness-portal-tag {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold-primary);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(223, 177, 91, 0.3);
}

.lang-switch-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    background: rgba(145, 30, 30, 0.85);
    color: #fff;
    border: 1px solid rgba(220, 50, 50, 0.4);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(145, 30, 30, 0.4);
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(175, 35, 35, 0.95);
    box-shadow: 0 0 15px rgba(220, 50, 50, 0.6);
}

.active-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #4ade80;
    box-shadow: 0 0 8px #4ade80;
}

.sound-toggle-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(28, 25, 23, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sound-toggle-btn:hover {
    border-color: var(--gold-primary);
    background: rgba(45, 40, 35, 0.9);
    transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   Main Content Layout
   -------------------------------------------------------------------------- */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 16px 40px 16px;
    max-width: 920px;
    margin: 0 auto;
    width: 100%;
}

/* Logo Box */
.logo-container {
    margin-bottom: 24px;
}

.logo-backdrop-card {
    background: rgba(18, 16, 14, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 24px 38px 20px 38px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.65),
        0 0 35px rgba(223, 177, 91, 0.12),
        inset 0 0 20px rgba(212, 175, 55, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-backdrop-card:hover {
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 45px rgba(223, 177, 91, 0.22);
    transform: translateY(-2px);
}

.brand-logo {
    max-width: 240px;
    height: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9));
}

/* Status Pill Tag */
.status-badge-wrapper {
    margin-bottom: 28px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 20px;
    background: rgba(28, 22, 15, 0.8);
    border: 1px solid rgba(212, 165, 50, 0.45);
    border-radius: 9999px;
    color: var(--gold-primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 165, 50, 0.12);
    animation: subtlePulse 4s infinite alternate ease-in-out;
}

.sparkle-icon {
    color: var(--gold-secondary);
    animation: rotateSparkle 6s linear infinite;
}

@keyframes rotateSparkle {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes subtlePulse {
    0% { border-color: rgba(212, 165, 50, 0.35); box-shadow: 0 0 10px rgba(212, 165, 50, 0.1); }
    100% { border-color: rgba(212, 165, 50, 0.65); box-shadow: 0 0 22px rgba(212, 165, 50, 0.25); }
}

/* Primary Headline */
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    font-weight: 700;
    line-height: 1.18;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.gold-gradient-text {
    background: linear-gradient(135deg, #fff7d6 0%, #f3d88a 35%, #dfb15b 70%, #b8862d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 14px rgba(223, 177, 91, 0.3));
}

/* Subtitle */
.hero-description {
    font-size: clamp(0.96rem, 1.3vw, 1.12rem);
    color: var(--text-secondary);
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   Center "Coming Soon" Box
   -------------------------------------------------------------------------- */
.card-coming-soon {
    width: 100%;
    max-width: 620px;
    background: rgba(16, 14, 13, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(223, 177, 91, 0.35);
    border-radius: 24px;
    padding: 34px 38px 28px 38px;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(223, 177, 91, 0.1),
        inset 0 0 25px rgba(223, 177, 91, 0.04);
    margin-bottom: 34px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.card-coming-soon:hover {
    border-color: rgba(223, 177, 91, 0.55);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.85),
        0 0 50px rgba(223, 177, 91, 0.18);
}

.stay-tuned-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    background: rgba(35, 29, 20, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 20px;
}

.indicator-square {
    width: 7px;
    height: 7px;
    background-color: #f59e0b;
    border-radius: 1.5px;
    box-shadow: 0 0 8px #f59e0b;
}

.coming-soon-glow {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #ffca43;
    text-shadow: 
        0 0 20px rgba(255, 202, 67, 0.55),
        0 0 45px rgba(223, 145, 25, 0.35);
    margin-bottom: 16px;
}

.coming-soon-subtext {
    font-size: 0.94rem;
    color: #c5bfb4;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress Bar */
.progress-section {
    width: 100%;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(35, 30, 26, 0.9);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: 14px;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #dc2626 0%, #f59e0b 45%, #10b981 90%, #34d399 100%);
    position: relative;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.6);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.progress-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shineSweep 2.8s infinite;
}

@keyframes shineSweep {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Instant Launch Notification Form
   -------------------------------------------------------------------------- */
.subscribe-wrapper {
    width: 100%;
    max-width: 540px;
    margin-bottom: 26px;
}

.subscribe-form {
    display: flex;
    align-items: center;
    background: rgba(18, 16, 15, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 9999px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.subscribe-form:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(223, 177, 91, 0.25);
}

.subscribe-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.94rem;
    padding: 8px 10px;
}

.subscribe-input::placeholder {
    color: #7b756c;
}

.btn-notify {
    background: linear-gradient(135deg, #f5d47a 0%, #d89f38 100%);
    color: #1a1408;
    border: none;
    border-radius: 9999px;
    padding: 13px 26px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(216, 159, 56, 0.4);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-notify:hover {
    background: linear-gradient(135deg, #ffe08e 0%, #e6aa3e 100%);
    box-shadow: 0 6px 22px rgba(216, 159, 56, 0.6);
    transform: translateY(-1px);
}

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

.subscribe-feedback {
    display: none;
    margin-top: 10px;
    font-size: 0.88rem;
    color: #34d399;
    font-weight: 500;
    animation: fadeIn 0.4s ease;
}

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

/* --------------------------------------------------------------------------
   Urgent WhatsApp Button
   -------------------------------------------------------------------------- */
.urgent-help-wrapper {
    width: 100%;
    max-width: 540px;
    margin-bottom: 40px;
}

.btn-urgent-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #047857 100%);
    border-radius: 9999px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: 
        0 10px 28px rgba(16, 185, 129, 0.35),
        0 0 25px rgba(16, 185, 129, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-urgent-whatsapp:hover {
    background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #059669 100%);
    box-shadow: 
        0 12px 35px rgba(16, 185, 129, 0.5),
        0 0 35px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

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

.wa-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Features / Value Badges Grid
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 680px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(18, 16, 15, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 18px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(26, 23, 20, 0.85);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(223, 177, 91, 0.12);
}

.feature-icon-wrapper {
    color: var(--gold-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 8px rgba(223, 177, 91, 0.3));
}

.feature-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #f7f4ed;
}

.feature-subtitle {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold-primary);
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Direct Contact Info Row
   -------------------------------------------------------------------------- */
.contact-info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
    font-size: 0.84rem;
    color: var(--text-secondary);
    padding: 10px 0;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item svg {
    color: var(--gold-primary);
    flex-shrink: 0;
}

.contact-item:not(.hours):hover {
    color: var(--gold-secondary);
    transform: translateY(-1px);
}

.contact-divider {
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Footer Section
   -------------------------------------------------------------------------- */
.bottom-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    flex-wrap: wrap;
    gap: 20px;
}

.social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(22, 19, 17, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.22);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-icon-btn:hover {
    color: var(--gold-secondary);
    border-color: var(--gold-primary);
    background: rgba(36, 30, 25, 0.95);
    box-shadow: 0 0 16px rgba(223, 177, 91, 0.35);
    transform: translateY(-2px);
}

.social-icon-btn.whatsapp-highlight:hover {
    color: #34d399;
    border-color: #10b981;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.45);
}

.copyright-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Floating Live Chat Button (Bottom-Right)
   -------------------------------------------------------------------------- */
.floating-chat-btn {
    position: fixed;
    bottom: 28px;
    right: 32px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 22px 12px 18px;
    border-radius: 9999px;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 
        0 10px 30px rgba(16, 185, 129, 0.4),
        0 0 20px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-chat-btn:hover {
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    box-shadow: 
        0 14px 40px rgba(16, 185, 129, 0.6),
        0 0 30px rgba(16, 185, 129, 0.5);
    transform: translateY(-3px) scale(1.02);
    color: #ffffff;
}

.chat-wa-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.chat-pulse-ring {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 9999px;
    pointer-events: none;
    border: 2px solid rgba(52, 211, 153, 0.6);
    animation: ringPulse 2.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.3, 1.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 900px) {
    .page-wrapper {
        padding: 20px 20px 32px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .bottom-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .top-nav {
        padding-bottom: 20px;
    }

    .wellness-portal-tag {
        font-size: 0.68rem;
        letter-spacing: 0.16em;
    }

    .logo-backdrop-card {
        padding: 18px 26px 16px 26px;
    }

    .brand-logo {
        max-width: 190px;
    }

    .card-coming-soon {
        padding: 26px 20px 22px 20px;
        border-radius: 20px;
    }

    .subscribe-form {
        flex-direction: column;
        background: rgba(18, 16, 15, 0.95);
        border-radius: 16px;
        padding: 10px;
        gap: 10px;
    }

    .subscribe-input {
        width: 100%;
        text-align: center;
    }

    .btn-notify {
        width: 100%;
        border-radius: 12px;
    }

    .btn-urgent-whatsapp {
        font-size: 0.78rem;
        padding: 14px 18px;
        letter-spacing: 0.03em;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
    }

    .feature-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 14px 20px;
        text-align: left;
    }

    .contact-info-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-divider {
        display: none;
    }

    .floating-chat-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
    }

    .chat-btn-text {
        font-size: 0.76rem;
    }
}
