/* ==========================================================================
   1. GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
    --lux-dark: #121418;
    --lux-gold: #ff6a00;
    /* Updated to the requested bright orange */
    --lux-gold-hover: #ff8533;
    /* Adjusted to a complementary lighter orange for hover states */
    --lux-light: #FAFAFA;
    --lux-text: #4A4A4A;
    --lux-border: #EAEAEA;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--lux-light);
    color: var(--lux-text);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
}

main {
    flex: 1;
}

a {
    color: var(--lux-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.muted {
    color: #888;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   3. GLOBAL HEADER (NAVBAR)
   ========================================================================== */
header[role="banner"] {
    background: #fff;
    border-bottom: 1px solid var(--lux-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
}

/* --- DESKTOP HEADER --- */
#for-desktop {
    display: flex;
    /* Active by default on desktop */
}

#for-mobile {
    display: none;
    /* Hidden by default on desktop */
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand img {
    max-height: 55px;
}

.brand .tag {
    font-family: var(--font-serif);
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

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

.header-actions .social-links {
    display: flex;
    gap: 12px;
}

.header-actions .social-links a {
    color: var(--lux-dark);
    font-size: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lux-light);
}

.header-actions .social-links a:hover {
    background: var(--lux-gold);
    color: #fff;
    transform: translateY(-2px);
}

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

.header-actions .phone a {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--lux-dark);
}

.header-actions .phone a:hover {
    color: var(--lux-gold);
}

.header-actions .cta-btn {
    background: var(--lux-dark);
    color: #fff;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
}

.header-actions .cta-btn:hover {
    background: var(--lux-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(197, 160, 89, 0.2);
}



/* ==========================================================================
   FOOTER BASE STYLES (Desktop)
   ========================================================================== */
.site-footer {
    background-color: #121418;
    /* var(--lux-dark) */
    color: #ffffff;
    padding: 80px 0 20px;
    font-family: 'Poppins', sans-serif;
    /* var(--font-sans) */
    margin-top: auto;
}

.site-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    /* 4 Columns: Brand takes 2 fractions, the 3 link lists take 1 fraction each */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* --- Brand Column --- */
.footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
    display: block;
}

.footer-text {
    color: #A0A0A0;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-icons {
    display: flex;
    gap: 12px;
}

.footer-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-icons a:hover {
    background-color: #ff6a00;
    /* var(--lux-gold) */
    transform: translateY(-3px);
}

/* --- Link Columns --- */
.footer-col strong {
    font-family: 'Playfair Display', serif;
    /* var(--font-serif) */
    font-size: 20px;
    color: #ff6a00;
    /* var(--lux-gold) */
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #A0A0A0;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff6a00;
    /* var(--lux-gold) */
    transform: translateX(5px);
    /* Slight nudge to the right on hover */
}

/* --- Bottom Bar --- */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #777777;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ==========================================================================
   5. ALERTS & NOTIFICATIONS
   ========================================================================== */
.alert {
    padding: 16px 20px;
    border-radius: 4px;
    margin: 20px auto;
    max-width: 1200px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background: rgba(197, 160, 89, 0.1);
    color: var(--lux-gold);
    border: 1px solid var(--lux-gold);
}

.alert-danger {
    background: #FDF2F2;
    color: #D9534F;
    border: 1px solid #F5C2C7;
}