/* ─────────────────────────────────────────────────────────────
   DRYLY — LUXURY COMING SOON EXPERIENCE
   Modern, elegant, high-performance styling
   ───────────────────────────────────────────────────────────── */

:root {
    --bg-base: #060911;
    --bg-surface: rgba(14, 21, 37, 0.7);
    --bg-surface-hover: rgba(20, 30, 52, 0.85);
    --bg-card-inner: rgba(255, 255, 255, 0.03);
    
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.35);
    --accent-blue: #3b82f6;
    --accent-indigo: #6366f1;
    --accent-emerald: #10b981;
    --accent-gold: #e2c275;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(0, 240, 255, 0.45);
    --border-card: rgba(255, 255, 255, 0.1);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-dim: #64748b;
    
    --font-heading: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7), 0 0 1px 1px rgba(255, 255, 255, 0.05);
    --shadow-glow: 0 0 50px -10px rgba(0, 240, 255, 0.15);
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

/* ── AMBIENT BACKGROUND SYSTEM ── */
#ambientCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    opacity: 0.65;
}

.bg-ambient-glows {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.22;
    transform: translateZ(0);
    will-change: transform;
}

.glow-orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, #00c8ff 0%, #3b82f6 50%, transparent 70%);
    top: -150px;
    left: -100px;
    animation: driftOrb1 18s ease-in-out infinite alternate;
}

.glow-orb-2 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, #6366f1 0%, #1e1b4b 60%, transparent 75%);
    top: 40%;
    right: -200px;
    animation: driftOrb2 22s ease-in-out infinite alternate;
}

.glow-orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00f0ff 0%, #064e3b 70%, transparent 75%);
    bottom: -100px;
    left: 20%;
    animation: driftOrb3 15s ease-in-out infinite alternate;
}

@keyframes driftOrb1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
}

@keyframes driftOrb2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-70px, -50px) scale(0.9); }
}

@keyframes driftOrb3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, -40px) scale(1.1); }
}

/* Subtle grid mesh overlay */
.bg-grid {
    position: fixed;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
    z-index: 1;
    mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 85%);
}

/* ── LAYOUT SHELL ── */
.page-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── HEADER / NAVIGATION ── */
header.site-header {
    padding: 2rem 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 800;
    position: relative;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    letter-spacing: -0.04em;
}

.brand-wordmark span {
    color: var(--accent-cyan);
}

.brand-logo-badge {
    position: relative;
    display: inline-block;
    width: 9px;
    height: 9px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-left: 2px;
    box-shadow: 0 0 12px var(--accent-cyan);
}

.brand-logo-badge::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1px solid var(--accent-cyan);
    opacity: 0.6;
    animation: pulseBadge 2s infinite ease-out;
}

@keyframes pulseBadge {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.4); opacity: 0; }
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    box-shadow: 0 0 10px var(--accent-emerald);
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.4;
    animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(2); opacity: 0; }
}

.header-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.15rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.25);
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-action-btn:hover {
    background: var(--accent-cyan);
    color: #030813;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    transform: translateY(-1px);
}

/* ── HERO SECTION ── */
main.site-main {
    padding: 3.5rem 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.hero-content {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 1.1rem;
    background: linear-gradient(90deg, rgba(0, 240, 255, 0.08), rgba(99, 102, 241, 0.08));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-pill-sparkle {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5.5vw, 4.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-main);
    text-wrap: balance;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 10%, #93c5fd 50%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-description {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 680px;
    font-weight: 400;
}

.hero-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    margin-top: 0.5rem;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-tag-icon {
    color: var(--accent-cyan);
    font-size: 0.85rem;
}

/* ── CARDS SECTION (GRID) ── */
.cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .cards-container {
        grid-template-columns: 1.05fr 1fr;
        align-items: stretch;
    }
}

/* ── GLASS CARD BASE ── */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    opacity: 0.6;
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 35px -5px rgba(0, 240, 255, 0.1);
}

.card-header-block {
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    margin-bottom: 1.75rem;
}

.card-header-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(59, 130, 246, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.card-header-text h2 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}

.card-header-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ── CONTACT PHONE BLOCKS ── */
.contact-numbers-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    flex-grow: 1;
}

.contact-item {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.35rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-2px);
}

.contact-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
}

.contact-label-tag {
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.18);
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
}

.contact-available {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: #a7f3d0;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.22rem 0.65rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
    box-shadow: 0 0 6px var(--accent-emerald);
    flex-shrink: 0;
}

.phone-digits-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.phone-number-display {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-number-display:hover {
    color: var(--accent-cyan);
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.2);
}

.copy-btn.copied {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-emerald);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Action Buttons inside contact item */
.contact-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.contact-actions-row.single-action {
    grid-template-columns: 1fr;
}

.btn-call-featured {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: #ffffff;
    font-weight: 700;
    padding: 0.75rem 1.25rem;
}

.btn-call-featured:hover {
    background: var(--accent-cyan);
    color: #030813;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    transform: translateY(-1px);
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-call {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-main);
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.2));
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25d366;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #042512;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.support-notice {
    font-size: 0.8rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px dashed var(--border-subtle);
}

/* ── LOCATION & GOOGLE MAPS INTEGRATION ── */
.location-card {
    display: flex;
    flex-direction: column;
}

.location-details-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.address-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.address-icon {
    color: var(--accent-cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

.address-text strong {
    display: block;
    font-size: 0.98rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.address-text span {
    display: block;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.hours-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: var(--text-dim);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

.hours-icon {
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Google Maps Iframe Container */
.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    background: #0b1120;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    min-height: 240px;
}

.map-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: invert(90%) hue-rotate(180deg) contrast(95%) saturate(85%);
    transition: filter 0.4s ease;
}

.map-frame-wrapper:hover iframe {
    filter: invert(85%) hue-rotate(180deg) contrast(100%) saturate(100%);
}

.map-overlay-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(7, 10, 17, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.map-overlay-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.map-actions-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.75rem;
}

.btn-maps-primary {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(59, 130, 246, 0.25));
    border: 1px solid rgba(0, 240, 255, 0.35);
    color: var(--accent-cyan);
}

.btn-maps-primary:hover {
    background: var(--accent-cyan);
    color: #030813;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    transform: translateY(-1px);
}

.btn-maps-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
}

.btn-maps-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* ── VIP NOTIFY / EARLY ACCESS BAR ── */
.notify-banner {
    margin-top: 1rem;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.5));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.notify-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.08), transparent 70%);
    pointer-events: none;
}

@media (min-width: 860px) {
    .notify-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.notify-text-col {
    max-width: 480px;
}

.notify-text-col h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.notify-text-col p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.notify-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    min-width: 320px;
    max-width: 460px;
    width: 100%;
}

.notify-input-wrap {
    position: relative;
    flex-grow: 1;
}

.notify-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.15rem;
    font-size: 0.9rem;
    color: #ffffff;
    outline: none;
    font-family: inherit;
    transition: all 0.25s ease;
}

.notify-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

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

.btn-notify-submit {
    background: var(--accent-cyan);
    color: #030813;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-notify-submit:hover {
    background: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.notify-feedback {
    display: none;
    font-size: 0.85rem;
    color: var(--accent-emerald);
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    width: 100%;
}

/* ── FOOTER ── */
footer.site-footer {
    padding: 2.5rem 0 3rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    color: var(--text-dim);
    font-size: 0.84rem;
}

@media (min-width: 768px) {
    footer.site-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-muted);
}

/* Toast Notification */
.toast-msg {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--accent-cyan);
    color: #ffffff;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
    pointer-events: none;
}

.toast-msg.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 640px) {
    .page-wrapper {
        padding: 0 1.15rem;
    }
    
    header.site-header {
        padding: 1.5rem 0 0.5rem;
    }
    
    .header-status {
        display: none;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
    
    .phone-digits-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .phone-number-display {
        font-size: 1.45rem;
    }
    
    .contact-actions-row {
        grid-template-columns: 1fr;
    }
    
    .map-actions-row {
        grid-template-columns: 1fr;
    }
    
    .notify-banner {
        padding: 1.75rem 1.25rem;
    }
    
    .notify-form {
        min-width: 100%;
    }
    
    .btn-notify-submit {
        width: 100%;
        justify-content: center;
    }
}
