/* ============================================
   79F MEDIA & EVENT — DESIGN SYSTEM 2025
   ============================================ */

/* --- IMPORT FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800;900&display=swap');

/* --- CSS VARIABLES --- */
:root {
    --bg-primary: #080b14;
    --bg-secondary: #0e1422;
    --bg-card: #111827;
    --bg-card-hover: #1a2235;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(243, 156, 18, 0.4);

    --gold: #f39c12;
    --gold-light: #f5b942;
    --gold-dark: #d68910;
    --gold-grad: linear-gradient(135deg, #f39c12, #e67e22);

    --text-primary: #f0f4ff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 30px rgba(243, 156, 18, 0.2);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    /* Standard Hero Gradient (Subpages) */
    --hero-gradient: linear-gradient(135deg, rgba(8, 11, 20, 0.92) 0%, rgba(14, 20, 34, 0.88) 100%);
    /* Ultra Clear Slider Gradient (Homepage Only) */
    --slider-gradient: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);

    --overlay-gradient: linear-gradient(to top, rgba(8, 11, 20, 0.95) 0%, rgba(8, 11, 20, 0.3) 35%, transparent 70%);
}

/* --- LIGHT MODE OVERRIDES (Admin Style) --- */
.light-mode {
    --bg-primary: #f8fafc;
    /* Admin-like light background */
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --border-color: #e2e8f0;
    /* Solid light borders */
    --border-glow: rgba(243, 156, 18, 0.2);

    --text-primary: #1e293b;
    /* Slate 800 - Professional dark blue-gray */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #94a3b8;
    /* Slate 400 */

    --shadow-card: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Balanced Overlays for Light Mode */
    --hero-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.9) 100%);
    --slider-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.15) 100%);

    --overlay-gradient: linear-gradient(to top, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.2) 35%, transparent 70%);
}

.light-mode body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    background-image: none;
    /* Clear any dark patterns */
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: #111;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
}

.text-gradient {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 2px;
    background: var(--gold-grad);
    border-radius: 2px;
}

/* --- NAVBAR --- */
.navbar-custom {
    background: rgba(8, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    padding: 16px 0;
}

.navbar-custom.scrolled {
    padding: 10px 0;
    background: rgba(8, 11, 20, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.6rem;
    letter-spacing: 2px;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold) !important;
    background: rgba(243, 156, 18, 0.08);
}

.btn-nav-cta {
    background: var(--gold-grad);
    color: #111 !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 24px !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
    transition: var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.45) !important;
    color: #111 !important;
}

/* --- BUTTONS --- */
.btn-gold {
    background: var(--gold-grad);
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(243, 156, 18, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.5);
    color: #111;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 34px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold-grad);
    color: #111;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
}

/* --- CARDS --- */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
}

.dark-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.dark-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
    transform: translateY(-6px);
    background: var(--bg-card-hover);
}

/* --- ICON BOX --- */
.icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
    flex-shrink: 0;
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-size: 2rem;
}

.dark-card:hover .icon-box,
.glass-card:hover .icon-box {
    background: var(--gold-grad);
    border-color: transparent;
    color: #111;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
}

/* --- SECTION DIVIDER (Decorative) --- */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--gold-grad);
    border-radius: 3px;
    margin: 16px auto 0;
}

.section-divider.left {
    margin-left: 0;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 11, 20, 0.8) 0%, rgba(14, 20, 34, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -1px;
}

/* --- PAGE HERO (Sub pages) --- */
.page-hero {
    padding: 160px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 11, 20, 0) 0%, var(--bg-primary) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* --- STATS --- */
.stat-item {
    padding: 30px 20px;
    border-right: 1px solid var(--border-color);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* --- PORTFOLIO GRID --- */
.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 11, 20, 0.95) 0%, rgba(8, 11, 20, 0.2) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* --- PAGINATION --- */
.pagination .page-link {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    margin: 0 3px;
    border-radius: var(--radius-sm) !important;
    padding: 10px 18px;
    font-weight: 600;
    transition: var(--transition);
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
    background: var(--gold-grad);
    border-color: transparent;
    color: #111;
}

/* --- FORM CONTROLS --- */
.form-control-dark,
.form-select-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control-dark:focus,
.form-select-dark:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--gold);
    color: var(--text-primary);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.15);
    outline: none;
}

.form-control-dark::placeholder {
    color: var(--text-muted);
}

.form-label-dark {
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

/* --- ACCORDION (FAQ) --- */
.accordion-item-dark {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item-dark:hover {
    border-color: var(--border-glow) !important;
}

.accordion-button-dark {
    background: transparent !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    padding: 22px 24px;
    box-shadow: none !important;
    font-size: 1rem;
}

.accordion-button-dark:not(.collapsed) {
    color: var(--gold) !important;
}

.accordion-button-dark::after {
    filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
}

.accordion-body-dark {
    color: var(--text-secondary);
    padding: 0 24px 22px;
    line-height: 1.8;
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

/* --- TESTIMONIAL --- */
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
}

.testi-quote-icon {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.08;
    position: absolute;
    top: 10px;
    left: 24px;
    line-height: 1;
}

.testi-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    border: none;
    margin: 0 5px;
}

.testi-indicators .active {
    background: var(--gold);
    transform: scale(1.4);
}

/* --- PRICING CARD --- */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.pricing-card.featured {
    border-color: var(--gold);
    box-shadow: var(--shadow-glow);
}

.pricing-header {
    background: rgba(243, 156, 18, 0.06);
    padding: 28px;
    border-bottom: 1px solid var(--border-color);
}

/* --- BADGE/TAG --- */
.tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(243, 156, 18, 0.15);
    color: var(--gold);
    border: 1px solid rgba(243, 156, 18, 0.3);
}

/* --- HOVER EFFECTS --- */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.hover-glow {
    transition: var(--transition);
}

.hover-glow:hover {
    box-shadow: var(--shadow-glow);
}

/* --- GRADIENT BG SECTIONS --- */
.bg-section {
    background-color: var(--bg-secondary);
}

.bg-section-dark {
    background-color: var(--bg-primary);
}

/* --- LINE CLAMP --- */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: block;
    padding: 4px 0;
}

.footer-link:hover {
    color: var(--gold);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold-grad);
    color: #111;
    border-color: transparent;
    transform: translateY(-3px);
}

/* --- FLOATING ANIMATION --- */
.floating-element {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* --- BREADCRUMB --- */
.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted);
}

/* --- STICKY META CARD --- */
.meta-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: sticky;
    top: 100px;
}

.meta-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

.meta-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* --- PROCESS STEPS --- */
.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: #111;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .meta-card {
        position: static;
        margin-top: 30px;
    }

    .portfolio-overlay {
        opacity: 1;
    }
}

/* --- UTILITY --- */
.pt-navbar {
    padding-top: 90px;
}

.text-muted-light {
    color: var(--text-secondary) !important;
}

.border-subtle {
    border-color: var(--border-color) !important;
}

.bg-card {
    background: var(--bg-card) !important;
}

/* --- LIGHT MODE COMPONENT ADJUSTMENTS --- */
.light-mode .hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.light-mode .navbar-custom {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.light-mode .navbar-custom.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.light-mode .navbar-custom .nav-link {
    color: #475569 !important;
    font-weight: 500;
}

.light-mode .navbar-custom .nav-link:hover,
.light-mode .navbar-custom .nav-link.active {
    color: var(--gold) !important;
    background: transparent;
}

.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode h5,
.light-mode h6 {
    color: #1e293b;
    letter-spacing: -0.5px;
}

.light-mode .page-hero {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.light-mode .page-hero::before {
    display: none;
}

.light-mode .accordion-item-dark {
    background: #ffffff;
    border-color: #e2e8f0 !important;
}

.light-mode .accordion-button-dark {
    color: #1e293b !important;
}

.light-mode .accordion-button-dark::after {
    filter: brightness(0.2);
}

.light-mode .portfolio-overlay {
    background: linear-gradient(to top, rgba(8, 11, 20, 0.95) 0%, rgba(8, 11, 20, 0.3) 35%, transparent 70%) !important;
    border-top: none !important;
}

.light-mode .portfolio-overlay h4,
.light-mode .portfolio-overlay h5,
.light-mode .portfolio-overlay .text-white {
    color: #ffffff !important;
}

.light-mode .portfolio-overlay .btn-outline-light {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.light-mode .portfolio-overlay .btn-outline-light:hover {
    background: var(--gold-grad) !important;
    color: #111 !important;
    border-color: transparent !important;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.light-mode .social-btn {
    background: #f1f5f9;
    color: #475569;
    border-color: #e2e8f0;
}

.light-mode .glass-card,
.light-mode .dark-card {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    box-shadow: var(--shadow-card);
}

.light-mode .glass-card:hover,
.light-mode .dark-card:hover {
    border-color: var(--gold) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.light-mode .footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
}

.light-mode .footer-link {
    color: #64748b;
}

.light-mode .footer-link:hover {
    color: var(--gold);
}

.light-mode .footer-brand {
    background: var(--gold-grad);
    -webkit-background-clip: text;
}

/* --- GLOBAL UTILITY OVERRIDES FOR LIGHT MODE --- */
.light-mode .hero-content h1,
.light-mode .hero-content p,
.light-mode .hero-content .text-white,
.light-mode .hero-content .text-light {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4) !important;
}

/* Ensure all other white text throughout the site becomes dark in Light Mode */
.light-mode .text-white,
.light-mode .text-light,
.light-mode h1.text-white,
.light-mode h2.text-white,
.light-mode h3.text-white,
.light-mode h4.text-white,
.light-mode h5.text-white,
.light-mode h6.text-white {
    color: var(--text-primary) !important;
}

.light-mode .text-muted-light {
    color: var(--text-secondary) !important;
}

.light-mode .bg-dark,
.light-mode .bg-black,
.light-mode .bg-section-dark {
    background-color: var(--bg-primary) !important;
}

.light-mode .border-secondary,
.light-mode .border-dark {
    border-color: var(--border-color) !important;
}

.light-mode .form-control-custom,
.light-mode .form-control-dark {
    background: #ffffff !important;
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
}

.light-mode .form-control-custom:focus,
.light-mode .form-control-dark:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
}

/* Specific Hero Overrides for Light Mode */
.light-mode .hero-overlay {
    background: var(--hero-gradient) !important;
}

/* Ensure yellow text is more readable on light backgrounds */
.light-mode .text-warning {
    color: #d97706 !important;
    /* Darker amber/gold for better visibility */
    text-shadow: none !important;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gold-grad);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    z-index: 9999;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.6);
}