/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    --primary: #d81b60;          /* Deep Magenta inspired by flyer */
    --primary-hover: #b9124e;
    --primary-light: #fdf2f8;
    --primary-glow: rgba(216, 27, 96, 0.15);
    
    --secondary: #1e293b;        /* Deep Slate */
    --secondary-hover: #0f172a;
    
    --accent: #eab308;           /* Cozy Gold/Yellow from flyer */
    --accent-light: #fef9c3;
    
    --text-main: #334155;        /* Neutral Slate Dark */
    --text-muted: #64748b;       /* Neutral Slate Light */
    --text-white: #ffffff;
    
    --bg-main: #fcfcfb;          /* Soft Off-White Warm */
    --bg-card: #ffffff;
    --bg-header: rgba(255, 255, 255, 0.85);
    
    --success: #25d366;          /* WhatsApp Green */
    --success-hover: #128c7e;
    --danger: #ef4444;
    
    --border-color: #f1f5f9;
    --border-focus: #fda4af;     /* Soft pink for focus borders */
    
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.1);
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease-out;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.25;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

ul {
    list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-tag.light {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-white);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--text-white);
}

.btn-text {
    background: transparent;
    color: var(--secondary);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.btn-text:hover {
    color: var(--primary);
    gap: 0.75rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-icon-small {
    width: 1rem;
    height: 1rem;
    transition: var(--transition-smooth);
}

.btn-icon-brand {
    width: 1.25rem;
    height: 1.25rem;
}

/* Badges */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.badge-accent {
    background-color: var(--accent-light);
    color: #854d0e; /* Dark amber text */
}

.badge-secondary {
    background-color: var(--border-color);
    color: var(--text-muted);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 0.5rem 0;
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 800;
    z-index: 1001;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary);
}

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

.brand-name {
    font-size: 1.25rem;
    color: var(--secondary);
    letter-spacing: -0.03em;
}

.brand-sub {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

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

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

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 0.5rem;
}

.menu-toggle .bar {
    width: 24px;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 8.5rem 0 5rem;
    background-image: radial-gradient(circle at 80% 20%, rgba(253, 242, 248, 0.8) 0%, rgba(252, 252, 251, 0) 60%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-content h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 540px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-features-strip {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.feature-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Gallery Card Preview */
.hero-gallery-preview {
    position: relative;
}

.main-image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: var(--shadow-lg);
    background-color: var(--border-color);
}

.hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.main-image-card:hover .hero-img {
    transform: scale(1.02);
}

.overlay-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.card-bottom-left {
    bottom: 2rem;
    left: -2rem;
    animation: floating 4s ease-in-out infinite alternate;
}

.card-top-right {
    top: 2rem;
    right: -1.5rem;
    animation: floating 4s ease-in-out infinite alternate-reverse;
}

.avatar-group {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    border: 2px solid var(--bg-card);
}

.card-info {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary);
}

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

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

.card-status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Animations */
@keyframes floating {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

/* ==========================================================================
   SPACES SECTION
   ========================================================================== */
.spaces-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.space-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.space-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-focus);
}

.space-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: var(--border-color);
}

.space-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.space-card:hover .space-img {
    transform: scale(1.04);
}

.space-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.35rem 0.85rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

.badge-available {
    background-color: rgba(37, 211, 102, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text-white);
}

.badge-upcoming {
    background-color: rgba(234, 179, 8, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text-white);
}

.space-info {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.space-info h3 {
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.space-subtitle {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.space-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
}

.space-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-top: auto;
    margin-bottom: 2rem;
    gap: 1rem;
}

.space-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.space-detail-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Modify upcoming space card style slightly to look softer since it's upcoming */
.space-card.upcoming {
    border-style: dashed;
    border-width: 2px;
}

.space-card.upcoming .select-space-btn {
    border-color: var(--accent);
    color: var(--accent);
}

.space-card.upcoming .select-space-btn:hover {
    background-color: var(--accent);
    color: var(--text-white);
    border-color: var(--accent);
}

/* ==========================================================================
   SERVICES / AMENITIES
   ========================================================================== */
.services {
    padding: 6rem 0;
    background-color: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.25rem;
    background-color: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    background-color: var(--bg-card);
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.service-icon-wrapper svg {
    width: 1.75rem;
    height: 1.75rem;
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary);
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    padding: 6rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.2) 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-overlay span {
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   BOOKING & FORM SECTION
   ========================================================================== */
.booking-section {
    padding: 6rem 0;
    background-color: var(--secondary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(216, 27, 96, 0.08) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.booking-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-info-box h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.booking-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.info-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}

.info-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon {
    width: 2.75rem;
    height: 2.75rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.info-contact-item h4 {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.info-contact-item p {
    color: rgba(255, 255, 255, 0.85);
}

.info-contact-item a:hover {
    color: var(--primary);
}

.flyer-notice {
    padding: 1.25rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.95rem;
}

.flyer-notice p {
    color: rgba(255, 255, 255, 0.9);
}

/* Booking Form */
.booking-form-wrapper {
    background-color: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

.booking-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--bg-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* Form states */
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: var(--danger);
    background-color: #fef2f2;
}

.form-group.invalid input:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.error-msg {
    display: block;
    color: var(--danger);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.35rem;
    min-height: 1rem;
}

.form-actions {
    margin-top: 2rem;
}

#btn-submit {
    background-color: var(--success);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

#btn-submit:hover {
    background-color: var(--success-hover);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   LOCATION SECTION
   ========================================================================== */
.location-section {
    padding: 6rem 0;
    background-color: var(--bg-card);
}

.map-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    background-color: var(--bg-main);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-container {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    min-height: 350px;
}

.map-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-info {
    padding: 1.5rem 1rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.map-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.location-highlights li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.location-highlights .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-map {
    margin-top: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
}

.footer-logo .logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-white);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 0.25rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-highlight {
    color: var(--text-white);
    font-size: 1.35rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0.5rem 0;
}

.footer-bottom {
    background-color: var(--secondary-hover);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.dev-tag {
    color: rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--success);
    color: var(--text-white);
    width: 3.75rem;
    height: 3.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulse-button 2.5s infinite;
}

.whatsapp-float svg {
    width: 2rem;
    height: 2rem;
}

.whatsapp-float:hover {
    background-color: var(--success-hover);
    transform: translateY(-5px) scale(1.05);
}

@keyframes pulse-button {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   LIGHTBOX MODAL
   ========================================================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: calc(80vh - 40px);
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--text-white);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    padding: 1.25rem 1rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lightbox-prev { left: 2.5rem; }
.lightbox-next { right: 2.5rem; }

.lightbox-caption {
    font-family: var(--font-display);
    color: var(--text-white);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-card);
    width: 100%;
    max-width: 460px;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--secondary);
}

.modal-body {
    text-align: center;
}

.success-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background-color: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon {
    width: 2.25rem;
    height: 2.25rem;
}

.modal-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Large Desktop */
@media (max-width: 1200px) {
    .hero-container, .booking-container, .map-card {
        gap: 3rem;
    }
}

/* Tablet (Landscape & Portrait) */
@media (max-width: 992px) {
    body {
        font-size: 0.975rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .badge-container {
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features-strip {
        justify-content: center;
        gap: 3.5rem;
    }
    
    .hero-gallery-preview {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-img {
        height: 380px;
    }
    
    .card-bottom-left {
        left: -1rem;
    }
    
    .booking-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .booking-info-box {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .info-contacts {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2.5rem;
    }
    
    .info-contact-item {
        text-align: left;
    }
    
    .map-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        padding: 0;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 3rem;
    }
    
    .footer-contact {
        grid-column: span 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 2rem;
    }
    
    .footer-contact h4 {
        margin-bottom: 0;
    }
}

/* Mobile & Navigation Drawer */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 4.5rem;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 4.5rem);
        background-color: var(--bg-card);
        box-shadow: -10px 10px 30px rgba(15, 23, 42, 0.1);
        padding: 3rem 2rem;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.75rem;
        width: 100%;
    }
    
    .main-nav li {
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        display: block;
        width: 100%;
    }
    
    .btn-nav {
        display: flex;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    /* Menu active state transitions */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero adjustments */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features-strip {
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    /* Form adjustments */
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Gallery */
    .gallery-item {
        height: 200px;
    }
    
    /* Map Container */
    .map-container {
        min-height: 280px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-contact {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3.25rem;
        height: 3.25rem;
    }
    
    .whatsapp-float svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .lightbox-close {
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .lightbox-prev { left: 1rem; }
    .lightbox-next { right: 1rem; }
}

@media (max-width: 480px) {
    .hero-features-strip {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 240px;
    }
}
