/* =========================================
   1. IMPORTS & FONTS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Marcellus&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* =========================================
   2. CSS VARIABLES (:root)
   ========================================= */
:root {
    /* --- Colors --- */
    /* Primary Brand Colors */
    --color-primary: #3C2328;   
    --color-primary-light: #56343a;
    --color-secondary: #AE583D;
    --color-secondary-light: #b56851;
    --color-accent: #D7914F;    
    
    /* Backgrounds */
    --color-bg-body: #ececec;
    --color-bg-light: #f5f7fa;
    --color-white: #ffffff;
    
    /* Text */
    --color-text-dark: #1a1a1a;
    --color-text-body: #555555;
    --color-text-muted: #888888;
    --color-text-light: #ffffff;

    /* Borders */
    --color-border: #cdcdcd;
    --color-border-light: rgba(0,0,0,0.05);

    /* --- Typography --- */
    --font-primary: 'Outfit', sans-serif;
    --font-heading: 'Marcellus', serif;
    /* --font-secondary: 'Playfair Display', serif;
    --font-secondary-light: 'Bodoni Moda', serif;
    --font-secondary-lighter: 'Cormorant Garamond', serif; */

    /* --- Spacing & Radius --- */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-round: 50%;

    /* --- Effects (Glassmorphism & Shadows) --- */
    --glass-white: rgba(255, 255, 255, 0.95);
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 10px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.05);
    --shadow-float: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================================
   3. RESET & BASE STYLES
   ========================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--color-bg-body);
    font-family: var(--font-primary);
    color: var(--color-text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

button {
    font-family: var(--font-primary);
    cursor: pointer;
}

/* main{
    max-width: 1360px;
    margin: 0 auto;
} */

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   4. TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-body);
}

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }
.font-heading { font-family: var(--font-heading); }

/* =========================================
   5. BUTTONS
   ========================================= */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3C2328;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-round);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn:active {
    transform: translateY(0);
}

/* Primary Dark Button */
.btn-dark, .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(10,35,66,0.3);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.btn-dark:hover, .btn-primary:hover {
    background: var(--color-primary-light);
    box-shadow: 0 6px 16px rgba(10,35,66,0.4);
}

/* Secondary Button */
.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(174, 88, 61, 0.3);
}

.btn-secondary:hover {
    background: var(--color-secondary-light);
    box-shadow: 0 6px 16px rgba(174, 88, 61, 0.4);
}

/* Outline Button */
.btn-outline {
    background: var(--color-white);
    border-color: #e0e0e0;
    color: var(--color-text-dark);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: #fafafa;
    color: var(--color-primary);
}

/* Ghost / Back Button */
.btn-ghost, .btn-back {
    background: transparent;
    color: var(--color-text-muted);
    padding-left: 0;
    box-shadow: none;
}

.btn-ghost:hover, .btn-back:hover {
    color: var(--color-text-dark);
    transform: none;
    box-shadow: none;
}

/* Full Width Helper */
.btn-block {
    width: 100%;
}

/* =========================================
   6. FORMS
   ========================================= */
.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-primary);
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    background: #f9f9f9;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: all 0.2s;
}

input:focus, select:focus, textarea:focus {
    background: var(--color-white);
    border-color: var(--color-accent);
    outline: none;
    /* box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1); */
}

/* Radio Cards (for Selection) */
.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.radio-option input:checked + .radio-tile {
    background-color: rgba(10, 35, 66, 0.03);
    border-color: var(--color-primary);
    color: var(--color-primary);
    font-weight: 600;
}

/* Checkbox Cards */
.checkbox-card {
    display: inline-flex;
    align-items: center;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.checkbox-card input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-card:hover {
    border-color: var(--color-primary);
}

/* =========================================
   7. UTILITIES & LAYOUT
   ========================================= */
/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.main-container{
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Flexbox Helpers */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: var(--spacing-sm); }
.gap-md { gap: var(--spacing-md); }

/* Grid Helpers */
.grid { display: grid; gap: var(--spacing-md); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* Spacing Helpers */
.mt-1 { margin-top: var(--spacing-sm) !important; }
.mt-2 { margin-top: var(--spacing-md) !important; }
.mt-3 { margin-top: var(--spacing-lg) !important; }
.mt-4 { margin-top: var(--spacing-xl) !important; }
.mt-5 { margin-top: var(--spacing-xxl) !important; }

.mb-1 { margin-bottom: var(--spacing-sm) !important; }
.mb-2 { margin-bottom: var(--spacing-md) !important; }
.mb-3 { margin-bottom: var(--spacing-lg) !important; }
.mb-4 { margin-bottom: var(--spacing-xl) !important; }
.mb-5 { margin-bottom: var(--spacing-xxl) !important; }


/* Glassmorphism Card */
.glass-panel {
    background: var(--glass-white);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    box-shadow: var(--shadow-float);
    border-radius: var(--radius-xl);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-luxury {
    background: var(--color-primary);
    color: var(--color-accent);
}
.badge-success {
    background: #e6f9ed;
    color: #28a745;
}
/* =========================================
   8. COMPONENTS: HEADER & NAV
   ========================================= */
.floating-header {
    background: var(--color-white);
    border-radius: 50px;
    padding: 0.68rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 100;
}

.logo {
    width: 68px;
    height: auto;
}

.nav-list {
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-list a:hover { color: var(--color-secondary); }
.nav-list a:hover::after { transform: scaleX(1); }
.nav-list a.active { color: var(--color-secondary); }
.nav-list a.active::after { transform: scaleX(1); }

.btn-pill {
    border-radius: 50px;
    padding: 0.65rem 1.75rem;
    font-size: 1rem;
    background: #3C2328;
    color: white;
}

.btn-pill:hover { background: #56343a; }

/* Mobile Menu Elements (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    transform: translateX(-300px);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border-light);
}

.mobile-nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.close-menu-btn:hover {
    color: var(--color-primary);
    transform: rotate(90deg);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-list a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    font-weight: 600;
    display: block;
    transition: color 0.2s;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--color-secondary);
    padding-left: 10px;
}

.mobile-nav-footer {
    /* margin-top: auto; */
}

/* =========================================
   9. ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* =========================================
   10. SUCCESS POPUP MODAL
   ========================================= */
.success-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 2000;
    text-align: center;
    min-width: 320px;
    opacity: 0;
    animation: popupFadeIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    overflow: hidden; /* For progress bar */
}

@keyframes popupFadeIn {
    from { opacity: 0; transform: translate(-50%, -40%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes popupFadeOut {
    to { opacity: 0; transform: translate(-50%, -40%) scale(0.9); }
}

.popup-checkmark-circle {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.popup-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.popup-desc {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.popup-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
}

.popup-close-btn:hover {
    color: #333;
}

.popup-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: #4CAF50;
    width: 100%;
    animation: progressShrink 3s linear forwards;
}

@keyframes progressShrink {
    from { width: 100%; }
    to { width: 0%; }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.35rem; }
    
    /* Containers */
    .container {
        width: 95%;
        padding: 0 1.5rem;
    }
    
    .app-container {
        padding: 0 1.5rem;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.95rem;
        padding: 0.7rem 1.4rem;
    }
    
    /* Grid */
    .grid-2 {
        gap: 1.5rem;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    /* Header - Horizontal Layout */
    .floating-header {
        padding: 0.5rem 1rem;
        margin-top: 0.75rem;
        margin-bottom: 0.75rem;
        flex-direction: row; /* Keep logo and menu on same line */
        align-items: center;
    }
    
    .logo {
        width: 60px;
        flex-shrink: 0;
    }
    
    .header-actions {
        display: flex;
        align-items: center;
        margin-left: auto;
    }
    
    /* Mobile Menu Button - Larger Touch Target */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        transition: all 0.2s;
    }
    
    .mobile-menu-btn:active {
        transform: scale(0.95);
        background: rgba(0,0,0,0.05);
        border-radius: 8px;
    }
    
    .nav-list, 
    .desktop-only {
        display: none;
    }
    
    /* Mobile Navigation Drawer - Fixed Positioning */
    .mobile-nav {
        right: -100%; /* Start off-screen */
        left: auto;
        width: 280px;
        max-width: 85vw;
        padding: 1.5rem;
    }
    
    .mobile-nav.open {
        transform: translateX(0);
        right: 0;
    }
    
    /* Mobile Nav Header */
    .mobile-nav-header {
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .mobile-nav-title {
        font-size: 1.3rem;
        letter-spacing: 0.5px;
    }
    
    .close-menu-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
    }
    
    .close-menu-btn:hover {
        background: rgba(0,0,0,0.05);
        border-radius: 8px;
    }
    
    /* Mobile Nav Links - Larger Touch Targets */
    .mobile-nav-list {
        gap: 0.5rem;
    }
    
    .mobile-nav-list li {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-nav-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav-list a {
        font-size: 1.1rem;
        padding: 1rem 0.75rem;
        border-radius: 8px;
        transition: all 0.2s;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .mobile-nav-list a::before {
        content: '';
        width: 4px;
        height: 4px;
        background: var(--color-secondary);
        border-radius: 50%;
        opacity: 0;
        transition: opacity 0.2s;
    }
    
    .mobile-nav-list a:hover::before,
    .mobile-nav-list a.active::before {
        opacity: 1;
    }
    
    .mobile-nav-list a:hover,
    .mobile-nav-list a.active {
        background: rgba(174, 88, 61, 0.08);
        padding-left: 1rem;
    }
    
    /* Mobile Nav Footer */
    .mobile-nav-footer {
        /* margin-top: auto; */
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.08);
    }
    
    .mobile-nav-footer .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 0;
    }

    /* Base Font Size */
    html {
        font-size: 15px;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    /* Containers */
    .container {
        width: 100%;
        padding: 0 1rem;
    }
    
    .main-container {
        padding: 0 1rem;
    }
    
    .app-container {
        padding: 0 1rem;
    }
    
    /* Buttons */
    .btn {
        width: 100%;
        font-size: 0.95rem;
        padding: 0.85rem 1.25rem;
    }
    
    .btn-ghost,
    .btn-back {
        width: auto;
    }
    
    /* Forms */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    select,
    textarea {
        padding: 0.85rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    label {
        font-size: 0.85rem;
    }
    
    /* Radio & Checkbox */
    .radio-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .radio-tile {
        padding: 0.85rem;
    }
    
    .checkbox-card {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Grid */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Spacing Utilities - Reduce for mobile */
    .mt-3 { margin-top: 1.5rem !important; }
    .mb-3 { margin-bottom: 1.5rem !important; }
    .mt-2 { margin-top: 0.75rem !important; }
    .mb-2 { margin-bottom: 0.75rem !important; }
    
    /* Glassmorphism */
    .glass-panel {
        border-radius: 16px;
    }
    
    /* Badges */
    .badge {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

/* Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.main-footer {
    background: #3C2328;
    color: white;
    padding: 5rem 2rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
    flex-wrap: wrap; /* Responsive wrapping */
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 2; /* Wider column for brand info */
    max-width: 450px;
}

.footer-logo-box {
    width: 100px;
    margin-bottom: 1.5rem;
}

.footer-logo-box .logo-icon {
    font-size: 1.5rem;
    color: #3C2328; /* Use brand color for logo inside white box */
}

.footer-logo-box .logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1;
    color: #3C2328;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-logo-box .logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: #666;
}

.footer-desc {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li{
    margin-bottom: 0.8rem;
}


.footer-links a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.2s;
    text-underline-offset: 4px;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration-color: rgba(255,255,255,0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #ffffff;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .brand-col {
        max-width: 100%;
    }
    .footer-logo-box {
    width: 80px;
    margin-bottom: 1.25rem;
}
}

/* =========================================
   LAYOUT CONTAINER
   ========================================= */
.app-container {
    max-width: 1440px; /* Limit max width for large screens */
    margin: 0 auto;
    position: relative;
    padding: 0 1rem;
}
