/* ═══════════════════════════════════════════════════════════════
   Casute Costinesti — "Sunset Beach" Design System
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
    /* Palette */
    --color-ocean: #1B4965;
    --color-ocean-dark: #0A2647;
    --color-ocean-light: #2E6F95;
    --color-sand: #F5E6CA;
    --color-sand-light: #FDF8F0;
    --color-coral: #FF6B6B;
    --color-coral-dark: #E55555;
    --color-golden: #FFB347;
    --color-foam: #62B6CB;
    --color-white: #FFFFFF;
    --color-gray-100: #F8F9FA;
    --color-gray-200: #E9ECEF;
    --color-gray-600: #6C757D;
    --color-gray-800: #343A40;
    --color-gray-900: #212529;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Caveat', cursive;

    /* Spacing */
    --section-padding: 6rem 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-card: 0 4px 24px rgba(10, 38, 71, 0.08);
    --shadow-card-hover: 0 8px 40px rgba(10, 38, 71, 0.15);
    --shadow-nav: 0 2px 20px rgba(10, 38, 71, 0.1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-gray-800);
    background: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-ocean-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--color-ocean);
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover { color: var(--color-coral); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Top Bar ──────────────────────────────────────────────── */
.top-bar {
    background: var(--color-ocean-dark);
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left { display: flex; gap: 1.5rem; }
.top-bar-right { display: flex; gap: 0.75rem; }
.top-link {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.top-link:hover { color: var(--color-golden); }
.top-link i { font-size: 0.75rem; }
.social-link {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}
.social-link:hover {
    background: var(--color-ocean-light);
    color: var(--color-white);
}

/* ── Navigation ───────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10,38,71,0.06);
    transition: box-shadow var(--transition-smooth);
}
.navbar.scrolled {
    box-shadow: var(--shadow-nav);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.logo-icon {
    font-size: 1.6rem;
    color: var(--color-coral);
}
.logo-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-ocean-dark);
    letter-spacing: -0.5px;
}
.logo-img { max-height: 48px; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--color-gray-800);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}
.nav-link:hover,
.nav-link.active {
    color: var(--color-ocean);
    background: rgba(27,73,101,0.06);
}
.nav-cta {
    background: var(--color-coral) !important;
    color: var(--color-white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
}
.nav-cta:hover {
    background: var(--color-coral-dark) !important;
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,107,107,0.3);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-ocean-dark);
    position: relative;
    transition: all var(--transition-smooth);
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-ocean-dark);
    transition: all var(--transition-smooth);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Flash Messages ───────────────────────────────────────── */
.flash-message {
    padding: 1rem 0;
    text-align: center;
    font-weight: 500;
}
.flash-success { background: #D4EDDA; color: #155724; }
.flash-error { background: #F8D7DA; color: #721C24; }
.flash-message .container { display: flex; justify-content: center; align-items: center; gap: 1rem; }
.flash-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.6;
    color: inherit;
    line-height: 1;
}
.flash-close:hover { opacity: 1; }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--color-ocean-dark);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,38,71,0.75) 0%,
        rgba(27,73,101,0.5) 50%,
        rgba(98,182,203,0.3) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
    animation: heroFadeIn 1s ease;
}
@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
    color: var(--color-white);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content .hero-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.6;
}
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
    line-height: 0;
}
.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: var(--color-coral);
    color: var(--color-white);
}
.btn-primary:hover {
    background: var(--color-coral-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,107,107,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-ocean-dark);
    border-color: var(--color-white);
}
.btn-ocean {
    background: var(--color-ocean);
    color: var(--color-white);
}
.btn-ocean:hover {
    background: var(--color-ocean-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(10,38,71,0.3);
}

/* ── Section Styles ───────────────────────────────────────── */
.section {
    padding: var(--section-padding);
    position: relative;
}
.section-sand { background: var(--color-sand-light); }
.section-ocean {
    background: var(--color-ocean);
    color: var(--color-white);
}
.section-ocean h2,
.section-ocean h3 { color: var(--color-white); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-header h2 {
    margin-bottom: 0.75rem;
}
.section-header .section-subtitle {
    color: var(--color-gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}
.section-ocean .section-subtitle {
    color: rgba(255,255,255,0.8);
}

/* ── Room Cards ───────────────────────────────────────────── */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.room-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
    position: relative;
}
.room-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}
.room-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.room-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.room-card:hover .room-card-image img {
    transform: scale(1.05);
}
.room-card-image .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-foam), var(--color-ocean-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 3rem;
}
.room-card-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-coral);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(255,107,107,0.3);
}
.room-card-body {
    padding: 1.5rem;
}
.room-card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.room-card-body p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}
.room-card-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-gray-600);
}
.room-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.room-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.amenity-tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: var(--color-sand-light);
    color: var(--color-ocean);
    font-weight: 500;
    white-space: nowrap;
}

/* ── Features Section ─────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
}
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--color-sand), var(--color-golden));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-ocean-dark);
}
.feature-card h4 {
    margin-bottom: 0.5rem;
}
.feature-card p {
    color: var(--color-gray-600);
    font-size: 0.95rem;
}

/* ── Pricing Table ────────────────────────────────────────── */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.pricing-table thead th {
    background: var(--color-ocean);
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: left;
}
.pricing-table thead th:last-child { text-align: center; }
.pricing-table tbody td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
    vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--color-sand-light); }
.pricing-room-img {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}
.pricing-room-name {
    font-weight: 600;
    color: var(--color-ocean-dark);
}
.pricing-room-desc {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    margin-top: 0.25rem;
}
.price-col {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.price-item {
    text-align: center;
    min-width: 90px;
}
.price-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-coral);
}
.price-label {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── Gallery Grid ─────────────────────────────────────────── */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 2px solid var(--color-gray-200);
    background: var(--color-white);
    color: var(--color-gray-800);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--color-ocean);
    color: var(--color-white);
    border-color: var(--color-ocean);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-card-hover);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* ── Watermark (hidden by default, shown via JS) ─────── */
.gallery-item::after {
    display: none;
    content: var(--wm-text, '');
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.4);
    font-size: 1rem; font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    pointer-events: none; z-index: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    white-space: nowrap;
}

.gallery-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}
.gallery-item:hover .gallery-item-caption {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
}
.lightbox.active {
    display: flex;
}
.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 16px 64px rgba(0,0,0,0.5);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--color-ocean-dark), var(--color-ocean));
    color: var(--color-white);
    text-align: center;
    padding: var(--section-padding);
}
.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ── Maps Section ─────────────────────────────────────────── */
.maps-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.maps-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}
.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.location-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}
.location-card .loc-icon {
    font-size: 1.5rem;
    color: var(--color-coral);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}
.location-card h4 { margin-bottom: 0.25rem; }
.location-card p { color: var(--color-gray-600); font-size: 0.9rem; margin: 0; }

/* ── Booking Form ─────────────────────────────────────────── */
.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}
.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}
.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.booking-form .form-group.full { grid-column: 1 / -1; }
.booking-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-ocean-dark);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 0.85rem 1rem;
    border: 2px solid var(--color-gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--color-white);
    color: var(--color-gray-900);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--color-foam);
    box-shadow: 0 0 0 3px rgba(98,182,203,0.15);
}
.booking-form textarea { resize: vertical; min-height: 120px; }

.room-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}
.room-select-option img {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
}

/* ── Page Content ─────────────────────────────────────────── */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.page-content h2 { margin: 2rem 0 1rem; }
.page-content h3 { margin: 1.5rem 0 0.75rem; }
.page-content p { margin-bottom: 1.25rem; }
.page-content ul,
.page-content ol { margin: 0 0 1.25rem 1.5rem; }
.page-content li { margin-bottom: 0.5rem; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
    background: var(--color-ocean-dark);
    color: rgba(255,255,255,0.85);
    margin-top: -1px;
}
.footer-wave {
    line-height: 0;
    margin-top: -1px;
}
.footer-wave svg {
    width: 100%;
    height: 60px;
}
.footer-main {
    padding: 4rem 0 3rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-logo {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-logo i { color: var(--color-coral); }
.footer-tagline {
    color: var(--color-foam);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}
.footer-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    transition: all var(--transition-fast);
}
.footer-social-link:hover {
    background: var(--color-coral);
    border-color: var(--color-coral);
    color: var(--color-white);
}
.footer-heading {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.65rem;
    font-size: 0.9rem;
}
.footer-links a {
    color: rgba(255,255,255,0.75);
    transition: all var(--transition-fast);
}
.footer-links a:hover {
    color: var(--color-golden);
    padding-left: 4px;
}
.footer-contact li i {
    width: 20px;
    text-align: center;
    margin-right: 0.35rem;
    color: var(--color-foam);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ── Animations ───────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Utilities ────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
