/* ==========================================================================
   By Soni Hair & Beauty - Pure Custom Premium Stylesheet
   Theme: Luxurious Dual Contrast (Obsidian Dark & Champagne Cream)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Root variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Color Palette */
    --color-dark-bg: #121212;
    --color-dark-card: #1c1c1c;
    --color-dark-text: #e0e0e0;
    --color-dark-muted: #a0a0a0;

    --color-light-bg: #FAF6F0;
    --color-light-card: #ffffff;
    --color-light-text: #1a1a1a;
    --color-light-muted: #5a5a5a;

    --color-accent-gold: #C5A059;
    --color-accent-gold-hover: #b08d4a;
    --color-accent-gold-glow: rgba(197, 160, 89, 0.4);
    
    --color-status-green: #2ecc71;
    --color-status-green-glow: rgba(46, 204, 113, 0.4);
    --color-status-amber: #f39c12;
    --color-status-amber-glow: rgba(243, 156, 18, 0.4);
    
    --color-border-light: rgba(197, 160, 89, 0.15);
    --color-border-dark: rgba(197, 160, 89, 0.3);

    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Layout */
    --header-height: 80px;
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

p {
    font-size: 1.125rem; /* ~18px for excellent readability */
    font-weight: 300;
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-accent-gold-hover);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Common Layouts */
section {
    padding: 6rem 0;
    position: relative;
}

/* --------------------------------------------------------------------------
   3. Navigation & Header (Obsidian Glassmorphism)
   -------------------------------------------------------------------------- */
.main-header {
    height: var(--header-height);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border-dark);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 50%;
    border: 1px solid var(--color-accent-gold);
    box-shadow: 0 0 10px var(--color-accent-gold-glow);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.logo-text small {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Desktop Nav Links */
.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #eaeaea;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-item:hover {
    color: var(--color-accent-gold);
}

.nav-item:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mini Indicator */
.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-indicator--open {
    background-color: var(--color-status-green);
    box-shadow: 0 0 8px var(--color-status-green-glow);
}

.status-indicator--closed {
    background-color: var(--color-status-amber);
    box-shadow: 0 0 8px var(--color-status-amber-glow);
}

.status-text-mini {
    font-size: 0.8rem;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Lang Switcher */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
}

.lang-btn {
    color: #aaa;
    padding: 0.2rem 0.4rem;
}

.lang-btn.active {
    color: var(--color-accent-gold);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lang-separator {
    color: #444;
}

/* --------------------------------------------------------------------------
   4. Buttons (glowing styling)
   -------------------------------------------------------------------------- */
.btn-primary-glowing {
    background: linear-gradient(135deg, var(--color-accent-gold), #b08d4a);
    color: #121212 !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-glowing:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(197, 160, 89, 0.45);
    background: linear-gradient(135deg, #d8b76b, var(--color-accent-gold));
}

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

.btn-outline {
    border: 2px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.7rem 1.75rem;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--color-accent-gold);
    color: #121212;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Hero Section (Deep Obsidian Dark)
   -------------------------------------------------------------------------- */
.hero-section {
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(197, 160, 89, 0.08) 0%, transparent 60%),
                linear-gradient(135deg, #121212 0%, #1c1c1c 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 2rem);
    border-bottom: 2px solid var(--color-border-dark);
}

.hero-content {
    max-width: 750px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    color: var(--color-accent-gold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--color-accent-gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   6. About Us (Warm Cream - Light/Dark Mix)
   -------------------------------------------------------------------------- */
.about-section {
    background-color: var(--color-light-bg);
    color: var(--color-light-text);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-btn-container {
    display: flex;
    justify-content: flex-start;
}

.section-tag {
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    color: var(--color-light-text);
    margin-top: -0.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent-gold);
    bottom: 0;
    left: 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1c1c1c, #121212);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-border-light);
}

.about-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-real-image {
    transform: scale(1.05);
}

.about-placeholder-icon {
    font-size: 6rem;
    color: var(--color-accent-gold);
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   7. Opening Hours Badge & Dynamic Classes
   -------------------------------------------------------------------------- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.status-badge--open {
    background-color: rgba(46, 204, 113, 0.08);
    border-color: rgba(46, 204, 113, 0.25);
    color: #27ae60;
}

.status-badge--closed {
    background-color: rgba(243, 156, 18, 0.08);
    border-color: rgba(243, 156, 18, 0.25);
    color: #d35400;
}

.status-badge__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-badge__dot--pulse-green {
    background-color: var(--color-status-green);
    box-shadow: 0 0 10px var(--color-status-green);
    animation: pulse-green-anim 2s infinite;
}

.status-badge__dot--pulse-amber {
    background-color: var(--color-status-amber);
    box-shadow: 0 0 10px var(--color-status-amber);
    animation: pulse-amber-anim 2s infinite;
}

.status-badge__label strong {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   8. Services (Mixed Cards & Interactivity)
   -------------------------------------------------------------------------- */
.services-section {
    background-color: #ffffff;
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.services-intro {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.services-intro .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Category Tabs */
.tabs-container {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    background-color: var(--color-light-bg);
    border: 1px solid var(--color-border-light);
    color: var(--color-light-muted);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background-color: var(--color-dark-bg);
    color: #fff;
    border-color: var(--color-dark-bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.tab-btn.active {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

/* Service Grids */
.services-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.5s ease;
}

.services-grid.active {
    display: grid;
}

/* Service Card (Modern elegance) */
.service-card {
    background-color: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px rgba(197, 160, 89, 0.1);
    border-color: var(--color-accent-gold);
}

.service-card-upper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-duration {
    font-size: 0.9rem;
    color: var(--color-light-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.service-price {
    font-size: 1.25rem;
    color: var(--color-accent-gold-hover);
    font-weight: 700;
    font-family: var(--font-body);
}

.service-title {
    font-size: 1.5rem;
    color: var(--color-light-text);
}

.service-desc {
    font-size: 1rem;
    color: var(--color-light-muted);
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0;
}

.service-card-lower {
    margin-top: auto;
}

.btn-card-booking {
    width: 100%;
    text-align: center;
    padding: 0.65rem;
    background-color: var(--color-light-bg);
    color: var(--color-light-text);
    border: 1px solid var(--color-border-light);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.service-card:hover .btn-card-booking {
    background-color: var(--color-accent-gold);
    color: #121212;
    border-color: var(--color-accent-gold);
}

/* Secondary Location Alert Card (Ørestads Boulevard) */
.location-alert-box {
    grid-column: 1 / -1;
    background-color: rgba(197, 160, 89, 0.05);
    border: 1px dashed var(--color-accent-gold);
    border-radius: var(--border-radius);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-top: 1rem;
}

.location-alert-icon {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
}

.location-alert-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.location-alert-text p {
    font-size: 1rem;
    margin-bottom: 0;
    color: var(--color-light-muted);
}

/* --------------------------------------------------------------------------
   9. Hours & Contact split section (High Drama Split)
   -------------------------------------------------------------------------- */
.contact-split-section {
    padding: 0;
    display: flex;
    min-height: 700vh; /* Scaled via flex */
    min-height: 700px;
    border-bottom: 1px solid var(--color-border-light);
}

.split-left-hours {
    flex: 1;
    background-color: var(--color-dark-bg);
    color: #fff;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--color-border-dark);
}

.split-left-hours .section-title {
    color: #ffffff;
}

.split-right-form {
    flex: 1;
    background-color: var(--color-light-bg);
    color: var(--color-light-text);
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.1rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.day-label {
    font-weight: 500;
}

.time-label {
    color: var(--color-accent-gold);
    font-weight: 600;
}

.time-label.closed-day {
    color: var(--color-dark-muted);
    font-style: italic;
    font-weight: 400;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-light-text);
}

.form-input {
    font-family: var(--font-body);
    font-size: 1.05rem;
    padding: 0.9rem 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
    background-color: #fff;
    color: var(--color-light-text);
    transition: var(--transition-smooth);
    width: 100%;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 10px var(--color-accent-gold-glow);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Feedback Messages */
.form-alert {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: none;
}

.form-alert--success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-alert--error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #c0392b;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* --------------------------------------------------------------------------
   10. Mobile Navigation & Overlay Modules
   -------------------------------------------------------------------------- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--color-dark-bg);
    color: #fff;
    z-index: 1050;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.close-sidebar-btn {
    font-size: 2rem;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-item {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ddd;
    padding: 0.5rem 0;
}

.mobile-nav-item:hover {
    color: var(--color-accent-gold);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1040;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.btn-block-mobile {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.mobile-status-container {
    margin: 1rem 0;
}

/* --------------------------------------------------------------------------
   11. Footer Components
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: var(--color-dark-bg);
    color: #fff;
    border-top: 1px solid var(--color-border-dark);
}

.footer-upper {
    padding: 5rem 0 3rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-gold);
    margin-top: -0.85rem;
    font-weight: 600;
}

.footer-brand-desc {
    color: var(--color-dark-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1rem;
}

.social-icon-link:hover {
    background-color: var(--color-accent-gold);
    color: #121212;
    border-color: var(--color-accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-gold);
    bottom: 0;
    left: 0;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-list a {
    color: var(--color-dark-muted);
    font-size: 1.05rem;
}

.footer-links-list a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

.footer-contact {
    display: block;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--color-dark-muted);
    margin-bottom: 1.5rem;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item i {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.footer-contact-item a {
    color: var(--color-dark-muted);
}

.footer-contact-item a:hover {
    color: var(--color-accent-gold);
}

/* Lower Footer */
.footer-lower {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    font-size: 0.95rem;
    color: var(--color-dark-muted);
}

.footer-lower-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-credits-required {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
    text-align: right;
}

.footer-credits-required a {
    text-decoration: underline;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   12. Animations & Transitions
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-green-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

@keyframes pulse-amber-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.6);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(243, 156, 18, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0);
    }
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */

/* Large Tablets & Desktop down (max-width: 1024px) */
@mixin tablet-layout {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-split-section {
        flex-direction: column;
    }
    
    .split-left-hours, .split-right-form {
        padding: 5rem 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-credits-required {
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-split-section {
        flex-direction: column;
    }
    
    .split-left-hours, .split-right-form {
        padding: 5rem 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-credits-required {
        text-align: left;
    }
    
    .footer-lower-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Small Tablets / Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .desktop-nav, .visible-desktop {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-desc {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-btn-container {
        justify-content: center;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions a {
        width: 100%;
        justify-content: center;
    }
    
    .status-badge {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        width: 100%;
    }
}
