/**
 * NETRAA - Custom Premium Styles
 * Spiritual Platform Modern Aesthetic Framework
 */

:root {
    /* Premium Purple Theme (HSL Coordinates for precise harmonies) */
    --primary-purple: hsl(270, 75%, 25%);
    --primary-dark: hsl(270, 85%, 12%);
    --primary-light: hsl(270, 60%, 97%);
    --primary-soft: rgba(74, 20, 140, 0.06);
    --primary-glow: rgba(74, 20, 140, 0.2);
    
    /* Spiritual Saffron & Gold Accents */
    --accent-gold: hsl(40, 100%, 50%);
    --accent-saffron: hsl(25, 100%, 52%);
    
    /* Standard Design Tokens */
    --text-dark: hsl(270, 30%, 12%);
    --text-muted: hsl(270, 10%, 45%);
    --text-light: hsl(0, 0%, 98%);
    --bg-light: hsl(270, 15%, 98%);
    --bg-white: hsl(0, 0%, 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(74, 20, 140, 0.03);
    --shadow-md: 0 8px 24px rgba(74, 20, 140, 0.06);
    --shadow-lg: 0 16px 48px rgba(74, 20, 140, 0.1);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* 1. Global Reset & Typography Pairings */
* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', 'Noto Sans Devanagari', sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Outfit', 'Noto Sans Devanagari', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Marcellus&display=swap');

/* 2. Premium Navigation Bar Styles */
/* Header Top Bar with Nav */
.karma-header-bar {
    background: linear-gradient(180deg, #000f22 0%, #001c36 100%);
    border-bottom: 2px solid #b89742;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

/* Header Nav */
.karma-header-nav {
    display: flex;
    align-items: center;
}

.header-nav-inner {
    display: flex;
    align-items: center;
    gap: 2px;
}

.hn-cat {
    position: relative;
}

.hn-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none !important;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    border-radius: 6px;
    white-space: nowrap;
}

.hn-link:hover {
    color: #ffd97d !important;
    background: rgba(212, 175, 55, 0.1);
}

.hn-arrow {
    font-size: 0.55rem !important;
    color: rgba(212, 175, 55, 0.7);
    transition: transform 0.3s ease;
}

.hn-cat:hover .hn-arrow {
    transform: rotate(180deg);
}

.hn-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgba(0, 12, 26, 0.97);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    padding: 8px 0;
    z-index: 1040;
    animation: hnSubIn 0.2s ease;
}

@keyframes hnSubIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.hn-cat:hover .hn-sub {
    display: block;
}

.hn-sub a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.hn-sub a i {
    color: #d4af37;
    font-size: 0.85rem;
    width: 18px;
    text-align: center;
}

.hn-sub a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #ffd97d !important;
    border-left-color: #d4af37;
    padding-left: 22px;
}

.hn-sub a:hover i {
    color: #ffd97d;
}

@media (max-width: 991.98px) {
    .karma-header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 12, 26, 0.98);
        border-bottom: 2px solid rgba(212, 175, 55, 0.3);
        max-height: 80vh;
        overflow-y: auto;
        z-index: 1050;
    }
    .karma-header-nav.open {
        display: block;
    }
    .header-nav-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 8px 0;
    }
    .hn-cat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .hn-link {
        padding: 10px 16px;
        border-radius: 0;
        justify-content: space-between;
    }
    .hn-sub {
        position: static;
        display: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
        animation: none;
    }
    .hn-cat.open .hn-sub {
        display: block;
    }
    .hn-sub a {
        padding-left: 30px;
    }
}

/* Brand container on the left */
.karma-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.karma-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.karma-brand-link:hover .karma-logo-img {
    transform: rotate(5deg) scale(1.05);
}

.karma-brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-title {
    font-family: 'Cinzel', 'Marcellus', serif;
    font-size: 1.95rem;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 1.5px;
    margin: 0;
    background: linear-gradient(to bottom, #fff4d4 0%, #d4af37 40%, #a27c12 75%, #ffe6a3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.7));
    text-transform: uppercase;
}

.brand-subtitle {
    font-family: 'Inter', 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #00cbf2;
    text-shadow: 0px 1.5px 2px rgba(0, 0, 0, 0.8);
    margin: 2px 0 0 0;
    line-height: 1;
    text-transform: uppercase;
}

.brand-tagline-wrapper {
    border-top: 1.2px solid rgba(212, 175, 55, 0.85);
    border-bottom: none;
    padding: 3px 0 0 0;
    margin-top: 3px;
    text-align: center;
    width: 100%;
}

.brand-tagline {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffd54f;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}







/* Right-side Action Buttons */
.karma-right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.karma-circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid #d4af37;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
    padding: 0;
    position: relative;
}

.karma-circle-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #b89742 100%) !important;
    color: #000f22 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: scale(1.08);
}

.karma-circle-btn i {
    color: inherit;
}

/* Global/Lang Picker Dropdown Menu styling */
.lang-dropdown-menu {
    background: rgba(0, 12, 26, 0.96) !important;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 10px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7) !important;
    min-width: 160px !important;
    padding: 6px 0 !important;
    margin-top: 12px !important;
}

.lang-dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.lang-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #ffd97d !important;
}

.lang-dropdown-item.active {
    background: linear-gradient(135deg, #d4af37 0%, #b89742 100%) !important;
    color: #000f22 !important;
    font-weight: 600;
}

/* Profile Dropdown Menu styling */
.profile-dropdown-menu {
    background: rgba(0, 12, 26, 0.96) !important;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.75) !important;
    min-width: 230px !important;
    padding: 8px 0 !important;
    margin-top: 12px !important;
}

.profile-dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.profile-dropdown-item:hover {
    background: rgba(212, 175, 55, 0.15) !important;
    color: #ffd97d !important;
}

.profile-dropdown-item.text-danger:hover {
    background: rgba(220, 53, 69, 0.15) !important;
    color: #ff8080 !important;
}

.profile-dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 6px 0;
}

/* Slide Down Search Panel styling */
.search-slide-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 15, 34, 0.98);
    border-bottom: 2.5px solid #d4af37;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
    padding: 16px 0;
    display: none;
    z-index: 1020;
    animation: searchSlideIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes searchSlideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.search-slide-inner {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 30px;
    padding: 6px 18px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.search-slide-inner input {
    border: none;
    background: transparent;
    outline: none;
    color: #ffffff;
    flex-grow: 1;
    font-size: 0.95rem;
    padding: 6px 12px;
}

.search-slide-inner input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-slide-inner button {
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px 12px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-slide-inner button:hover {
    color: #ffffff;
    transform: scale(1.1);
}

/* Custom toggler animation matching brand style */
.animate-toggler {
    border-color: rgba(212, 175, 55, 0.5) !important;
    padding: 6px 10px;
    transition: all 0.3s ease;
}

.animate-toggler:focus {
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25) !important;
}

.animate-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212, 175, 55, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Active status indicator badge */
.karma-badge-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff3333;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000f22;
}

/* Responsive Scaling rules */
/* Responsive Scaling rules */
@media (max-width: 991.98px) {
    .karma-logo-img {
        height: 44px;
    }
    
    .brand-title {
        font-size: 1.45rem;
        letter-spacing: 1px;
    }
    
    .brand-subtitle {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }
    
    .brand-tagline {
        font-size: 0.58rem;
    }
    
    .brand-tagline-wrapper {
        padding: 0 2px;
        margin-top: 0;
        border-width: 1px;
    }


    
    .karma-circle-btn {
        width: 34px;
        height: 34px;
        font-size: 0.82rem;
        border-width: 1px;
    }

    .karma-right-actions {
        gap: 6px;
    }
}

@media (max-width: 575.98px) {
    .karma-logo-img {
        height: 38px;
    }
    
    .brand-title {
        font-size: 1.2rem;
        letter-spacing: 0.8px;
    }
    
    .brand-subtitle {
        font-size: 0.55rem;
        letter-spacing: 0.8px;
    }
    
    .brand-tagline {
        display: none;
    }
    
    .brand-tagline-wrapper {
        display: none;
    }
    
    .karma-circle-btn {
        width: 32px;
        height: 32px;
        font-size: 0.78rem;
    }
    
    .karma-right-actions {
        gap: 4px;
    }
}


/* 3. Action Buttons */
.btn {
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(74, 20, 140, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 20, 140, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
}

.btn-warning {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-saffron) 100%);
    border: none;
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.35);
    background: linear-gradient(135deg, var(--accent-saffron) 0%, var(--accent-gold) 100%);
    color: var(--primary-dark);
}

.btn-outline-purple {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    background: transparent;
}

.btn-outline-purple:hover {
    background: var(--primary-purple);
    color: white;
}

/* 4. Elegant Glassmorphism Cards & Elevations */
.card {
    border: none;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 8px 32px rgba(74, 20, 140, 0.04);
}

/* Lift expansions */
.hover-lift {
    transition: var(--transition-smooth);
}

.hover-lift:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: var(--shadow-lg);
}

/* 5. Custom Service Grid Layout */
.service-card {
    border-top: 4px solid var(--accent-gold);
    background: var(--bg-white);
}

.service-card .card-icon {
    font-size: 2.5rem;
    background: var(--primary-soft);
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-purple);
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
    background: var(--primary-purple);
    color: white;
    transform: rotateY(180deg);
}

/* 6. Styled Typography Section titles */
.section-title {
    position: relative;
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-saffron) 100%);
    border-radius: 2px;
}

/* 7. Forms Refinements */
.form-control, .form-select {
    border: 2px solid hsl(270, 10%, 90%);
    border-radius: 10px;
    padding: 12px 18px;
    transition: var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-control:focus, .form-select:focus {
    background-color: var(--bg-white);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* 8. Table Styling Overhaul */
table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

table th {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 16px 20px !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

table td {
    padding: 4px 5px !important;
    font-size: 0.92rem;
}

/* 9. Premium Global Footer Styles */
.premium-footer {
    background: linear-gradient(180deg, #000c1a 0%, #001224 100%) !important;
    border-top: 3.5px solid #b89742 !important;
    margin-top: 0 !important;
}

.premium-footer h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 0.8px;
}

.footer-links-list li a {
    position: relative;
}

.footer-links-list li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.footer-links-list li a:hover {
    color: var(--accent-gold) !important;
}

.footer-links-list li a:hover::after {
    width: 100%;
}

/* 10. Keyframes / Global Animations */
@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 6px var(--accent-gold)); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(74, 20, 140, 0.1); }
    50% { box-shadow: 0 0 20px rgba(74, 20, 140, 0.3); }
}

/* Animation triggers */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-fade-in-up-delay {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

.animate-fade-in-up-delay-2 {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* General Layouts */
.bg-light-purple {
    background-color: var(--primary-light) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-purple {
    color: var(--primary-purple) !important;
}

/* Responsive Branding Text Scaling */
@media (max-width: 991.98px) {
    .navbar-brand {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.25rem !important;
        letter-spacing: 0.5px !important;
    }
}

/* ===================== PREMIUM 5-COLUMN FOOTER ===================== */
.premium-footer {
    background: linear-gradient(180deg, #000c1a 0%, #001224 100%) !important;
    border-top: 3.5px solid #b89742 !important;
    padding: 70px 0 30px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr 1fr 1.6fr;
    gap: 32px;
    margin-bottom: 50px;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-brand-col {
    padding-right: 15px;
}
.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    margin-bottom: 18px;
}
.footer-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}
.footer-brand-info {
    display: flex;
    flex-direction: column;
}
.footer-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(to bottom, #fff4d4 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.footer-brand-tag {
    font-size: 0.62rem;
    color: #00cbf2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}
.footer-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    text-decoration: none !important;
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: var(--accent-gold);
    color: #000c1a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}
.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu li {
    margin-bottom: 10px;
}
.footer-menu li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none !important;
    font-size: 0.86rem;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-menu li a:hover {
    color: var(--accent-gold) !important;
    transform: translateX(4px);
}
.footer-highlight {
    color: var(--accent-saffron) !important;
    font-weight: 600;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.65);
}
.footer-contact-list li i {
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-top: 4px;
}
.footer-newsletter {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}
.footer-news-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    font-size: 0.82rem;
    color: #fff;
    outline: none;
}
.footer-news-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.footer-news-btn {
    background: var(--accent-gold);
    border: none;
    color: #000c1a;
    padding: 0 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.footer-news-btn:hover {
    background: #ffe066;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer-bottom p {
    margin: 0;
}

@media (max-width: 1199.98px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
    .footer-brand-col {
        grid-column: span 4;
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
}
@media (max-width: 575.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand-col {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
