/* ═══════════════════════════════════════════════
   DESIGN TOKENS — LIGHT THEME (default)
═══════════════════════════════════════════════ */
:root {
    /* Brand */
    --brand-primary:   #6b0f1a;   /* dark maroon */
    --brand-dark:      #3d0008;   /* deep maroon-black */
    --brand-mid:       #8b1a27;
    --brand-light:     #f5e6e8;   /* very light maroon tint */
    --brand-gold:      #c8962c;

    /* Light theme surfaces */
    --clr-bg:          #f7f8fa;
    --clr-surface:     #ffffff;
    --clr-card:        #ffffff;
    --clr-nav:         #ffffff;
    
    /* Light theme footer - Beautiful soft warm rose */
    --clr-footer:          #f6ecef; 
    --clr-footer-text:     #2a0c10;
    --clr-footer-text-sec: #5c3f44;
    --clr-footer-border:   rgba(107,15,26,0.1);

    /* Text */
    --clr-text:        #1a1a2e;
    --clr-text-sec:    #4a4a6a;
    --clr-muted:       #7a7a9a;
    --clr-white:       #ffffff;

    /* Borders & shadows */
    --clr-border:      #e5e5f0;
    --shadow-sm:       0 2px 8px rgba(107,15,26,.08);
    --shadow-md:       0 6px 24px rgba(107,15,26,.12);
    --shadow-lg:       0 16px 48px rgba(107,15,26,.14);

    /* Misc */
    --radius:          12px;
    --radius-sm:       8px;
    --transition:      .25s ease;
    --ff-head:         'Poppins', sans-serif;
    --ff-body:         'Inter', sans-serif;
}

/* ═══════════════════════════════════════════════
   DARK THEME OVERRIDES (CRITICAL FIX FOR VISIBILITY)
═══════════════════════════════════════════════ */
[data-theme="dark"] {
    /* VIBRANT BRAND COLORS FOR DARK MODE CONTRAST */
    --brand-primary:   #ff5c75;   /* Glowing bright rose-crimson */
    --brand-dark:      #ff8597;   /* Brighter rose for hover */
    --brand-mid:       #ff4d6d;   /* Medium bright red */
    --brand-light:     rgba(255, 92, 117, 0.15); /* Soft crimson glow */
    --brand-gold:      #ffc107;   /* Vibrant bright gold */

    /* Surfaces */
    --clr-bg:          #0b0103;   /* Very deep reddish black */
    --clr-surface:     #170407;   /* Deep surface */
    --clr-card:        #1f070b;   /* Beautiful rich dark card */
    --clr-nav:         rgba(11, 1, 3, 0.95);
    
    /* Dark theme footer */
    --clr-footer:          #060001;
    --clr-footer-text:     #f5e6e8;
    --clr-footer-text-sec: #c8aab0;
    --clr-footer-border:   rgba(255, 92, 117, 0.15);

    /* High-contrast Text */
    --clr-text:        #fcf8f9;   /* Off-white */
    --clr-text-sec:    #e0ccd1;   /* Extremely readable secondary text */
    --clr-muted:       #a88d94;   /* Muted rose-gray */
    
    --clr-border:      rgba(255, 92, 117, 0.2); /* Defined border */
    --shadow-sm:       0 2px 8px rgba(0,0,0,.4);
    --shadow-md:       0 6px 24px rgba(0,0,0,.5);
    --shadow-lg:       0 16px 48px rgba(0,0,0,.6);
}

/* ═══════════════════════════════════════════════
   BASE
 ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--clr-bg);
    color: var(--clr-text);
    font-family: var(--ff-body);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    transition: background .3s ease, color .3s ease;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); color: var(--clr-text); font-weight: 700; line-height: 1.2; }
a { color: var(--brand-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }
section { padding: 72px 0; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--brand-primary); border-radius: 3px; }

/* ═══════════════════════════════════════════════
   UTILITIES & COMPONENT CUSTOMIZATIONS
═══════════════════════════════════════════════ */
.text-brand   { color: var(--brand-primary) !important; }
.text-secondary-jsi { color: var(--clr-text-sec) !important; }
.section-label {
    font-family: var(--ff-head);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brand-primary);
    display: block;
    margin-bottom: .5rem;
}
.section-heading {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    margin-bottom: .9rem;
    color: var(--clr-text);
}
.section-heading span { color: var(--brand-primary); }
.divider {
    width: 48px; height: 3px;
    background: var(--brand-primary);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* BUTTONS */
.btn-brand {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.7rem;
    background: var(--brand-primary);
    color: #fff !important;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .88rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--brand-primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline-brand {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .63rem 1.7rem;
    background: transparent;
    color: var(--brand-primary) !important;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .88rem;
    border-radius: var(--radius-sm);
    border: 2px solid var(--brand-primary);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-brand:hover { background: var(--brand-primary); color: #fff !important; transform: translateY(-1px); }

/* CARDS */
.card-jsi {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.card-jsi:hover { box-shadow: var(--shadow-md); border-color: var(--brand-primary); transform: translateY(-3px); }
.no-animate,
.card-jsi.no-animate:hover {
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
}
.icon-box {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--brand-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--brand-primary);
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

/* THEME TOGGLE */
#themeToggle {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--clr-border);
    background: var(--clr-card);
    color: var(--clr-text);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    transition: var(--transition);
    flex-shrink: 0;
}
#themeToggle:hover { background: var(--brand-light); color: var(--brand-primary); border-color: var(--brand-primary); }

/* NAVBAR */
#mainNav {
    background: var(--clr-nav);
    border-bottom: 1px solid var(--clr-border);
    padding: .6rem 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: background .3s ease, box-shadow .3s ease;
    box-shadow: var(--shadow-sm);
}
#mainNav.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand img { height: 42px; width: auto; object-fit: contain; }
.navbar-toggler { border-color: var(--clr-border); color: var(--clr-text); }
.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='%236b0f1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }
[data-theme="dark"] .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='%23ff5c75' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.nav-link {
    color: var(--clr-text) !important;
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: .875rem;
    padding: .45rem .85rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
    color: var(--brand-primary) !important;
    background: var(--brand-light);
}

/* Premium Hover Dropdown for Navigation */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeInDropdown 0.25s ease forwards;
    }
}
@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: .5rem;
    min-width: 290px;
    box-shadow: var(--shadow-lg);
}
.dropdown-item {
    color: var(--clr-text-sec);
    font-size: .845rem;
    font-family: var(--ff-body);
    border-radius: var(--radius-sm);
    padding: .5rem 1rem;
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--brand-light); color: var(--brand-primary); }
.social-nav a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--brand-light);
    color: var(--brand-primary);
    font-size: .78rem;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
    text-decoration: none;
}
.social-nav a:hover { background: var(--brand-primary); color: #fff; border-color: var(--brand-primary); }

/* HERO CAROUSEL */
#heroCarousel { position: relative; }
.hero-slide {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-slide-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,1,3,0.85) 0%, rgba(11,1,3,0.5) 60%, rgba(0,0,0,0.2) 100%);
}

/* Custom Overlay & BG Settings for Slide 1 (Left-Aligned Text) */
.slide-smart-board .hero-slide-bg {
    background-position: right center !important;
}
.slide-smart-board .hero-slide-bg::after {
    background: linear-gradient(90deg, rgba(11,1,3,0.85) 0%, rgba(11,1,3,0.45) 55%, rgba(0,0,0,0.1) 100%) !important;
}

/* Custom Overlay Settings for Slide 2 & 3 (Right-Aligned Text) */
.slide-text-right .hero-slide-bg::after {
    background: linear-gradient(270deg, rgba(11,1,3,0.88) 0%, rgba(11,1,3,0.45) 55%, rgba(0,0,0,0.1) 100%) !important;
}

/* Glowing Pricing Badge for Slide 1 */
.hero-price-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95); /* Crisp glass white backdrop for massive contrast */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--brand-gold);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(200, 150, 44, 0.2);
    animation: pulseBadge 3s infinite ease-in-out;
    max-width: 100%;
    text-align: left;
}
.hero-price-badge .main-text {
    color: #1a1a2e; /* Dark slate-indigo body text for high contrast */
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1.12rem;
    margin: 0;
    letter-spacing: 0.03em;
    line-height: 1.25;
}
.hero-price-badge .main-text span {
    color: #c8962c; /* Clear high-contrast brand gold */
    font-size: 1.18rem;
    font-weight: 800;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}
.hero-price-badge .main-text i {
    color: #c8962c; /* Bouncing gold tags icon */
    animation: tagBounce 1.5s infinite ease-in-out;
    display: inline-block;
}
.hero-price-badge .sub-text {
    font-size: 0.68rem;
    color: rgba(26, 26, 46, 0.65); /* Readable dark secondary text */
    display: block;
    margin-top: 0.25rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

@keyframes pulseBadge {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(200, 150, 44, 0.25), inset 0 0 10px rgba(200, 150, 44, 0.15);
        border-color: var(--brand-gold);
    }
    50% { 
        transform: scale(1.03); 
        box-shadow: 0 0 35px rgba(200, 150, 44, 0.55), inset 0 0 15px rgba(255, 92, 117, 0.25);
        border-color: var(--brand-primary);
    }
}

.hero-content { position: relative; z-index: 1; padding: 4rem 0; }
.hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .76rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.2rem;
    backdrop-filter: blur(6px);
}
.hero-title {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-title span { color: #f0c0c8; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.85); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }

.carousel-control-prev, .carousel-control-next {
    width: 44px; height: 44px;
    top: 50%; transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.3);
    opacity: 1;
    transition: var(--transition);
}
.carousel-control-prev { left: 1.5rem; }
.carousel-control-next { right: 1.5rem; }
.carousel-control-prev:hover, .carousel-control-next:hover { background: var(--brand-primary); border-color: var(--brand-primary); }

.carousel-indicators button {
    width: 28px; height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,.4) !important;
    border: none !important;
    opacity: 1;
    transition: var(--transition);
}
.carousel-indicators button.active { background: #fff !important; width: 44px; }

/* HOSTING BANNER (Black theme with advanced animations) */
#hosting-offer {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 92, 117, 0.1);
    border-bottom: 1px solid rgba(255, 92, 117, 0.1);
}
#hosting-offer::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: radial-gradient(circle at 75% 30%, rgba(107, 15, 26, 0.35) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: rotateGlow 25s infinite linear;
}
@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.offer-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 92, 117, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    animation: floatImage 6s infinite ease-in-out;
}
@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.offer-img img { width: 100%; height: 320px; object-fit: cover; }

/* Glowing Text Badge for Hosting Offer */
.hosting-glow-badge {
    background: linear-gradient(90deg, #ff5c75, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.76rem;
    display: inline-block;
    margin-bottom: 0.6rem;
    font-family: var(--ff-head);
}

/* Pulsing premium CTA button in Hosting Offer */
.hosting-btn-glow {
    background: linear-gradient(135deg, #ff5c75 0%, #ffc107 100%) !important;
    border: none !important;
    color: #000000 !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(255, 92, 117, 0.4);
    transition: all 0.3s ease !important;
    font-family: var(--ff-head);
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.7rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
}
.hosting-btn-glow:hover {
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 0 25px rgba(255, 92, 117, 0.8), 0 0 15px rgba(255, 193, 7, 0.5) !important;
    color: #000000 !important;
}

/* Product Logo Layout and Styling */
.product-logo-container {
    transition: var(--transition);
    overflow: hidden;
}
.card-jsi:hover .product-logo-container {
    background: rgba(107, 15, 26, 0.08) !important;
    border-color: rgba(107, 15, 26, 0.2) !important;
}
.product-logo-container img {
    transition: var(--transition);
}
.card-jsi:hover .product-logo-container img {
    transform: scale(1.06);
}

/* SWAN brand card hover scale and shadows */
.swan-brand-card {
    transition: var(--transition);
}
.swan-brand-card:hover {
    box-shadow: var(--shadow-md) !important;
    border-color: var(--brand-gold) !important;
    transform: translateY(-2px);
}

/* DC & ABOUT SECTIONS */
.dc-img-wrap, .about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.dc-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.dc-feature {
    display: flex; gap: .9rem; align-items: flex-start;
    padding: 1rem 1.1rem;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.dc-feature:hover { border-color: var(--brand-primary); background: var(--brand-light); }
.dc-feature .icon { font-size: 1.3rem; color: var(--brand-primary); flex-shrink: 0; margin-top: .1rem; }

blockquote.brand-quote {
    border-left: 3px solid var(--brand-primary);
    padding: .8rem 1.2rem;
    background: var(--brand-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: .95rem;
    color: var(--clr-text-sec);
    margin: 1.4rem 0;
}

/* FORMS */
.contact-card {
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.contact-card:hover { border-color: var(--brand-primary); box-shadow: var(--shadow-md); }

.form-control-jsi {
    background: var(--clr-bg);
    border: 1.5px solid var(--clr-border);
    border-radius: var(--radius-sm);
    color: var(--clr-text);
    padding: .68rem 1rem;
    font-family: var(--ff-body);
    font-size: .9rem;
    transition: var(--transition);
    width: 100%;
}
.form-control-jsi::placeholder { color: var(--clr-muted); }
.form-control-jsi:focus { outline: none; border-color: var(--brand-primary); box-shadow: 0 0 0 3px rgba(107,15,26,.1); background: var(--clr-surface); }
.form-control-jsi option { background: var(--clr-surface); color: var(--clr-text); }

/* INTERNAL PAGES */
.inner-page { padding: 72px 0; }
.inner-hero {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    padding: 60px 0;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.inner-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.inner-hero p { color: rgba(255,255,255,.8); font-size: 1rem; margin-top: .5rem; }

/* ANIMATED ROADMAP TIMELINE */
.roadmap-timeline {
    position: relative;
    padding: 2rem 0;
}
.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 3px;
    background: var(--clr-border);
    transform: translateX(-50%);
}
.roadmap-step {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    position: relative;
}
.roadmap-badge-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--brand-light);
    border: 3px solid var(--brand-primary);
    color: var(--brand-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 700;
    position: absolute;
    left: 50%; top: 0;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}
.roadmap-content {
    width: 45%;
    background: var(--clr-card);
    border: 1px solid var(--clr-border);
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.roadmap-content:hover {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-md);
}
.roadmap-step:nth-child(even) .roadmap-content {
    margin-left: auto;
}
.roadmap-step:nth-child(odd) .roadmap-content {
    margin-right: auto;
    text-align: right;
}

@media (max-width: 768px) {
    .roadmap-timeline::before { left: 24px; }
    .roadmap-badge-circle { left: 24px; transform: none; }
    .roadmap-content { width: calc(100% - 60px); margin-left: 60px !important; text-align: left !important; }
    .roadmap-step { margin-bottom: 2.5rem; }
}

/* BACK TO TOP */
#backToTop {
    position: fixed; bottom: 1.8rem; right: 1.8rem;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--brand-primary); color: #fff !important;
    border: none; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; pointer-events: none;
    transition: var(--transition); z-index: 999;
    box-shadow: var(--shadow-md);
}
#backToTop.show { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--brand-dark); transform: translateY(-2px); }

/* RESPONSIVE CSS */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--clr-surface);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: .5rem;
        border: 1px solid var(--clr-border);
        box-shadow: var(--shadow-lg);
    }
    .social-nav { margin-top: .7rem; padding-top: .7rem; border-top: 1px solid var(--clr-border); }
    .hero-slide { min-height: 70vh; }
    section { padding: 56px 0; }
}
@media (max-width: 575px) {
    .hero-title { font-size: 1.8rem; }
    .hero-slide { min-height: 62vh; }
}

/* Premium Animated Footer Background */
.animated-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(270deg, var(--clr-footer) 0%, rgba(107, 15, 26, 0.05) 50%, var(--clr-footer) 100%) !important;
    background-size: 400% 400% !important;
    animation: footerGradientAnimation 15s ease infinite !important;
}

[data-theme="dark"] .animated-footer {
    background: linear-gradient(270deg, var(--clr-footer) 0%, rgba(255, 92, 117, 0.06) 50%, var(--clr-footer) 100%) !important;
    background-size: 400% 400% !important;
}

@keyframes footerGradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Premium Link Hover Micro-Animations */
.footer-link {
    position: relative;
    padding-left: 0 !important;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.footer-link:hover {
    color: var(--brand-primary) !important;
    transform: translateX(8px) !important;
    text-shadow: 0 0 12px rgba(255, 92, 117, 0.25);
}
.footer-link::before {
    content: '→';
    position: absolute;
    left: -12px;
    opacity: 0;
    font-weight: 700;
    color: var(--brand-primary);
    transition: all 0.3s ease;
}
.footer-link:hover::before {
    opacity: 1;
    left: -16px;
}

/* Premium Heading Expanders on Hover */
.footer-heading {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--brand-primary);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer-heading:hover::after {
    width: 100%;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-gold));
}

