/* ═══════════════════════════════════════════════════════════════════════════════
   COMPONENTS.CSS — Shared UI Components
   Header, Footer, Buttons, Cards, Forms, Marquee, Labels, Icons
   Mobile-first with 5-stage responsive scaling
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ─── HEADER / NAVIGATION ───────────────────────────────────────────────────── */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-base);
}

#main-header.scrolled {
    background: rgba(3, 3, 4, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
}

.glass-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-wrapper {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.nav-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem !important;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; /* Slightly higher for better alignment */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    border-radius: 2px;
    box-shadow: 0 0 10px transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1 !important;
    color: var(--text-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.header-divider {
    width: 1px;
    height: 24px;
    background: var(--glass-border);
}

/* ─── CUSTOM FLOWING HAMBURGER ICON ─────────────────────────────────────────── */
.menu-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1050;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.15);
}

.hamburger-box {
    width: 22px;
    height: 14px;
    position: relative;
}

.hamburger-line {
    position: absolute;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Elastic fluid physics */
}

/* Asymmetrical Resting State Flow */
.hamburger-line.top { top: 0; width: 60%; right: 0; }
.hamburger-line.middle { top: 50%; transform: translateY(-50%); width: 100%; right: 0; }
.hamburger-line.bottom { bottom: 0; width: 75%; left: 0; right: auto; }

/* Interactive Hover Flow */
.menu-toggle:hover .hamburger-line {
    width: 100%;
    background-color: var(--primary-gold);
}

/* Active Morph (The flowing 'X') */
.menu-toggle.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.menu-toggle.active .hamburger-line.top {
    width: 100%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--primary-gold);
}

.menu-toggle.active .hamburger-line.middle {
    width: 0%;
    opacity: 0;
    right: 50%;
}

.menu-toggle.active .hamburger-line.bottom {
    width: 100%;
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: var(--primary-gold);
}


/* ─── FULLSCREEN MOBILE OVERLAY ─────────────────────────────────────────────── */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(3, 3, 4, 0.85); /* Deep dark theme overlay */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1040;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.mobile-nav-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.mobile-nav-item {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--anim-order) * 0.1s);
    width: 100%;
    display: flex;
    justify-content: center;
}

.mobile-menu-overlay.open .mobile-nav-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mobile-nav-link {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 14px 40px;
    width: 100%;
    max-width: 280px;
    backdrop-filter: blur(10px);
}

.mobile-nav-link:hover, .mobile-nav-link:focus {
    color: var(--primary-gold) !important;
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.mobile-nav-link.active {
    color: var(--primary-gold) !important;
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.1);
}

.mobile-menu-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--anim-order) * 0.1s);
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu-overlay.open .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}



/* ─── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn-magnetic {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-magnetic.primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-magnetic.primary:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-magnetic.primary.glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.btn-magnetic.primary.glow:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-magnetic.ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
}

.btn-magnetic.ghost:hover {
    color: var(--text-primary);
    border-color: var(--glass-border-hover);
    background: rgba(255, 255, 255, 0.03);
}

.btn-magnetic.purple {
    background: var(--primary-purple);
    color: var(--text-primary);
}

.btn-magnetic.purple:hover {
    background: #7B2FD4;
    box-shadow: 0 8px 25px var(--purple-glow);
    transform: translateY(-2px);
}

.btn-magnetic.large {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

.btn-text { position: relative; z-index: 1; }
.btn-icon { position: relative; z-index: 1; transition: transform var(--transition-fast); }
.btn-magnetic:hover .btn-icon { transform: translateX(3px); }

/* Ripple Effect */
.btn-ripple::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.btn-ripple:active::after {
    opacity: 1;
    transition: opacity 0s;
}

/* Legacy button styles */
.btn-white {
    background: #fff;
    color: #000;
    font-weight: 600;
    border: none;
    transition: all var(--transition-base);
}

.btn-white:hover {
    background: var(--primary-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-premium {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all var(--transition-base);
}

.btn-premium:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-cto-primary {
    background: #fff;
    color: #000;
    padding: 0.9rem 2.2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.btn-cto-primary:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.25);
}

.btn-cto-ghost {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.btn-cto-ghost:hover {
    color: #fff;
    border-bottom-color: var(--primary-gold);
}


/* ─── PREMIUM CARDS ─────────────────────────────────────────────────────────── */
.premium-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.premium-card:hover::before {
    opacity: 1;
}

/* Card Spotlight Effect */
.card-spotlight {
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
}

/* Dashboard Card */
.dashboard-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.dash-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    margin-right: 6px;
}

.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #febc2e; }
.dash-dots span:nth-child(3) { background: #28c840; }

.dash-title {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dash-badge {
    font-size: 0.75rem;
    color: var(--accent-green);
    background: rgba(39, 201, 63, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-pill);
}

.dash-body {
    padding: 1.5rem;
}


/* ─── INTERACTIVE ICONS ─────────────────────────────────────────────────────── */
.interactive-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    color: var(--primary-gold);
    font-size: 1.25rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.interactive-icon.cyan {
    background: var(--cyan-subtle);
    border-color: var(--cyan-border);
    color: var(--primary-cyan);
}

.interactive-icon.purple {
    background: var(--purple-subtle);
    border-color: var(--purple-border);
    color: var(--primary-purple);
}

.interactive-icon.small {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
}

.interactive-icon.large {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
}


/* ─── SECTION LABELS ────────────────────────────────────────────────────────── */
/* Simple Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-label.purple { color: var(--primary-purple); }
.section-label.center { justify-content: center; }

/* Enhanced Label with Icon Pill */
.section-label-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem 0.5rem 0.75rem;
    background: var(--gold-subtle);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-pill);
    margin-bottom: 1.5rem;
}

.label-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gold);
    color: #000;
    border-radius: var(--radius-circle);
    font-size: 0.9rem;
}

.label-text {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.label-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}


/* ─── SECTION TITLES ────────────────────────────────────────────────────────── */
.section-title {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title.center { text-align: center; }

.section-title-enhanced {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}

.title-prefix {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(1.1rem, 1.5vw + 0.3rem, 1.5rem);
    font-weight: 500;
}

.title-highlight {
    display: block;
    font-size: clamp(1.8rem, 3vw + 0.5rem, 2.75rem);
    font-weight: 800;
}

.section-desc {
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 1vw + 0.15rem, 1.1rem);
    line-height: 1.7;
    max-width: 600px;
}

.section-desc.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* ─── FORM CONTROLS ─────────────────────────────────────────────────────────── */
.form-control-premium {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--radius-md) !important;
    padding: 0.9rem 1.2rem !important;
    color: #fff !important;
    font-size: 0.95rem;
    transition: all var(--transition-base);
}

.form-control-premium:focus {
    border-color: var(--primary-gold) !important;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1), 0 0 20px rgba(255, 215, 0, 0.1) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.form-control-premium::placeholder {
    color: var(--text-faint);
}

.premium-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.premium-input:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
    color: white;
}


/* ─── FORM MESSAGES ─────────────────────────────────────────────────────────── */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.form-message.success {
    background: rgba(40, 200, 64, 0.1);
    border: 1px solid rgba(40, 200, 64, 0.2);
    color: #28c840;
}

.form-message.error {
    background: rgba(255, 95, 87, 0.1);
    border: 1px solid rgba(255, 95, 87, 0.2);
    color: #ff5f57;
}

/* ─── FAQ ACCORDION ─────────────────────────────────────────────────────────── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 35, 0.7);
}

.faq-item.active {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(40, 35, 20, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question span, .faq-question h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(135deg); /* Smoother cross to close */
    color: var(--primary-gold);
}

.faq-item.active .faq-question span, .faq-item.active .faq-question h5 {
    color: var(--primary-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin: 0;
}


/* ─── FEATURE LIST ──────────────────────────────────────────────────────────── */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li strong {
    color: var(--text-primary);
}


/* ─── FOOTER ────────────────────────────────────────────────────────────────── */
.footer-mega {
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.footer-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.3;
}

.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.footer-heading {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    width: fit-content;
    color: var(--text-muted);
    font-size: 0.95rem;
    padding: 0.2rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary-gold);
    transform: translateX(8px);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.social-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-gold);
    color: #000;
    border-color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Footer Newsletter Pro-grade UI */
.footer-newsletter {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-pill);
    padding: 4px;
    transition: all 0.4s ease;
}

.footer-newsletter:focus-within {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 0.85rem 1.25rem;
    box-shadow: none !important;
    font-size: 0.95rem;
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter .form-control:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.footer-newsletter .btn {
    border-radius: var(--radius-pill) !important;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
}


/* ─── MARQUEE ───────────────────────────────────────────────────────────────── */
.marquee-section {
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.mask-linear-fade {
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marqueeScroll 40s linear infinite;
    width: max-content;
}

.brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.brand-item:hover {
    opacity: 1;
}

.brand-item img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ─── SERVICE LINK ──────────────────────────────────────────────────────────── */
.service-link {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition-base);
}

.service-link:hover {
    gap: 12px;
}


/* ═══════════════════════════════════════════════════════════════════════════════
   5-STAGE RESPONSIVE — COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Stage 2: SM (576px+) — Mobile Landscape */
@media (min-width: 576px) {
    .brand-item img {
        height: 32px;
    }
}

/* Stage 3: MD (768px+) — Tablet */
@media (min-width: 768px) {
    .premium-card {
        padding: 2rem;
    }

    .footer-mega {
        padding: 5rem 0 2rem;
    }

    .brand-item img {
        height: 36px;
    }
}

/* Stage 4: LG (992px+) — Laptop */
@media (min-width: 992px) {
    .interactive-icon.large {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Stage 5: XL (1200px+) — Desktop */
@media (min-width: 1200px) {
    .premium-card {
        padding: 2.25rem;
    }

    .brand-item img {
        height: 40px;
    }
}

/* XS-specific overrides (<576px) */
@media (max-width: 575.98px) {
    .btn-magnetic {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-magnetic.large {
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
    }

    .premium-card {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }

    .section-label-enhanced {
        padding: 0.4rem 1rem 0.4rem 0.5rem;
        gap: 0.5rem;
    }

    .label-icon {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .label-text {
        font-size: 0.75rem;
    }

    .footer-mega {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand h2 {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .social-btn {
        width: 36px;
        height: 36px;
    }

    .interactive-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .marquee-track {
        gap: 2rem;
    }

    .brand-item img {
        height: 22px;
    }
}
