/* ==========================================================================
   DAWA PACK - PREMIUM DESIGN SYSTEM (RED & BLACK CLASSY THEME)
   ========================================================================== */

/* Variables */
:root {
    --bg-dark: #09090b;
    --bg-card: #121216;
    --bg-card-hover: #17171f;
    --primary-red: #e62e3d;
    --primary-red-hover: #ff4d5a;
    --primary-red-glow: rgba(230, 46, 61, 0.15);
    --primary-red-glow-strong: rgba(230, 46, 61, 0.45);
    --text-white: #ffffff;
    --text-gray: #a0a0ab;
    --text-muted: #52525b;
    --border-color: #27272a;
    --border-hover: #3f3f46;
    --glass-bg: rgba(18, 18, 22, 0.75);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Utilities */
.limit-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 120px 0;
    position: relative;
}

.bg-dark-gradient {
    background: linear-gradient(180deg, #09090b 0%, #0d0d12 50%, #09090b 100%);
}

.text-red {
    color: var(--primary-red-hover) !important;
}

.red-bg {
    background-color: var(--primary-red) !important;
}

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

.red-text {
    color: var(--primary-red) !important;
}

/* Common Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0ab 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--text-white);
    border: none;
    box-shadow: 0 4px 15px var(--primary-red-glow);
}

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-red-glow-strong);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar-wrapper {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-item {
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.nav-item.highlight-red {
    border: 1px solid var(--primary-red);
    color: var(--text-white);
}

.nav-item.highlight-red:hover {
    background-color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red-glow-strong);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-white);
    padding: 8px;
    transition: var(--transition-smooth);
}

.menu-toggle:hover {
    color: var(--primary-red-hover);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--bg-card);
    z-index: 2000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.mobile-drawer.open {
    transform: translateX(-300px);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}

.drawer-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary-red-hover);
    letter-spacing: 1px;
}

.close-drawer-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-drawer-btn:hover {
    color: var(--primary-red-hover);
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-item {
    color: var(--text-gray);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.15rem;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
    transition: var(--transition-smooth);
    border-left: 2px solid transparent;
}

.drawer-item:hover, .drawer-item.active {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.03);
    border-left-color: var(--primary-red);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: radial-gradient(circle at 80% 20%, rgba(230, 46, 61, 0.08) 0%, transparent 45%);
}

.hero-background-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--primary-red);
    filter: blur(180px);
    opacity: 0.08;
    top: 25%;
    left: 5%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-logo-wrapper {
    margin-bottom: 24px;
}

.hero-logo-large {
    height: 56px;
    width: auto;
}

.hero-slogan {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0ab 60%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-intro {
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Slider Component in Hero */
.hero-slider-area {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 520px;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slide.active .slide-img {
    transform: scale(1.0);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 11, 0.95) 100%);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.slide-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red-hover);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.slide-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Slider Controls */
.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(9, 9, 11, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-control:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 0 15px var(--primary-red-glow-strong);
}

.slider-control.prev {
    left: 16px;
}

.slider-control.next {
    right: 16px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--primary-red);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--primary-red-glow-strong);
}




/* ==========================================================================
   Portfolio Section
   ========================================================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--primary-red-glow-strong);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.portfolio-card.hidden,
.error-container.hidden,
.products-grid.hidden {
    display: none !important;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #16161c;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 18, 22, 0.95) 100%);
}

.card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-card-action {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-card-action i {
    transition: transform 0.3s ease;
}

.btn-card-action:hover {
    color: var(--primary-red-hover);
}

.btn-card-action:hover i {
    transform: translateX(6px);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-panel-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.info-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-premium);
}

.info-icon {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.info-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.info-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.info-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.info-link:hover {
    color: var(--primary-red-hover);
}

.social-links-grid {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 0 15px var(--primary-red-glow-strong);
}

/* Contact Form */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.form-group input, .form-group textarea {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 12px var(--primary-red-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: #050506;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    align-self: flex-start;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 0 10px var(--primary-red-glow-strong);
}

.footer-links h4, .footer-details h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links ul a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-details p {
    color: var(--text-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-details p i {
    color: var(--primary-red);
}

.history-note {
    font-style: italic;
    color: var(--text-muted) !important;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.9);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay:not(.hidden) .modal-card {
    transform: scale(1);
}

.modal-icon-success {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 24px;
}

.modal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-card p {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .story-timeline-grid::before {
        display: none;
    }
    .story-timeline-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .timeline-node {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }
    .node-year-badge {
        flex-shrink: 0;
        width: 120px;
        text-align: center;
        align-self: center;
    }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    .section-title {
        font-size: 2.3rem;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-text-area {
        text-align: center;
    }
    .hero-intro {
        margin: 0 auto 30px auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-social-quick {
        justify-content: center;
    }
    .menu-toggle {
        display: block;
    }
    .nav-links {
        display: none;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .timeline-node {
        flex-direction: column;
    }
    .node-year-badge {
        width: auto;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-slogan {
        font-size: 2.4rem;
    }
    .contact-form-panel {
        padding: 24px;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Hero Slider Video & Social Reels Styles
   ========================================================================== */
.slide-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reels UI Simulation */
.reels-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 20%, transparent 75%, rgba(0, 0, 0, 0.85) 100%);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    box-sizing: border-box;
}

.reels-brand-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.tiktok-style .reels-brand-badge {
    background-color: rgba(0, 0, 0, 0.7);
    color: #00f2fe;
    text-shadow: 0 0 5px rgba(254, 44, 85, 0.5);
}

.instagram-style .reels-brand-badge {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.reels-sidebar {
    position: absolute;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 5;
}

.reels-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 1.4rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.reels-icon-btn:hover {
    transform: scale(1.15);
}

.reels-icon-btn span {
    font-size: 0.75rem;
    margin-top: 4px;
    font-weight: 600;
}

.reels-music-disc-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    animation: rotateDisc 4s linear infinite;
}

@keyframes rotateDisc {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.reels-info {
    align-self: flex-start;
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
    z-index: 4;
    text-align: left;
}

.reels-author {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.follow-btn {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border: 1px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.follow-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

.reels-caption {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #e4e4e7;
}

.reels-music-track {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #d4d4d8;
}

.instagram-style .dot-sep {
    font-size: 0.8rem;
    color: #a1a1aa;
}

.instagram-style .audio-label {
    font-size: 0.8rem;
    color: #e4e4e7;
    font-weight: 400;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-dark);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    transition: var(--transition-smooth);
    aspect-ratio: 4/3;
}

.gallery-item.hidden {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(230, 46, 61, 0.15);
}

.gallery-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.gallery-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-media-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.2) 0%, rgba(9, 9, 11, 0.85) 100%);
    opacity: 0.8;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(9, 9, 11, 0.1) 0%, rgba(9, 9, 11, 0.95) 100%);
}

.media-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background-color: rgba(9, 9, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.media-badge.social-tiktok {
    color: #00f2fe;
    border-color: rgba(0, 242, 254, 0.3);
}

.media-badge.social-instagram {
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.3);
}

.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0.7;
    transition: var(--transition-smooth);
    box-shadow: 0 0 20px rgba(230, 46, 61, 0.4);
}

.gallery-item:hover .play-btn-circle {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-hover-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: left;
}

.gallery-hover-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: left;
}

/* ==========================================================================
   Lightbox / Modal Components
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 9, 11, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition-smooth);
}

.lightbox-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox-container {
    position: relative;
    width: 90%;
    max-width: 440px; /* reels size standard vertical */
    aspect-ratio: 9/16;
    max-height: 85vh;
    background-color: #000000;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(9, 9, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(90deg);
}

.lightbox-video-wrapper {
    width: 100%;
    height: 100%;
}

.lightbox-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.embed-social-container {
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.social-embed-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: #000000;
}

/* ==========================================================================
   News / Announcements Section
   ========================================================================== */
.news-section {
    background-color: var(--bg-dark);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 15px 35px rgba(230, 46, 61, 0.12);
}

.news-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.news-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.news-card:hover .news-img-wrapper img {
    transform: scale(1.06);
}

.news-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.news-badge.bg-red {
    background-color: var(--primary-red);
}

.news-badge.bg-blue {
    background-color: #0070f3;
}

.news-badge.bg-gold {
    background-color: #f5a623;
}

.news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-white);
}

.news-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: left;
}

/* Specific button style for news */
.news-content .btn-sm {
    align-self: flex-start;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Lightbox Modal refinement for News */
.news-modal-container {
    max-width: 650px;
    aspect-ratio: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.news-modal-content {
    padding: 30px;
    overflow-y: auto;
    height: 100%;
    max-height: 80vh;
}

.news-modal-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.news-modal-badge {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
}

.news-modal-date {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.news-modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.25;
}

.news-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-modal-img-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.news-modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-modal-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    text-align: left;
}

.news-modal-text p {
    margin-bottom: 16px;
}

.news-modal-text ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.news-modal-text li {
    margin-bottom: 6px;
}

/* ==========================================================================
   AI Assistant Chatbot Widget Styles
   ========================================================================== */
.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-widget-fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b21e2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(230, 46, 61, 0.35);
    transition: var(--transition-smooth);
    position: relative;
    outline: none;
    animation: fabPulseGlow 3s infinite;
}

.chat-widget-fab:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 28px rgba(230, 46, 61, 0.5);
    background: linear-gradient(135deg, var(--primary-red-hover) 0%, #d62231 100%);
}

.chat-fab-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-white);
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1.5px solid var(--primary-red);
    transition: opacity 0.3s ease;
}

.chat-widget-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    max-height: 80vh;
    background: rgba(18, 18, 22, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 46, 61, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-widget-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Chat Header */
.chat-header {
    padding: 16px 20px;
    background: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chat-avatar-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #22c55e;
    border: 2px solid #09090b;
}

.chat-header-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.chat-bot-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
}

.chat-bot-status {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 500;
}

.chat-close-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
}

.chat-close-btn:hover {
    color: var(--primary-red-hover);
}

/* Chat Messages */
.chat-messages-area {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

/* Message Custom Scrollbar */
.chat-messages-area::-webkit-scrollbar {
    width: 4px;
}

.chat-messages-area::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages-area::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
}

.chat-message {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    animation: messageFadeIn 0.3s ease-out;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.chat-message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.45;
    word-wrap: break-word;
    text-align: left;
}

.chat-message.bot .chat-message-bubble {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border-bottom-left-radius: 4px;
}

.chat-message.user .chat-message-bubble {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b21e2a 100%);
    color: var(--text-white);
    border-bottom-right-radius: 4px;
}

.chat-message-time {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 4px;
    padding: 0 4px;
}

.chat-message.bot .chat-message-time {
    align-self: flex-start;
}

.chat-message.user .chat-message-time {
    align-self: flex-end;
}

/* Chat Suggestions */
.chat-suggestions {
    padding: 10px 16px;
    background: rgba(9, 9, 11, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.chat-suggest-btn {
    font-size: 0.8rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: left;
}

.chat-suggest-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 2px 8px rgba(230, 46, 61, 0.25);
}

/* Chat Input */
.chat-input-area {
    padding: 16px 20px;
    background: rgba(9, 9, 11, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-input-area form {
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex-grow: 1;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 16px;
    color: var(--text-white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-input-area input:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(230, 46, 61, 0.15);
    background-color: rgba(255, 255, 255, 0.05);
}

.chat-send-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: var(--primary-red);
    border: none;
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-send-btn:hover {
    background-color: var(--primary-red-hover);
    box-shadow: 0 0 12px rgba(230, 46, 61, 0.3);
}

/* Typing Indicator Animation */
.typing-indicator-container {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    width: fit-content;
    animation: messageFadeIn 0.3s ease-out;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--text-gray);
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }
.typing-dot:nth-child(3) { animation-delay: 0s; }

/* Keyframes */
@keyframes fabPulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(230, 46, 61, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(230, 46, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 46, 61, 0); }
}

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1.0); }
}

@keyframes messageFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsiveness */
@media (max-width: 480px) {
    .chat-widget-container {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-widget-window {
        width: calc(100vw - 40px);
        height: 450px;
        right: 0;
        bottom: 75px;
    }
    
    .chat-widget-fab {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   Hero Social Quick Links & Facebook Styles
   ========================================================================== */
.hero-social-quick {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: messageFadeIn 0.8s ease-out;
}

.social-quick-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.social-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.social-quick-link i {
    font-size: 1rem;
}

.social-quick-link.facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.35);
}

.social-quick-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.35);
}

.social-quick-link.tiktok:hover {
    background-color: #000000;
    border-color: #00f2fe;
    color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.35);
}

/* Facebook Badges and Reels Layout */
.media-badge.social-facebook {
    color: #1877f2;
    border-color: rgba(24, 119, 242, 0.3);
}

.facebook-style .reels-brand-badge {
    background-color: #1877f2;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.4);
}

/* ==========================================================================
   Category Grid & Category Page Styles
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-premium);
}

.cat-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #16161c;
}

.cat-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card:hover .cat-image-wrapper img {
    transform: scale(1.06);
}

.cat-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(18, 18, 22, 0.95) 100%);
}

.cat-icon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-red-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2;
}

.cat-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cat-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cat-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cat-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
    flex-grow: 1;
}

.btn-cat-action {
    align-self: flex-start;
}

/* Category Page details */
.btn-back-home {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-back-home:hover {
    color: var(--primary-red-hover);
    transform: translateX(-4px);
}

.category-pretitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-red-hover);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.category-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0ab 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.category-hero-desc {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 700px;
}

/* Products Grid on Category page */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Product Card customization */
.product-card {
    cursor: pointer;
}

/* Product Action Button inside card */
.btn-product-action {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    transition: var(--transition-smooth);
}

.product-card:hover .btn-product-action {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px var(--primary-red-glow-strong);
}

/* Product Modal Layout */
.product-modal-card {
    max-width: 950px;
    width: 95%;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    max-height: 85vh;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(9, 9, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition-smooth);
}

.modal-close-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: rotate(90deg);
}

/* Modal Gallery (Left Column) */
.product-modal-gallery {
    position: relative;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.carousel-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(9, 9, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.carousel-control:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background-color: var(--primary-red-hover);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--primary-red-hover);
}

/* Modal Info (Right Column) */
.product-modal-info {
    padding: 40px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: var(--bg-card);
}

.product-info-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-red-hover);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-info-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 6px;
}

.product-info-tagline {
    font-size: 1rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 20px;
}

.product-info-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 24px;
}

.product-info-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.product-info-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Specs Table styling */
.product-specs-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 10px;
}

.spec-label {
    width: 35%;
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.9rem;
}

.spec-value {
    width: 65%;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-modal-actions {
    margin-top: auto;
}

.modal-presentation-only-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    line-height: 1.4;
}

.modal-presentation-only-note i {
    color: var(--primary-red);
}

/* Responsiveness for Category Page and Modal */
@media (max-width: 1024px) {
    .category-grid, .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid, .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-modal-grid {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }
    
    .product-modal-gallery {
        aspect-ratio: 16/10;
        height: 250px;
        width: 100%;
    }
    
    .product-modal-info {
        padding: 24px;
    }
    
    .category-hero-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Favorites Floating FAB, Drawer & Item Cards
   ========================================================================== */
.favorites-fab {
    position: fixed;
    bottom: 30px;
    right: 110px; /* Positioned to the left of the AI chatbot (which is at right: 30px) */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #18181b 0%, #09090b 100%);
    border: 1px solid var(--border-color);
    color: var(--primary-red-hover);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    z-index: 1000;
    outline: none;
}

.favorites-fab:hover {
    transform: scale(1.08);
    border-color: var(--primary-red);
    box-shadow: 0 10px 28px rgba(230, 46, 61, 0.25);
    color: var(--text-white);
    background: linear-gradient(135deg, var(--primary-red) 0%, #b21e2a 100%);
}

.favorites-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-white);
    color: var(--primary-red);
    font-size: 0.75rem;
    font-weight: 800;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1.5px solid var(--primary-red);
}

.favorites-badge.pop {
    animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
    0% { transform: scale(0.6); }
    100% { transform: scale(1); }
}

/* Favorites Drawer Panel */
.favorites-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background: rgba(18, 18, 22, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.6);
    z-index: 2500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.favorites-drawer.open {
    transform: translateX(0);
}

.favorites-drawer .drawer-header {
    padding: 24px;
    background: rgba(9, 9, 11, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.favorites-drawer .drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: center;
}

.favorites-drawer .close-drawer-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favorites-drawer .close-drawer-btn:hover {
    color: var(--primary-red-hover);
    transform: rotate(90deg);
}

/* Favorites items container */
.favorites-list-container {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.empty-favorites-msg {
    margin: auto;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    padding: 20px;
    line-height: 1.5;
}

/* Card of favorite item inside drawer */
.favorite-item-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.favorite-item-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(230, 46, 61, 0.2);
}

.fav-item-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #16161c;
}

.fav-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fav-item-details {
    flex-grow: 1;
    overflow: hidden;
    text-align: left;
}

.fav-item-details h5 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fav-item-details p {
    font-size: 0.75rem;
    color: var(--text-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fav-item-remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 6px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.fav-item-remove-btn:hover {
    color: var(--primary-red-hover);
    transform: scale(1.1);
}

/* Footer of the Drawer */
.favorites-footer {
    padding: 24px;
    background: rgba(9, 9, 11, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.favorites-cta-box {
    background-color: rgba(230, 46, 61, 0.05);
    border: 1px dashed rgba(230, 46, 61, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.favorites-cta-box h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cta-phone-link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-red-hover);
    text-decoration: none;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.cta-phone-link:hover {
    text-shadow: 0 0 10px rgba(255, 77, 90, 0.3);
    transform: scale(1.02);
}

.favorites-cta-box p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.btn-wa {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
}

.btn-wa:hover {
    background-color: #20ba5a !important;
    border-color: #20ba5a !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}

.btn-clear-favorites {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    align-self: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-clear-favorites:hover {
    color: var(--text-gray);
    text-decoration: underline;
}

/* Drawer overlay open status styling */
.drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Responsiveness for Drawer */
@media (max-width: 480px) {
    .favorites-drawer {
        width: 100%;
    }
    
    .favorites-fab {
        bottom: 20px;
        right: 90px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .favorites-cta-box {
        padding: 16px;
    }
    
    .cta-phone-link {
        font-size: 1.4rem;
    }
}

/* Card Favorite Toggle Button */
.card-favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(9, 9, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
}

.card-favorite-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 4px 12px var(--primary-red-glow-strong);
}

/* ==========================================================================
   Facebook Page Plugin / Feed Styles
   ========================================================================== */
.facebook-embed-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.facebook-iframe-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background-color: #0d0d11;
    border-radius: 20px;
    padding: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-premium);
}

.facebook-info-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-facebook-direct:hover {
    background-color: #145dbf !important;
    border-color: #145dbf !important;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4) !important;
}

@media (max-width: 992px) {
    .facebook-embed-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .facebook-info-card {
        align-items: center;
        text-align: center;
    }
    
    .fb-benefits-list {
        align-items: flex-start;
    }
    
}

/* ==========================================================================
   Search Bar Components (Toggle & Expandable)
   ========================================================================== */
.search-container {
    position: relative;
    margin-left: 20px;
    display: flex;
    align-items: center;
    height: 40px;
    z-index: 1001;
    transition: var(--transition-smooth);
}

.search-toggle-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.15rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.search-toggle-btn:hover {
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.search-container.expanded .search-toggle-btn {
    display: none;
}

.search-expand-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 12px;
    height: 40px;
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.search-container.expanded .search-expand-wrapper {
    width: 320px;
    opacity: 1;
    pointer-events: auto;
}

.search-expand-wrapper input {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding-right: 10px;
}

.search-expand-wrapper input::placeholder {
    color: var(--text-muted);
}

.search-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    color: var(--primary-red-hover);
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 350px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    z-index: 1002;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(18, 18, 22, 0.95);
}

.search-results-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.result-thumb {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #16161c;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    flex-grow: 1;
    min-width: 0;
}

.result-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-white);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.result-category {
    color: var(--primary-red-hover);
    font-weight: 500;
}

.result-code {
    font-family: monospace;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1px 4px;
    border-radius: 3px;
}

.no-results-msg {
    padding: 20px;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Scrollbar styling for search dropdown */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--border-hover);
}

/* Responsiveness for Search */
@media (max-width: 992px) {
    .search-container {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        justify-content: flex-end;
    }
    
    .search-container.expanded {
        width: 100%;
    }
    
    .search-container.expanded .search-expand-wrapper {
        width: 100%;
        position: relative;
    }
    
    .search-results-dropdown {
        width: 100%;
    }
}

/* ==========================================================================
   Subcategory Sections inside Categories Page
   ========================================================================== */
.subcategory-section {
    margin-bottom: 55px;
    width: 100%;
}

.subcategory-title {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.subcategory-title i {
    color: var(--primary-red-hover);
    font-size: 1.4rem;
}

.subcategories-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}


