/* ==========================================================================
   Ashok Rooms and Hostel - Master Dark Glassmorphic Theme (Clean & Compact)
   ========================================================================== */

/* Design Tokens & Custom Properties (Sleek Dark Theme) */
:root {
    --bg-main: #0a0e1a;
    --bg-surface: #12192b;
    --bg-card: rgba(26, 36, 60, 0.75);
    --bg-glass: rgba(255, 255, 255, 0.04);
    --border-glass: rgba(255, 255, 255, 0.12);
    --border-highlight: rgba(59, 130, 246, 0.4);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-sub: #d1d5db;
    
    --primary: #3b82f6;
    --primary-hover: #2563eb;
    --primary-glow: rgba(59, 130, 246, 0.4);
    
    --accent-emerald: #10b981;
    --accent-hotwater: #ea580c;
    --accent-whatsapp: #25d366;
    --accent-call: #3b82f6;
    --accent-amber: #f59e0b;

    --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 26px;

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.25);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

.float-animation {
    animation: floating 3.5s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
    100% { transform: translateY(0px); }
}

.pulse-btn {
    position: relative;
}

.pulse-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: btnPulse 2.5s infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Layout Container */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 85px 0;
    position: relative;
}

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

.section-header.center {
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Glassmorphic Panel Cards */
.glass-panel, .bright-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.glass-panel:hover, .bright-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-3px);
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
    background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

.btn-call {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.55);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-bright-outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-bright-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 13px 26px;
    font-size: 1rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 0.82rem;
}

.btn-block { width: 100%; }

/* Header Phone Button */
.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.4);
    border-radius: 30px;
    color: var(--accent-whatsapp);
    font-size: 0.85rem;
    transition: var(--transition);
}

.header-phone-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    transform: scale(1.03);
}

/* Header & Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    padding: 11px 0;
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
}

.logo-text .highlight { color: var(--primary); }

.badge-tag {
    font-size: 0.7rem;
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-emerald);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: 6px;
}

.main-nav { display: flex; align-items: center; gap: 22px; }
.nav-link { color: var(--text-sub); font-weight: 500; font-size: 0.92rem; position: relative; padding: 4px 0; }
.nav-link:hover, .nav-link.active { color: #ffffff; }

.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: var(--primary); transition: var(--transition); border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.mobile-toggle {
    display: none; flex-direction: column; gap: 5px; background: transparent; border: none; cursor: pointer; padding: 6px;
}
.mobile-toggle span { width: 24px; height: 2px; background-color: #ffffff; }

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 75px;
    overflow: hidden;
}

.hero-bg-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }

.hero-bg-img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) contrast(1.15);
    transform: scale(1.02); transition: transform 8s ease-out;
}

.hero-section:hover .hero-bg-img { transform: scale(1.05); }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.85) 0%, rgba(10, 14, 26, 0.65) 45%, rgba(10, 14, 26, 0.95) 100%),
                radial-gradient(circle at 75% 25%, rgba(59, 130, 246, 0.25) 0%, transparent 55%);
}

.hero-content { position: relative; z-index: 2; max-width: 920px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
    background: rgba(16, 185, 129, 0.15); border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50px; color: var(--accent-emerald); font-size: 0.88rem; font-weight: 600; margin-bottom: 20px;
}

.pulse-dot {
    width: 8px; height: 8px; background-color: var(--accent-emerald); border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title { font-size: 3.5rem; line-height: 1.15; margin-bottom: 16px; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.18rem; color: #e5e7eb; margin-bottom: 32px; max-width: 780px; text-shadow: 0 2px 4px rgba(0,0,0,0.6); }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 32px; }

.stat-card {
    background: rgba(18, 25, 43, 0.75); backdrop-filter: blur(12px); border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm); padding: 14px; text-align: center; transition: var(--transition);
}

.stat-card.highlight-card { border-color: rgba(59, 130, 246, 0.5); background: rgba(30, 58, 138, 0.35); }
.stat-card:hover { border-color: var(--border-highlight); transform: translateY(-3px); }

.stat-value { font-size: 1.6rem; font-weight: 800; color: #ffffff; }
.stat-period { font-size: 0.85rem; color: var(--accent-emerald); font-weight: 600; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* Location Banner Section */
.location-card {
    padding: 32px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
    align-items: center;
}

.location-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(59, 130, 246, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

.location-info h2 { font-size: 1.65rem; margin-bottom: 10px; }
.location-address { font-size: 0.98rem; color: var(--text-sub); margin-bottom: 10px; }
.location-desc { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.location-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

.map-embed-box {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 24px 18px;
    text-align: center;
}

.map-placeholder-content .map-icon { font-size: 2.4rem; margin-bottom: 6px; display: block; }
.map-placeholder-content h3 { font-size: 1.25rem; margin-bottom: 4px; }
.map-placeholder-content p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; }

/* Summary & Facilities */
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; }
.summary-text-box { padding: 32px; }
.summary-text-box h3 { font-size: 1.55rem; margin-bottom: 12px; }
.summary-text-box p { color: var(--text-sub); margin-bottom: 18px; }

.summary-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.summary-bullets li { position: relative; padding-left: 24px; color: var(--text-sub); font-size: 0.9rem; }
.summary-bullets li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--accent-emerald); font-weight: 800; }

.summary-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.bright-spec, .spec-card {
    background: var(--bg-surface); border: 1px solid var(--border-glass); border-radius: var(--radius-sm);
    padding: 15px; display: flex; align-items: center; gap: 12px; transition: var(--transition);
}

.bright-spec:hover, .spec-card:hover { border-color: var(--primary); background: rgba(26, 36, 60, 0.9); transform: translateY(-2px); }

.spec-icon {
    font-size: 1.6rem; background: rgba(255, 255, 255, 0.05); width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center; border-radius: 10px;
}

.spec-info { display: flex; flex-direction: column; }
.spec-title { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; }
.spec-detail { font-size: 0.9rem; font-weight: 700; color: #ffffff; margin-top: 2px; }

/* Facilities */
.facilities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.facility-card { padding: 26px; transition: var(--transition); position: relative; overflow: hidden; }
.facility-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); opacity: 0.5; transition: var(--transition); }
.facility-card:hover::before { opacity: 1; width: 6px; }

.facility-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }

.facility-icon-wrap {
    width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: #ffffff;
}

.hotwater-icon { background: linear-gradient(135deg, #ea580c 0%, #f97316 100%); }
.water-icon { background: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%); }
.cctv-icon { background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%); }
.parking-icon { background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); }
.cleaning-icon { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }

.badge-pill { font-size: 0.72rem; font-weight: 700; padding: 3px 10px; border-radius: 30px; background: rgba(59, 130, 246, 0.15); color: var(--primary); border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-pill.hotwater { background: rgba(249, 115, 22, 0.15); color: var(--accent-hotwater); border-color: rgba(249, 115, 22, 0.35); }

.facility-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.facility-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 14px; }

.facility-list { list-style: none; display: flex; flex-direction: column; gap: 6px; border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 12px; }
.facility-list li { font-size: 0.85rem; color: var(--text-sub); position: relative; padding-left: 18px; }
.facility-list li::before { content: '•'; position: absolute; left: 4px; color: var(--primary); font-size: 1.1rem; }

/* Photo Gallery & Lightbox */
.gallery-filters { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }

.filter-btn {
    padding: 7px 18px; border-radius: 30px; background: var(--bg-surface); border: 1px solid var(--border-glass);
    color: var(--text-sub); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #ffffff; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery-card {
    position: relative; border-radius: var(--radius-md); overflow: hidden; height: 240px; cursor: pointer; border: 1px solid var(--border-glass);
}

.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10, 14, 26, 0.9) 0%, rgba(10, 14, 26, 0.2) 60%, transparent 100%);
    opacity: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px; transition: var(--transition);
}

.gallery-card:hover img { transform: scale(1.08); }
.gallery-card:hover .gallery-overlay { opacity: 1; }

.gallery-category { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); font-weight: 700; }
.gallery-caption { font-size: 0.95rem; color: #ffffff; margin-top: 2px; }

.view-icon {
    position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ffffff; font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox-modal { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(5, 8, 15, 0.95); backdrop-filter: blur(20px); align-items: center; justify-content: center; padding: 20px; }
.lightbox-modal.active { display: flex; }

.lightbox-content { max-width: 900px; max-height: 85vh; position: relative; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 75vh; border-radius: 12px; box-shadow: 0 20px 50px rgba(0,0,0,0.8); }
.lightbox-caption-bar { margin-top: 12px; font-size: 0.98rem; color: #ffffff; font-weight: 600; text-align: center; }
.lightbox-close { position: absolute; top: 20px; right: 25px; font-size: 2.2rem; color: #ffffff; background: transparent; border: none; cursor: pointer; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, 0.1); border: 1px solid var(--border-glass); color: #ffffff; font-size: 1.6rem; padding: 8px 14px; border-radius: 50%; cursor: pointer; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Pricing Cards & Calculator */
.pricing-cards-container { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.pricing-card { padding: 32px; display: flex; flex-direction: column; position: relative; border: 1px solid var(--border-glass); }
.pricing-card.popular-card { border-color: var(--primary); box-shadow: 0 0 30px rgba(59, 130, 246, 0.25); background: linear-gradient(180deg, rgba(30, 58, 138, 0.3) 0%, rgba(26, 36, 60, 0.8) 100%); }

.pricing-badge { position: absolute; top: -12px; left: 24px; background: rgba(16, 185, 129, 0.2); border: 1px solid var(--accent-emerald); color: var(--accent-emerald); font-size: 0.72rem; font-weight: 700; padding: 3px 12px; border-radius: 30px; text-transform: uppercase; }
.pricing-badge.popular { background: var(--primary); border-color: var(--primary); color: #ffffff; }

.pricing-card h3 { font-size: 1.45rem; margin-bottom: 10px; }
.price-amount { font-size: 2.5rem; font-weight: 800; color: #ffffff; margin-bottom: 8px; }
.price-period { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.pricing-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing-features li { font-size: 0.88rem; color: var(--text-sub); }

.calculator-box { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding: 35px; }
.calculator-info h2 { font-size: 1.6rem; margin-bottom: 10px; }
.calculator-info p { color: var(--text-muted); font-size: 0.9rem; }
.calculator-controls { display: flex; flex-direction: column; gap: 16px; }
.control-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }

input[type="range"] { width: 100%; height: 7px; border-radius: 5px; background: #1f293d; accent-color: var(--primary); cursor: pointer; }
.range-labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--text-muted); margin-top: 5px; }

.custom-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.88rem; color: var(--text-sub); }
.custom-checkbox input { display: none; }
.checkmark { width: 16px; height: 16px; border: 2px solid var(--border-glass); border-radius: 4px; position: relative; }
.custom-checkbox input:checked ~ .checkmark { background: var(--primary); border-color: var(--primary); }
.checkmark::after { content: ''; position: absolute; display: none; left: 4px; top: 1px; width: 4px; height: 7px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.custom-checkbox input:checked ~ .checkmark::after { display: block; }

select {
    background: rgba(10, 14, 26, 0.8);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
}

.calc-results { background: rgba(10, 14, 26, 0.7); border: 1px solid var(--border-glass); border-radius: var(--radius-sm); padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.result-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-muted); }
.result-row.discount { color: var(--accent-emerald); font-weight: 600; }
.result-divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin: 3px 0; }
.result-row.total { font-size: 1.15rem; font-weight: 800; color: #ffffff; }
.result-row.total span:last-child { color: var(--primary); }
.deposit-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* Contact Section & Compact Address Box */
.contact-details-full {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
}

.contact-address-box h3 { font-size: 1.35rem; margin-bottom: 8px; }
.full-address { font-size: 0.92rem; color: var(--text-sub); line-height: 1.6; }
.address-icon { font-size: 2.2rem; margin-bottom: 6px; display: block; }

.contact-actions-grid-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card { padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.contact-icon { font-size: 2.2rem; width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.whatsapp-card .contact-icon { background: rgba(37, 211, 102, 0.15); color: var(--accent-whatsapp); }
.call-card .contact-icon { background: rgba(59, 130, 246, 0.15); color: var(--primary); }

.contact-person-badge { font-size: 0.78rem; font-weight: 700; color: var(--primary); background: rgba(59, 130, 246, 0.15); padding: 3px 10px; border-radius: 20px; }
.phone-number-display { font-size: 1.3rem; font-weight: 800; color: #ffffff; letter-spacing: 0.5px; }

/* COMPACT & SMALLER OPEN POPUP MODAL */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(5, 8, 15, 0.85);
    backdrop-filter: blur(14px);
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-backdrop.active { display: flex; }

.modal-box {
    width: 100%;
    max-width: 410px;
    padding: 24px 26px;
    position: relative;
    background: rgba(18, 25, 43, 0.96);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(59, 130, 246, 0.2);
    animation: modalFadeUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalFadeUp {
    from { opacity: 0; transform: scale(0.92) translateY(15px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover { color: #ffffff; background: rgba(255, 255, 255, 0.2); }

.modal-header { margin-bottom: 18px; text-align: center; }
.modal-header h3 { font-size: 1.3rem; margin-bottom: 4px; color: #ffffff; }
.modal-header p { font-size: 0.82rem; color: var(--text-muted); }

.modal-contact-options { display: flex; flex-direction: column; gap: 10px; }

.contact-option-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
    background: rgba(10, 14, 26, 0.7);
}

.contact-option-btn.whatsapp-option { border-color: rgba(37, 211, 102, 0.3); }
.contact-option-btn.whatsapp-option:hover { background: rgba(37, 211, 102, 0.15); border-color: var(--accent-whatsapp); transform: translateX(3px); }

.contact-option-btn.call-option { border-color: rgba(59, 130, 246, 0.3); }
.contact-option-btn.call-option:hover { background: rgba(59, 130, 246, 0.15); border-color: var(--primary); transform: translateX(3px); }

.contact-option-btn.maps-option { border-color: rgba(2, 132, 199, 0.3); }
.contact-option-btn.maps-option:hover { background: rgba(2, 132, 199, 0.15); border-color: var(--primary); transform: translateX(3px); }

.option-icon {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.option-text { display: flex; flex-direction: column; flex-grow: 1; }
.option-title { font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.option-sub { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }
.option-arrow { font-size: 1rem; color: var(--text-muted); transition: var(--transition); }
.contact-option-btn:hover .option-arrow { color: #ffffff; transform: translateX(3px); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-surface); border: 1px solid var(--border-glass); border-radius: var(--radius-sm); overflow: hidden; }
.faq-question { padding: 16px 20px; font-weight: 600; font-size: 0.98rem; display: flex; justify-content: space-between; cursor: pointer; }
.faq-toggle { font-size: 1.3rem; color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 20px; color: var(--text-muted); font-size: 0.9rem; }
.faq-item.active { border-color: var(--primary); }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 20px 16px 20px; }

/* Footer & Floating WhatsApp */
.site-footer { background: #060912; border-top: 1px solid var(--border-glass); padding-top: 55px; }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 35px; margin-bottom: 40px; }
.footer-col.brand p { color: var(--text-muted); font-size: 0.88rem; margin-top: 12px; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-links a { font-size: 0.82rem; padding: 6px 12px; background: var(--bg-surface); border: 1px solid var(--border-glass); border-radius: 20px; }
.footer-col h4 { font-size: 1.05rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a, .footer-col p { color: var(--text-muted); font-size: 0.88rem; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 20px 0; }
.footer-bottom-flex { display: flex; justify-content: space-between; font-size: 0.82rem; color: var(--text-muted); }
.legal-links { display: flex; gap: 16px; }

.floating-whatsapp {
    position: fixed; bottom: 25px; left: 25px; z-index: 1000; width: 54px; height: 54px;
    background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}
.floating-whatsapp:hover { transform: scale(1.1); }

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title { font-size: 2.7rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .location-card { grid-template-columns: 1fr; }
    .summary-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .pricing-cards-container { grid-template-columns: 1fr; }
    .calculator-box { grid-template-columns: 1fr; }
    .contact-details-full { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .facility-card[style*="span 2"] { grid-column: span 1 !important; }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px); flex-direction: column; justify-content: center; transition: var(--transition); z-index: 999;
    }
    .main-nav.active { right: 0; }
    .mobile-toggle { display: flex; }
    .header-phone-btn { display: none; }
    .hero-title { font-size: 2.1rem; }
    .hero-cta-group { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .contact-actions-grid-inner { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom-flex { flex-direction: column; gap: 12px; text-align: center; }
}