/* ============================================
   KURDSON INDUSTRIES - ENHANCED STYLES
   Glowing Red & Blue Theme | SEO-First | Super Fast
   ============================================ */

:root {
    --primary-blue: #002366;
    --primary-blue-glow: #0066FF;
    --primary-blue-light: #4D94FF;
    --primary-red: #D32F2F;
    --primary-red-glow: #FF4444;
    --primary-red-light: #FF6B6B;
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.4), 0 0 40px rgba(0, 102, 255, 0.2);
    --glow-red: 0 0 20px rgba(255, 68, 68, 0.4), 0 0 40px rgba(255, 68, 68, 0.2);
    --glow-blue-strong: 0 0 30px rgba(0, 102, 255, 0.6), 0 0 60px rgba(0, 102, 255, 0.3);
    --glow-red-strong: 0 0 30px rgba(255, 68, 68, 0.6), 0 0 60px rgba(255, 68, 68, 0.3);
    --gradient-blue: linear-gradient(135deg, #002366 0%, #0066FF 50%, #4D94FF 100%);
    --gradient-red: linear-gradient(135deg, #D32F2F 0%, #FF4444 50%, #FF6B6B 100%);
    --gradient-glow-text: linear-gradient(90deg, #0066FF, #FF4444, #0066FF);
    --dark-gray: #1a1a2e;
    --black: #0f0f1a;
    --white: #FFFFFF;
    --light-bg: #f0f4f8;
    --card-bg: rgba(255, 255, 255, 0.95);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow-blue: 0 8px 32px rgba(0, 102, 255, 0.25);
    --shadow-glow-red: 0 8px 32px rgba(255, 68, 68, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --hero-design-width: 1920px;
    --hero-max-height: 500px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Glowing Text */
.text-blue {
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.text-red {
    color: var(--primary-red);
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.text-glow-blue {
    color: var(--primary-blue-glow);
    text-shadow: var(--glow-blue);
    animation: textPulseBlue 3s ease-in-out infinite;
}

.text-glow-red {
    color: var(--primary-red-glow);
    text-shadow: var(--glow-red);
    animation: textPulseRed 3s ease-in-out infinite;
}

@keyframes textPulseBlue {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(0, 102, 255, 0.3), 0 0 20px rgba(0, 102, 255, 0.2);
    }

    50% {
        text-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.3);
    }
}

@keyframes textPulseRed {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 68, 68, 0.3), 0 0 20px rgba(255, 68, 68, 0.2);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 68, 68, 0.5), 0 0 40px rgba(255, 68, 68, 0.3);
    }
}

.gradient-text {
    background: var(--gradient-glow-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media(min-width:768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    z-index: 10000;
    transition: top 0.3s;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Topbar */
.topbar {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 0.25rem 0;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glow-blue);
}

.topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 6s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topbar .contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.topbar .contact-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.topbar .contact-info a {
    color: white;
}

.topbar .contact-info a:hover {
    text-decoration: underline;
}

.topbar .contact-info i {
    color: var(--primary-red-glow);
    filter: drop-shadow(0 0 4px rgba(255, 68, 68, 0.6));
}

.topbar .social-links {
    display: flex;
    gap: 0.75rem;
}

.topbar .social-links a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.75rem;
}

.topbar .social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--glow-red);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
}

.navbar.scrolled {
    box-shadow: var(--shadow-glow-blue);
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex-shrink: 0;
    min-width: fit-content;
    overflow: visible;
}

.logo a {
    display: block;
    line-height: 0;
    overflow: visible;
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    max-width: none !important;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    object-position: left center;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.1));
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.3));
}

@media (max-width: 480px) {
    .logo-img {
        height: 52px;
    }
}

.logo h2 {
    font-size: 1.6rem;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

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

.nav-links a {
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: var(--transition-smooth);
    box-shadow: var(--glow-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 0.5rem;
    background: var(--gradient-blue);
    color: white;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow-blue);
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    box-shadow: var(--glow-blue-strong);
    transform: scale(1.05);
}

/* Kurdson Home Slider — fixed 1920×500 ratio, full width on every device */
.hero {
    position: relative;
    width: 100%;
    height: min(var(--hero-max-height), calc(100vw * 500 / 1920));
    background: var(--black);
    padding: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center;
}

/* Two-box slider: image fills canvas edge-to-edge */
.hero-two-box .hero-slide img {
    object-fit: contain !important;
}



/* Kurdson Home Slider — Clickable banner link */
a.hero-slide {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.hero-slide:hover img {
    transform: scale(1.01);
    transition: transform 0.3s ease;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px var(--white);
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.slider-prev {
    left: clamp(1rem, 3vw, 2rem);
}

.slider-next {
    right: clamp(1rem, 3vw, 2rem);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary-blue-glow);
    border-color: var(--primary-blue-glow);
    box-shadow: var(--glow-blue);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .slider-prev,
    .slider-next {
        display: none;
    }
}

/* Loader */
.hero-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    z-index: 5;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 102, 255, 0.1);
    border-top-color: var(--primary-blue-glow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2.2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-glow-blue);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-blue-strong);
    filter: brightness(1.1);
}

.btn-glow-red {
    background: var(--gradient-red);
    color: var(--white);
    box-shadow: var(--shadow-glow-red);
}

.btn-glow-red:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-red-strong);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary-red-glow);
    background: rgba(255, 68, 68, 0.1);
    box-shadow: var(--glow-red);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 1.2rem;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
    box-shadow: var(--glow-red);
}

.section-title p {
    margin-top: 1rem;
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Profile Grid */
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.profile-text p {
    margin: 1.5rem 0;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.profile-text strong {
    color: var(--primary-blue);
    text-shadow: 0 0 8px rgba(0, 102, 255, 0.2);
}

.profile-image {
    position: relative;
}

.profile-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: var(--gradient-blue);
    border-radius: 1.5rem;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.profile-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.profile-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow-blue);
}

/* Product Cards */
.products-section {
    background: var(--light-bg);
    position: relative;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue-glow), transparent);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: var(--card-bg);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow-blue);
    border-color: rgba(0, 102, 255, 0.2);
}

.product-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.product-card i {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.product-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 102, 255, 0.5));
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Image-based Product Cards (Leading Products Redesign) */
.product-card.card-has-image {
    padding: 0 !important;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1 / 1;
    height: auto !important; /* Override any set height to maintain square aspect ratio */
    position: relative;
    overflow: hidden;
}

.product-card.card-has-image::before {
    display: none !important; /* Hide the top blue border line for image-based cards */
}

.product-card.card-has-image .card-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    border-radius: 1.25rem;
}

.product-card.card-has-image .card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card.card-has-image:hover .card-image-wrapper img {
    transform: scale(1.1); /* Zoom image slightly on hover */
}

.product-card.card-has-image .card-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* No overlay by default to show original image colors */
    pointer-events: none;
    z-index: 2;
    transition: var(--transition-smooth);
}

.product-card.card-has-image:hover .card-image-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.65) 100%); /* Subtle overlay on hover for text and button readability */
}

.product-card.card-has-image .card-content {
    position: relative;
    z-index: 3;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Make content transparent to clicks, except active buttons */
}

.product-card.card-has-image .card-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--white) !important; /* Force white text for readability on image backgrounds */
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), margin-bottom 0.4s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95); /* Strong shadow for readability on original color images */
}

.product-card.card-has-image:hover .card-content h3 {
    transform: scale(1.12) translateY(-10px);
}

.product-card.card-has-image .card-content .btn {
    pointer-events: auto; /* Enable clicks on the button */
    align-self: center;
    width: auto;
    padding: 0.65rem 1.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    background: var(--gradient-blue);
    color: var(--white);
    border: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s, box-shadow 0.3s;
}

.product-card.card-has-image:hover .card-content .btn {
    opacity: 1;
    transform: translateY(0);
}

.product-card.card-has-image .card-content .btn:hover {
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
    background: var(--primary-blue-glow);
}

/* News */
.news-list {
    margin-top: 2rem;
}

.news-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition-smooth);
    background: var(--light-bg);
}

.news-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.news-date {
    background: var(--gradient-red);
    color: white;
    padding: 0.8rem;
    border-radius: 0.75rem;
    text-align: center;
    min-width: 70px;
    box-shadow: var(--shadow-glow-red);
}

.news-date .day {
    display: block;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1;
}

.news-date .month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.2rem;
}

.news-info h4 {
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.news-info p {
    font-size: 0.9rem;
    color: #666;
}

.new-products-preview h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.new-product-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.new-product-card:hover {
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-5px);
}

.new-product-card img {
    width: 100%;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.new-product-card:hover img {
    transform: scale(1.03);
}

.new-product-card h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.new-product-card p {
    font-size: 0.9rem;
    color: #666;
}

.badge-new {
    display: inline-block;
    background: var(--gradient-red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    box-shadow: var(--shadow-glow-red);
}

/* Map & Form */
.map-form-section {
    background: var(--light-bg);
    position: relative;
}

.map-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    min-height: 500px;
}

#map {
    height: 100%;
    min-height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(0, 102, 255, 0.1);
}

.registration-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 35, 102, 0.15), 0 0 0 1px rgba(0, 35, 102, 0.05);
    border: 2px solid #d1d9e6;
    height: fit-content;
    position: relative;
    z-index: 10;
}

.registration-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #b8c2cc;
    border-radius: 0.85rem;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    background: #ffffff;
    color: var(--dark-gray);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--primary-blue-light);
    background: #fcfdfe;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-blue-glow);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1), var(--glow-blue);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Maintenance */
.maintenance-section {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.maintenance-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 68, 68, 0.15) 0%, transparent 60%);
    animation: glowPulse 5s ease-in-out infinite;
}

.maintenance-section .container {
    position: relative;
    z-index: 1;
}

.maintenance-section h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.maintenance-section h2 span {
    color: var(--primary-red-glow);
    text-shadow: var(--glow-red);
}

.maintenance-section p {
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
    box-shadow: var(--glow-red);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--primary-red-glow);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

.footer-col ul li i {
    color: var(--primary-blue-glow);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

/* Page Header */
.page-header {
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 1rem 0;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 35, 102, 0.9) 0%, rgba(0, 102, 255, 0.7) 100%);
}

.page-header.red-header::before {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.9) 0%, rgba(255, 68, 68, 0.7) 100%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header h1 span {
    color: var(--primary-red-glow);
    text-shadow: var(--glow-red);
}

.page-header p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.history-section {
    background: var(--white);
}

.history-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.history-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.iso-badge {
    background: var(--light-bg);
    padding: 1.5rem;
    border-left: 5px solid var(--primary-red);
    border-radius: 0 0.75rem 0.75rem 0;
    margin-top: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.iso-badge:hover {
    box-shadow: var(--shadow-glow-red);
    transform: translateX(5px);
}

.iso-badge strong {
    color: var(--primary-blue);
}

.ceo-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #001a4d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ceo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 68, 68, 0.1) 0%, transparent 50%);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ceo-image {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
}

.ceo-image img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.ceo-image:hover img {
    transform: scale(1.05);
}
/* ============================================
   EVENTS PAGE & CARDS
   ============================================ */
.events-grid-premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.event-card-premium {
    display: grid;
    grid-template-columns: 400px 1fr;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.event-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,35,102,0.1);
}

.event-image {
    position: relative;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
}

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

.event-card-premium:hover .event-image img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-red);
    color: white;
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
    z-index: 2;
}

.event-date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.event-year {
    font-weight: 800;
    color: var(--primary-blue);
    opacity: 0.15;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: -1rem;
}

.event-details h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.event-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex: 1;
}

/* Reminder Box */
.reminder-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-blue);
}

.reminder-box h5 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.reminder-form .reminder-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reminder-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.reminder-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.reminder-form .btn {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .event-card-premium {
        grid-template-columns: 1fr;
    }
    .event-image {
        height: 250px;
        min-height: auto;
    }
    .reminder-form .reminder-inputs {
        grid-template-columns: 1fr;
    }
}

.ceo-content h2 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.ceo-content h4 {
    color: var(--primary-red-glow);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-shadow: var(--glow-red);
}

.ceo-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 1rem;
}

.motto {
    font-size: 2rem;
    font-style: italic;
    margin-top: 2rem;
    color: var(--primary-red-glow);
    font-weight: 700;
    text-shadow: var(--glow-red);
    position: relative;
    display: inline-block;
}

.motto::before,
.motto::after {
    content: '"';
    font-size: 3rem;
    position: absolute;
    opacity: 0.3;
}

.motto::before {
    left: -25px;
    top: -10px;
}

.motto::after {
    right: -25px;
    bottom: -20px;
}

/* Products Page - Catalogue */
.products-page {
    background-color: #e0e0e0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding-top: 1rem;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.sidebar-title {
    background: var(--gradient-blue);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: block;
    box-shadow: var(--shadow-glow-blue);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu li:last-child {
    border-bottom: none;
}

.sidebar-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #444;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: var(--primary-red);
    color: var(--white);
    padding-left: 1.8rem;
    box-shadow: inset 4px 0 0 rgba(0,0,0,0.2);
}

.sidebar-footer {
    height: 8px;
    background: var(--gradient-blue);
    box-shadow: var(--shadow-glow-blue);
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .product-list-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.product-item {
    border: 1px solid #eee;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: white;
    position: relative;
}

.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    z-index: 1;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-blue);
    border-color: rgba(0, 102, 255, 0.2);
}

.product-item:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.product-img {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Ensure pseudo-element doesn't interfere */
.product-img::after {
    display: none;
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    z-index: 1;
    transition: var(--transition-smooth);
}

.product-img i {
    transition: var(--transition-smooth);
}

.product-item:hover .product-img i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

.product-item:hover .product-img img {
    transform: scale(1.03);
}

.product-info {
    padding: 1rem;
}

.product-tag {
    background: var(--gradient-red);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 2rem;
    font-size: 0.68rem;
    display: inline-block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow-red);
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--primary-blue);
}

.product-info p {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
}

.product-actions {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.8rem;
    flex-wrap: nowrap;
}

.product-actions .btn {
    padding: 0.45rem 0.45rem;
    font-size: 0.78rem;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

/* Rich text description preview in product cards */
.product-description-preview {
    color: #666;
    font-size: 0.82rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    max-height: 45px;
    overflow: hidden;
    position: relative;
}

.product-description-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(transparent, white);
}

/* Rich text HTML rendering in product descriptions */
.product-description-preview h1,
.product-description-preview h2,
.product-description-preview h3,
.qv-desc h1,
.qv-desc h2,
.qv-desc h3 {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.product-description-preview ul,
.product-description-preview ol,
.qv-desc ul,
.qv-desc ol {
    padding-left: 1.5rem;
    list-style: initial;
    margin: 0.5rem 0;
}

.product-description-preview p,
.qv-desc p {
    margin-bottom: 0.5rem;
    color: #555;
}

.qv-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.qv-desc strong { color: var(--primary-blue); }
.qv-desc em { color: #555; }
.qv-desc code {
    background: #f0f4f8;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.qv-desc img {
    max-width: 100%;
    border-radius: 8px;
    margin: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}


/* Inquiry Basket */
.inquiry-basket {
    position: relative;
    margin-left: 1.5rem;
}

.inquiry-basket a {
    font-size: 1.4rem;
    color: var(--primary-blue);
    position: relative;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.inquiry-basket a:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.basket-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--gradient-red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    border: 2px solid white;
    box-shadow: var(--shadow-glow-red);
    transition: var(--transition-bounce);
}

.basket-count.pulse {
    animation: basketPulse 0.5s ease;
}

@keyframes basketPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes basket-blink {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        color: var(--primary-red);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes basket-shake {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    20% {
        transform: translateX(-4px) rotate(-3deg);
    }

    40% {
        transform: translateX(4px) rotate(3deg);
    }

    60% {
        transform: translateX(-4px) rotate(-3deg);
    }

    80% {
        transform: translateX(4px) rotate(3deg);
    }
}

.basket-alert {
    animation: basket-blink 0.3s ease-in-out 3, basket-shake 0.4s ease-in-out 2;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: auto;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 0;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 650px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-40px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.close-modal {
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: var(--transition-smooth);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-red);
    background: rgba(211, 47, 47, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.inquiry-items-list {
    margin-bottom: 2rem;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 10px;
}

.inquiry-items-list::-webkit-scrollbar {
    width: 6px;
}

.inquiry-items-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.inquiry-items-list::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 3px;
}

.inquiry-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.2rem;
    background: var(--light-bg);
    border-radius: 0.75rem;
    margin-bottom: 0.6rem;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition-smooth);
    animation: itemSlideIn 0.3s ease-out;
}

@keyframes itemSlideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.inquiry-item:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.inquiry-item .item-number {
    background: var(--gradient-blue);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.8rem;
    box-shadow: var(--shadow-glow-blue);
    flex-shrink: 0;
}

.inquiry-item .item-name {
    flex: 1;
    font-weight: 600;
    color: var(--dark-gray);
}

.inquiry-item .remove-item {
    color: var(--primary-red);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
    background: transparent;
    border: none;
}

.inquiry-item .remove-item:hover {
    background: rgba(211, 47, 47, 0.1);
    box-shadow: var(--shadow-glow-red);
}

.empty-msg {
    text-align: center;
    color: #888;
    padding: 3rem 0;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.empty-msg i {
    font-size: 3rem;
    color: #ddd;
}

.inquiry-form {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.inquiry-form .form-group {
    margin-bottom: 1.2rem;
}

.inquiry-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 0.4rem;
}

.inquiry-form input,
.inquiry-form textarea {
    background: #ffffff;
    border: 2px solid #b8c2cc;
    border-radius: 0.85rem;
    padding: 0.9rem 1.1rem;
    width: 100%;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    color: var(--dark-gray);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--primary-blue-glow);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.15);
    background: white;
    outline: none;
}

.inquiry-form input:hover,
.inquiry-form textarea:hover {
    border-color: #99aab5;
}

/* Contact Page */
.contact-grid-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 2px solid #d1d9e6;
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 35, 102, 0.12);
    border-color: var(--primary-blue-glow);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-8px);
}

.contact-card:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-bg);
    color: var(--primary-blue);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover .contact-icon {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.1) rotate(-5deg);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.contact-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-card a {
    color: var(--primary-blue);
}

.contact-card a:hover {
    color: var(--primary-red);
}

/* Services */
.service-list {
    margin-top: 2rem;
}

.service-item {
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: var(--transition-smooth);
    background: var(--light-bg);
}

.service-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.service-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.service-icon.blue {
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-blue);
}

.service-icon.red {
    background: rgba(255, 68, 68, 0.1);
    color: var(--primary-red);
}

.service-item:hover .service-icon.blue {
    background: var(--gradient-blue);
    color: white;
    box-shadow: var(--shadow-glow-blue);
    transform: scale(1.1);
}

.service-item:hover .service-icon.red {
    background: var(--gradient-red);
    color: white;
    box-shadow: var(--shadow-glow-red);
    transform: scale(1.1);
}

.service-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.service-support-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    border: 2px dashed #ccc;
    transition: var(--transition-smooth);
}

.service-support-card:hover {
    border-color: var(--primary-blue-glow);
    background: white;
    box-shadow: var(--shadow-glow-blue);
}

.service-support-card i {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
}

.service-support-card:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.4));
}

.service-support-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.service-support-card p {
    margin: 1rem 0 1.5rem;
    color: #666;
}

/* Distributors */
.benefit-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.benefit-item:hover {
    background: var(--light-bg);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-red);
    margin-top: 0.3rem;
    font-size: 1.2rem;
    filter: drop-shadow(0 0 4px rgba(255, 68, 68, 0.4));
}

.benefit-item strong {
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.3rem;
}

/* Stats Section Redesign */
.stats-section {
    background: var(--gradient-blue);
    color: white;
    padding: 1.5rem 0;
    /* Significantly reduced from 4rem */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 50%, rgba(255, 68, 68, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 50%, rgba(0, 102, 255, 0.2) 0%, transparent 45%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.stat-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red-glow);
    text-shadow: var(--glow-red);
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
    opacity: 1;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 0.15rem;
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    max-width: 150px;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.trust-badge i {
    color: var(--primary-red-glow);
}

.section-trust-badges .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.4rem;
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-bounce);
}

.section-trust-badges .trust-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-glow-blue);
    border-color: var(--primary-blue-glow);
    background: var(--white);
}

.section-trust-badges .trust-badge i {
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 68, 68, 0.2));
}

/* Premium Blue Trust Strip */
.trust-strip-premium {
    position: relative;
    padding: 0.55rem 0;
    background: linear-gradient(125deg, #000814 0%, #001233 28%, #002366 55%, #003d99 85%, #004db3 100%);
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 6px 24px rgba(0, 35, 102, 0.28);
}

.trust-strip-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 140% at 15% 50%, rgba(0, 102, 255, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 55% 120% at 85% 50%, rgba(77, 148, 255, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 50% 120%, rgba(255, 68, 68, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.trust-strip-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 200, 120, 0.35) 20%,
        rgba(120, 220, 255, 0.85) 50%,
        rgba(255, 200, 120, 0.35) 80%,
        transparent 100%
    );
    z-index: 2;
}

.trust-strip-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
    pointer-events: none;
    z-index: 0;
}

.trust-strip-shine {
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -20%;
    width: 45%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.04) 42%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.04) 58%,
        transparent 100%
    );
    animation: trustStripShimmer 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes trustStripShimmer {
    0%, 100% {
        transform: translateX(-120%) skewX(-12deg);
        opacity: 0.6;
    }
    50% {
        transform: translateX(280%) skewX(-12deg);
        opacity: 1;
    }
}

.trust-strip-premium .container {
    position: relative;
    z-index: 2;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.trust-strip-premium .trust-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem 0.6rem;
    justify-content: center;
    align-items: center;
}

.trust-strip-premium .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.75rem 0.32rem 0.32rem;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    white-space: nowrap;
    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                background 0.4s ease;
    position: relative;
    overflow: hidden;
}

.trust-strip-premium .trust-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.trust-strip-premium .trust-badge:hover {
    transform: translateY(-2px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(77, 180, 255, 0.5);
    box-shadow:
        0 6px 18px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(0, 180, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.trust-strip-premium .trust-badge:hover::before {
    opacity: 1;
}

.trust-strip-premium .trust-badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    min-width: 1.45rem;
    border-radius: 50%;
    font-size: 0.65rem;
    color: #fff;
    background: linear-gradient(145deg, #ff5555 0%, var(--primary-red) 50%, #b71c1c 100%);
    box-shadow:
        0 0 10px rgba(255, 68, 68, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
    filter: none;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
}

.trust-strip-premium .trust-badge:hover i {
    transform: scale(1.05) rotate(-3deg);
    box-shadow:
        0 0 14px rgba(255, 68, 68, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.trust-strip-premium .trust-badge span {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.trust-strip-premium .trust-badges.reveal.active .trust-badge {
    animation: trustBadgeFadeIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-strip-premium .trust-badge:nth-child(1) { animation-delay: 0.05s; }
.trust-strip-premium .trust-badge:nth-child(2) { animation-delay: 0.12s; }
.trust-strip-premium .trust-badge:nth-child(3) { animation-delay: 0.19s; }
.trust-strip-premium .trust-badge:nth-child(4) { animation-delay: 0.26s; }

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

@media (max-width: 992px) {
    .trust-strip-premium {
        padding: 0.5rem 0;
    }

    .trust-strip-premium .trust-badges {
        gap: 0.45rem;
    }

    .trust-strip-premium .trust-badge {
        font-size: 0.72rem;
        padding: 0.3rem 0.65rem 0.3rem 0.3rem;
    }
}

@media (max-width: 768px) and (min-width: 577px) {
    .trust-strip-premium .trust-badges {
        gap: 0.4rem;
    }

    .trust-strip-premium .trust-badge {
        font-size: 0.7rem;
        padding: 0.28rem 0.6rem 0.28rem 0.28rem;
        gap: 0.4rem;
    }

    .trust-strip-premium .trust-badge i {
        width: 1.35rem;
        height: 1.35rem;
        min-width: 1.35rem;
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .trust-strip-premium .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .trust-strip-premium .trust-badges {
        gap: 0.35rem;
        justify-content: center;
    }

    .trust-strip-premium .trust-badge {
        flex: 0 1 auto;
    }
}

@media (max-width: 576px) {
    .trust-strip-premium {
        padding: 0.45rem 0;
    }

    .trust-strip-premium .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .trust-strip-premium .trust-badges {
        gap: 0.35rem;
        justify-content: center;
    }

    .trust-strip-premium .trust-badge {
        flex: 0 1 auto;
        min-width: 0;
        font-size: 0.58rem;
        padding: 0.28rem 0.4rem 0.28rem 0.28rem;
        gap: 0.28rem;
    }

    .trust-strip-premium .trust-badge i {
        width: 1.2rem;
        height: 1.2rem;
        min-width: 1.2rem;
        font-size: 0.52rem;
    }

    .trust-strip-premium .trust-badge span {
        line-height: 1.1;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .trust-strip-premium .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .trust-strip-premium .trust-badges {
        gap: 0.28rem;
    }

    .trust-strip-premium .trust-badge {
        font-size: 0.54rem;
        padding: 0.24rem 0.32rem 0.24rem 0.24rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-strip-shine {
        animation: none;
    }

    .trust-strip-premium .trust-badges.reveal.active .trust-badge {
        animation: none;
    }
}

/* Premium Testimonials Section */
.testimonials-section {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 10%, rgba(0, 102, 255, 0.03) 0%, transparent 40%),
                radial-gradient(circle at 90% 90%, rgba(255, 68, 68, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 35, 102, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 35, 102, 0.1);
    border-color: var(--primary-blue-glow);
}

.testimonial-card::after {
    content: '\f10e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 3.5rem;
    color: var(--primary-blue);
    opacity: 0.05;
    transition: var(--transition-smooth);
}

.testimonial-card:hover::after {
    opacity: 0.1;
    transform: rotate(-10deg) scale(1.1);
}

.testimonial-stars {
    color: #FFB300;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border-top: 1px solid #f0f4f8;
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1.15rem;
    color: var(--primary-blue);
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 102, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow-blue);
}

.feature-box:hover::before {
    transform: scaleX(1);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.feature-box:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.feature-box h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.stagger-children>* {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children>#viewMoreContainer {
    opacity: 1 !important;
    transform: none !important;
}

.stagger-children.active>*:nth-child(1) {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(2) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(3) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(4) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(5) {
    transition-delay: 0.5s;
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.active>*:nth-child(6) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* Toast */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 4000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 400px;
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.toast.success {
    border-left-color: #22c55e;
}

.toast.error {
    border-left-color: var(--primary-red);
}

.toast.info {
    border-left-color: var(--primary-blue-glow);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.removing {
    animation: toastSlideOut 0.3s ease forwards;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast.success .toast-icon {
    color: #22c55e;
}

.toast.error .toast-icon {
    color: var(--primary-red);
}

.toast.info .toast-icon {
    color: var(--primary-blue-glow);
}

.toast-message {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.2rem;
    transition: var(--transition-smooth);
}

.toast-close:hover {
    color: var(--dark-gray);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow-blue);
    transition: var(--transition-smooth);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-blue-strong);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .sidebar-menu {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .product-list-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {

    .profile-grid,
    .map-grid,
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 1.5rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-lg);
        gap: 0;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .topbar .container {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .topbar .contact-info {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .topbar .contact-info span {
        margin-left: 0 !important;
        justify-content: center;
        font-size: 0.75rem;
    }

    .topbar .social-links {
        justify-content: center;
        width: 100%;
        gap: 0.65rem;
    }

    .topbar .social-links a {
        margin-left: 0 !important;
    }

    .inquiry-basket {
        margin-left: auto;
        margin-right: 1rem;
    }

    .ceo-grid {
        grid-template-columns: 1fr;
    }

    .ceo-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .product-list-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .map-grid {
        grid-template-columns: 1fr;
    }

    #map {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .contact-grid-info {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .toast-container {
        left: 1rem;
        right: 1rem;
        top: auto;
        bottom: 1rem;
    }

    .toast {
        min-width: auto;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .product-list-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-blue-glow);
    outline-offset: 2px;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue-glow);
}

/* Selection */
::selection {
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-blue);
}

::-moz-selection {
    background: rgba(0, 102, 255, 0.2);
    color: var(--primary-blue);
}

/* =========================================
   NEW PRODUCT MANAGEMENT FEATURES
   ========================================= */

/* Filter Bar */
.products-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 102, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-input {
    padding: 0.6rem 1rem;
    border: 2px solid #eee;
    border-radius: 0.5rem;
    outline: none;
    font-family: inherit;
    transition: var(--transition-smooth);
    width: 100%;
}

.filter-input:focus {
    border-color: var(--primary-blue-glow);
}

.sidebar-search {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
}

/* Stock Badge */
.stock-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stock-in {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.stock-low {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.stock-out {
    background: rgba(211, 47, 47, 0.1);
    color: var(--primary-red);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* Lightbox Gallery */
.lightbox-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 0.5rem;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: 0.2s;
}

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

.clickable-img {
    cursor: pointer;
}

/* Quick View Modal - Professional & Premium */
.quick-view-content {
    max-width: 950px;
    padding: 0;
    border-radius: 2rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    opacity: 0;
    transform: scale(0.9) translateY(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quick-view-content.animate-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.quick-view-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--dark-gray);
    border: 1px solid #eee;
    cursor: pointer;
    font-size: 1.8rem;
    transition: var(--transition-bounce);
    line-height: 1;
}

.quick-view-close:hover {
    color: var(--white);
    background: var(--primary-red);
    transform: rotate(180deg) scale(1.1);
    box-shadow: var(--glow-red);
    border-color: var(--primary-red);
}

.quick-view-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.qv-image {
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    border-right: 1px solid #f1f5f9;
}

.qv-share-image-top {
    position: absolute;
    top: 15px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.qv-share-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qv-image img {
    max-width: 100%;
    max-height: 450px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;
}

.qv-image:hover img {
    transform: scale(1.05);
}

.qv-zoom-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 35, 102, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    backdrop-filter: blur(4px);
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
}

.qv-image:hover .qv-zoom-badge {
    opacity: 1;
    transform: translateY(0);
}

.qv-details {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.qv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.qv-title {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.qv-code {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.qv-code code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--primary-red);
}

/* Tabs */
.qv-tabs {
    display: flex;
    gap: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 1.5rem;
}

.qv-tab-btn {
    background: none;
    border: none;
    padding: 0.75rem 0;
    font-weight: 700;
    color: #94a3b8;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qv-tab-btn.active {
    color: var(--primary-blue);
}

.qv-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue-glow);
    transition: 0.3s;
}

.qv-tab-btn.active::after {
    width: 100%;
}

/* Quick View Tab Arrow Indicator */
.qv-tab-arrow-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.15rem;
    cursor: pointer;
    user-select: none;
    align-self: center;
    margin: 0 -0.5rem;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qv-tab-btn.active + .qv-tab-arrow-indicator {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    animation: qvArrowBounce 1.5s infinite ease-in-out;
}

.qv-tab-arrow-indicator:hover {
    color: var(--primary-red-glow);
    transform: scale(1.2) translateX(3px) !important;
    filter: drop-shadow(0 0 8px var(--primary-red-glow));
}

@keyframes qvArrowBounce {
    0%, 100% {
        transform: translateX(0);
        filter: drop-shadow(0 0 2px rgba(211, 47, 47, 0.3));
    }
    50% {
        transform: translateX(6px);
        filter: drop-shadow(0 0 8px rgba(255, 68, 68, 0.8));
    }
}

.qv-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.qv-tab-content.active {
    display: block;
}

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

.qv-desc-text {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
}

.qv-features-list {
    margin-bottom: 2rem;
}

.qv-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 1rem;
}

.qv-features-list i {
    color: #22c55e;
    margin-top: 4px;
}

.qv-actions {
    margin-top: auto;
    margin-bottom: 0.5rem;
}

.qv-actions .btn {
    width: 100%;
    height: 44px;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
}

/* Social Share */
.qv-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.qv-share span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

.share-btns {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition-bounce);
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.share-btn.whatsapp { background: #25D366; }
.share-btn.facebook { background: #1877F2; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.email { background: #64748b; }

/* Quick View Footer (Related) */
.quick-view-footer {
    background: #f8fafc;
    padding: 2.5rem 3rem;
    border-top: 1px solid #f1f5f9;
}

.related-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    padding-left: 1rem;
}

.related-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.related-item {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.related-item:hover {
    border-color: var(--primary-blue-glow);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.related-item img {
    height: 80px;
    width: auto;
    margin: 0 auto 0.75rem;
    object-fit: contain;
}

.related-item h5 {
    font-size: 0.85rem;
    color: var(--dark-gray);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .quick-view-content {
        max-width: 700px;
    }
    
    .quick-view-grid {
        grid-template-columns: 1fr;
    }

    .qv-image {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid #f1f5f9;
    }

    .qv-image img {
        max-height: 300px;
    }

    .qv-details {
        padding: 2rem;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .quick-view-content {
        margin: 5% auto;
        border-radius: 1.5rem;
    }

    .qv-title {
        font-size: 1.8rem;
    }

    .qv-details {
        padding: 1.5rem;
    }

    .quick-view-footer {
        padding: 1.5rem;
    }

    .share-btns {
        gap: 0.5rem;
    }

    .share-btn {
        width: 32px;
        height: 32px;
    }
}

/* =========================================
   PREMIUM NEW PRODUCTS STYLING
   ========================================= */
.new-products-preview {
    margin-top: 2rem;
}

#newProductsContainer {
    position: relative;
    width: 100%;
}

.new-products-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 1.5rem;
    padding: 8px 4px;
}

.new-products-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.new-products-slider-track .new-product-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.new-products-slider-track .new-product-card:hover {
    transform: translateY(-4px);
}

.np-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.np-slider-btn {
    background: var(--white);
    border: 2px solid rgba(0, 35, 102, 0.15);
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.np-slider-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    transform: scale(1.1);
    box-shadow: 0 6px 12px var(--primary-blue-glow);
}

.np-slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.np-slider-dot {
    width: 10px;
    height: 10px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 35, 102, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.np-slider-dot.active {
    background: var(--primary-red);
    width: 24px;
    border-radius: 5px;
    box-shadow: var(--glow-red);
}

.new-product-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid rgba(0, 35, 102, 0.15); /* Increased visibility of initial border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

.new-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 35, 102, 0.15), var(--shadow-glow-blue);
    border-color: var(--primary-blue-glow);
}

/* Premium Border Effect - Sharp & Vibrant Outline */
.new-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.5rem;
    padding: 2.5px; /* Slightly thicker outline */
    background: linear-gradient(135deg, var(--primary-blue-glow), var(--primary-red-glow), var(--primary-blue-glow));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3; /* More visible by default */
    transition: var(--transition-smooth);
    animation: borderRotate 6s linear infinite;
}

.new-product-card:hover::before {
    opacity: 1;
    padding: 3px; /* Pop the outline on hover */
}

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

.badge-new {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-red);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: var(--glow-red);
    letter-spacing: 1px;
}

.new-prod-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1f5f9;
}

.new-prod-image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: var(--transition-bounce);
}

.new-product-card:hover .new-prod-image-wrapper img {
    transform: scale(1.1) rotate(2deg);
}

.new-prod-content h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.new-prod-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
     .new-prod-image-wrapper {
          height: auto;
     }
  }

/* ============================================
    NEW PRODUCTS PAGE - ARTICLE STYLE
    ============================================ */
.new-products-article-section {
     background: var(--white);
     padding: 5rem 0;
}

.new-products-article-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--gradient-red);
     box-shadow: var(--glow-red);
}

/* Article Card */
.np-article {
     background: var(--card-bg);
     border-radius: 1.25rem;
     overflow: hidden;
     box-shadow: var(--shadow-md);
     margin-bottom: 3rem;
     border: 1px solid rgba(0, 102, 255, 0.08);
     transition: var(--transition-smooth);
}

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

/* Article Header */
.np-article-header {
     padding: 2rem 2.5rem 0;
     position: relative;
}

.badge-new-article {
     position: absolute;
     top: 1.25rem;
     right: 1.5rem;
     font-size: 0.7rem;
     padding: 0.3rem 0.8rem;
     border-radius: 2rem;
     background: var(--gradient-red);
     color: white;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: var(--shadow-glow-red);
     z-index: 2;
}

.np-article-title {
     font-size: 1.8rem;
     color: var(--primary-blue);
     margin-bottom: 0.5rem;
     font-weight: 800;
     line-height: 1.3;
}

/* Article Media Section - Image + Video Side by Side */
.np-article-media {
     display: grid;
     grid-template-columns: repeat(2, minmax(0, 1fr));
     gap: 0.875rem;
     padding: 1rem 1.25rem;
     align-items: stretch;
}

.np-article-image-wrapper {
     border-radius: 1rem;
     overflow: hidden;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     aspect-ratio: 1 / 1;
     max-width: 350px;
     width: 100%;
     margin: 0 auto;
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.np-article-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
     display: block;
}

.article-video {
     border-radius: 1rem;
     overflow: hidden;
     background: var(--dark);
     aspect-ratio: 16 / 10;
     max-height: 338px;
     min-height: 234px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid rgba(255,255,255,0.1);
     box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.article-video iframe,
.article-video video {
     width: 100%;
     height: 100%;
     min-height: 234px;
     max-height: 338px;
     border: none;
     border-radius: 1rem;
     display: block;
}

.video-placeholder {
     text-align: center;
     color: rgba(255,255,255,0.4);
     padding: 1rem;
     min-height: 234px;
     max-height: 338px;
}

.video-placeholder i {
     font-size: 2.5rem;
     display: block;
     margin-bottom: 0.5rem;
}

.video-placeholder span {
     font-size: 0.95rem;
}

.video-placeholder-link {
     text-decoration: none;
}

.article-video.placeholder {
     background: var(--light-bg);
     border: 1px dashed rgba(0,102,255,0.2);
}

.article-video.placeholder .video-placeholder {
     color: #999;
}

.article-video.placeholder .video-placeholder i {
     color: var(--primary-blue);
     opacity: 0.4;
}

/* Article Tags */
.np-article-tags {
     padding: 0 2.5rem;
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-top: 0.5rem;
}

/* Article Description Body */
.np-article-body {
     padding: 1.5rem 2.5rem 2rem;
     color: #444;
     font-size: 1rem;
     line-height: 1.9;
}

.np-article-body p {
     margin-bottom: 1rem;
     line-height: 1.8;
     color: #444;
}

.np-article-body h1,
.np-article-body h2,
.np-article-body h3,
.np-article-body h4 {
     color: var(--primary-blue);
     margin: 1.5rem 0 0.75rem;
     font-weight: 700;
     line-height: 1.3;
}

.np-article-body h1 { font-size: 1.6rem; }
.np-article-body h2 { font-size: 1.4rem; }
.np-article-body h3 { font-size: 1.2rem; }
.np-article-body h4 { font-size: 1.05rem; }

.np-article-body ul {
     list-style: none;
     padding: 0;
     margin: 1rem 0;
}

.np-article-body ul li {
     position: relative;
     padding: 0.4rem 0 0.4rem 1.5rem;
     color: #444;
     line-height: 1.6;
}

.np-article-body ul li::before {
     content: '\f00c';
     font-family: 'Font Awesome 6 Free';
     font-weight: 900;
     position: absolute;
     left: 0;
     color: var(--primary-red);
     font-size: 0.8rem;
     top: 0.55rem;
}

.np-article-body ol {
     padding-left: 1.5rem;
     margin: 1rem 0;
}

.np-article-body ol li {
     padding: 0.3rem 0;
     color: #444;
     line-height: 1.6;
}

.np-article-body strong {
     color: var(--primary-blue);
     font-weight: 600;
}

.np-article-body a {
     color: var(--primary-blue);
     text-decoration: underline;
}

/* Article Action */
.np-article-actions {
     padding: 1.5rem 2.5rem 2.5rem;
     text-align: center;
     border-top: 1px solid rgba(0,0,0,0.05);
}

.np-article-actions .btn {
     font-size: 1.05rem;
     padding: 0.8rem 2.5rem;
}

/* No Products Message */
.no-products-msg {
     text-align: center;
     padding: 5rem 2rem;
     color: #888;
}

.no-products-msg i {
     font-size: 4rem;
     color: #ddd;
     margin-bottom: 1.5rem;
     display: block;
}

.no-products-msg h3 {
     color: #888;
     margin-bottom: 0.5rem;
}

/* Article Loading */
.article-loading {
     text-align: center;
     padding: 5rem 2rem;
     color: #888;
}

.article-loading .spinner {
     width: 50px;
     height: 50px;
     border: 4px solid rgba(0, 102, 255, 0.1);
     border-top-color: var(--primary-blue-glow);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin: 0 auto 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
     .np-article-media {
         grid-template-columns: 1fr;
         padding: 0.875rem 1rem;
         gap: 0.75rem;
     }

     .np-article-image-wrapper {
          max-width: 100%;
          aspect-ratio: 1 / 1;
     }

     .article-video {
          max-height: 416px;
          aspect-ratio: 16 / 9;
     }

     .np-article-image-wrapper img {
          max-height: none;
     }

     .article-video iframe,
     .article-video video {
          max-height: 416px;
     }

     .np-article-title {
          font-size: 1.5rem;
     }
}

@media (max-width: 768px) {
     .np-article-header {
          padding: 1.5rem 1.25rem 0;
     }

     .np-article-media {
          padding: 0.75rem 1rem;
          gap: 0.625rem;
     }

     .np-article-tags {
          padding: 0 1.25rem;
     }

     .np-article-body {
          padding: 1.25rem;
          font-size: 0.92rem;
     }

     .np-article-actions {
          padding: 1.25rem;
     }

     .np-article-image-wrapper {
          aspect-ratio: 1 / 1;
          max-height: none;
          min-height: auto;
     }

     .np-article-image-wrapper img {
          min-height: auto;
          max-height: none;
     }

     .article-video {
          max-height: 312px;
          min-height: 208px;
     }

     .article-video iframe,
     .article-video video {
          min-height: 208px;
          max-height: 312px;
     }

     .np-article-title {
          font-size: 1.3rem;
     }
}

@media (max-width: 480px) {
     .np-article-media {
          padding: 0.625rem 0.75rem;
     }

     .np-article-image-wrapper {
          max-height: none;
          min-height: auto;
     }

     .article-video {
          max-height: 260px;
          min-height: 182px;
     }
}

.new-products-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--gradient-red);
     box-shadow: var(--glow-red);
}

.new-products-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
}

.new-product-card {
     background: var(--card-bg);
     border-radius: 1.25rem;
     overflow: hidden;
     box-shadow: var(--shadow-md);
     transition: var(--transition-smooth);
     border: 1px solid rgba(0, 102, 255, 0.08);
     position: relative;
}

.new-product-card:hover {
     transform: translateY(-10px);
     box-shadow: var(--shadow-glow-blue);
     border-color: rgba(0, 102, 255, 0.2);
}

.new-product-card .badge-new {
     position: absolute;
     top: 1rem;
     right: 1rem;
     z-index: 2;
     font-size: 0.7rem;
     padding: 0.3rem 0.7rem;
     border-radius: 2rem;
     background: var(--gradient-red);
     color: white;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: var(--shadow-glow-red);
}

.new-prod-image-wrapper {
     width: 100%;
     aspect-ratio: 1 / 1;
     overflow: hidden;
     position: relative;
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     display: flex;
     align-items: center;
     justify-content: center;
}

.new-prod-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
}

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

.new-prod-content {
     padding: 1.5rem;
}

.new-prod-content h4 {
     font-size: 1.2rem;
     color: var(--primary-blue);
     margin-bottom: 0.75rem;
     font-weight: 700;
}

.new-prod-content > p {
     color: #555;
     font-size: 0.92rem;
     line-height: 1.6;
     margin-bottom: 1rem;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
}

.new-prod-features {
     display: flex;
     flex-wrap: wrap;
     gap: 0.5rem;
     margin-bottom: 1rem;
}

.feature-tag {
     display: inline-flex;
     align-items: center;
     gap: 0.35rem;
     background: rgba(0, 102, 255, 0.06);
     color: var(--primary-blue);
     padding: 0.3rem 0.7rem;
     border-radius: 2rem;
     font-size: 0.78rem;
     font-weight: 500;
     border: 1px solid rgba(0, 102, 255, 0.1);
}

.feature-tag i {
     font-size: 0.65rem;
     color: var(--primary-red);
}

.learn-more-btn {
     background: var(--gradient-blue) !important;
     color: white !important;
     border: none !important;
     box-shadow: var(--shadow-glow-blue);
}

.learn-more-btn:hover {
     transform: translateY(-2px);
     box-shadow: var(--glow-blue-strong);
}

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

.inquire-btn:hover {
     background: var(--primary-red) !important;
     color: white !important;
     box-shadow: var(--shadow-glow-red);
}

/* Product Detail Modal */
.product-detail-modal {
     max-width: 900px;
     width: 95%;
}

.modal-product-image {
     border-radius: 1rem;
     overflow: hidden;
}

.modal-product-image img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: 1rem;
}

.modal-product-info h2 {
     margin-bottom: 0.5rem;
}

.modal-product-info p {
     line-height: 1.8;
}

/* Inquiry Section */
.inquiry-section {
     background: var(--light-bg);
     padding: 5rem 0;
     position: relative;
}

.inquiry-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: var(--gradient-red);
     box-shadow: var(--glow-red);
}

.inquiry-form-wrapper {
     display: grid;
     grid-template-columns: 1fr 1.2fr;
     gap: 3rem;
     margin-top: 3rem;
}

.inquiry-info-card {
     background: var(--white);
     padding: 2.5rem;
     border-radius: 1.25rem;
     box-shadow: var(--shadow-md);
     border: 1px solid rgba(0, 102, 255, 0.08);
     height: fit-content;
}

.inquiry-info-card h3 {
     font-size: 1.3rem;
     margin-bottom: 1.5rem;
     color: var(--primary-blue);
}

.inquiry-features-list {
     list-style: none;
     padding: 0;
     margin-bottom: 2rem;
}

.inquiry-features-list li {
     padding: 0.6rem 0;
     font-size: 0.95rem;
     color: var(--dark-gray);
     display: flex;
     align-items: center;
     gap: 0.7rem;
}

.inquiry-features-list li i {
     color: var(--primary-red);
     font-size: 0.85rem;
}

.inquiry-contact-info {
     background: var(--light-bg);
     border-radius: 0.75rem;
     padding: 1.25rem;
}

.inquiry-contact-info h4 {
     color: var(--primary-red);
     margin-bottom: 0.75rem;
     font-size: 1rem;
}

.inquiry-contact-info p {
     font-size: 0.9rem;
     color: #555;
     margin-bottom: 0.4rem;
}

.inquiry-contact-info a {
     color: var(--primary-blue);
     text-decoration: none;
     transition: var(--transition-smooth);
}

.inquiry-contact-info a:hover {
     color: var(--primary-red);
     text-decoration: underline;
}

.inquiry-form-card {
     background: var(--white);
     padding: 2.5rem;
     border-radius: 1.25rem;
     box-shadow: var(--shadow-md);
     border: 1px solid rgba(0, 102, 255, 0.08);
}

.inquiry-form-card h3 {
     font-size: 1.3rem;
     margin-bottom: 1.5rem;
     color: var(--primary-blue);
}

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

.btn-glow:hover {
     box-shadow: var(--glow-blue-strong);
     transform: translateY(-3px);
}

/* New Products Stats */
.new-products-stats {
     background: var(--gradient-blue);
     padding: 4rem 0;
     position: relative;
     overflow: hidden;
}

.new-products-stats::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 50% 50%, rgba(255, 68, 68, 0.1) 0%, transparent 60%);
}

.new-products-stats .container {
     position: relative;
     z-index: 1;
}

.new-products-stats h2 {
     color: white;
     text-align: center;
     margin-bottom: 3rem;
}

.new-products-stats .stat-icon {
     color: var(--primary-red-glow);
     filter: drop-shadow(0 0 6px rgba(255, 68, 68, 0.5));
}

.new-products-stats .stat-label {
     color: rgba(255, 255, 255, 0.85);
}

/* Loading spinner for new products page */
.loading-spinner {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
}

.loading-spinner .spinner {
     width: 50px;
     height: 50px;
     border: 4px solid rgba(0, 102, 255, 0.1);
     border-top-color: var(--primary-blue-glow);
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

/* Modal close button for product detail */
.product-detail-modal .close-modal {
     position: absolute;
     top: 1rem;
     right: 1rem;
     font-size: 1.8rem;
     color: #999;
     cursor: pointer;
     transition: var(--transition-smooth);
     z-index: 10;
     background: none;
     border: none;
     padding: 0.25rem;
     line-height: 1;
}

.product-detail-modal .close-modal:hover {
     color: var(--primary-red);
     transform: rotate(90deg);
}

/* Responsive for New Products Page */
@media (max-width: 992px) {
     .inquiry-form-wrapper {
         grid-template-columns: 1fr;
     }

     .new-products-grid {
         grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
     }

     .modal-product-info {
         margin-top: 1.5rem;
     }
}

@media (max-width: 768px) {
     .new-products-grid {
         grid-template-columns: 1fr;
     }

     .new-prod-image-wrapper {
         height: 200px;
     }

     .inquiry-info-card,
     .inquiry-form-card {
         padding: 1.5rem;
     }
}

/* Empty state */
.empty-state-new {
     grid-column: 1 / -1;
     text-align: center;
     padding: 4rem 2rem;
     color: #888;
}

.empty-state-new i {
     font-size: 4rem;
     color: #ddd;
     margin-bottom: 1rem;
     display: block;
}

/* Kurdson Home Slider — nav controls on small screens */
@media (max-width: 480px) {
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 25px;
    }
}

/* ============================================
   PREMIUM PROMO CARD STYLES
   ============================================ */
.profile-promo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
}

.profile-image-fallback img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.promo-card-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg), var(--shadow-glow-blue);
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateZ(0);
}

.promo-card-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.promo-card-wrapper.only-image::after {
    display: none;
}

.promo-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card-wrapper:hover .promo-media {
    transform: scale(1.05);
}

.promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 3;
    color: var(--white);
}

.promo-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--gradient-red);
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow-red);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(211, 47, 47, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 20px rgba(211, 47, 47, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(211, 47, 47, 0.4); }
}

.promo-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    max-width: 80%;
}

.promo-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.promo-btn-wrap {
    display: flex;
    gap: 1rem;
}

/* Glassmorphism elements */
.promo-glass-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.25rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    animation: float 4s ease-in-out infinite;
}

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

.promo-glass-overlay i {
    font-size: 1.5rem;
    color: var(--primary-red-glow);
}

.promo-glass-overlay span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .promo-card-wrapper {
        aspect-ratio: 4 / 3;
        border-radius: 1.5rem;
    }
    .promo-content {
        padding: 2rem;
    }
    .promo-title { max-width: 100%; }
    .promo-subtitle { max-width: 100%; }
    .promo-glass-overlay {
        top: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

/* ============================================
   HERO TWO-BOX LAYOUT (Slider + Featured)
   ============================================ */
.hero-two-box {
    height: auto !important;
    overflow: visible !important;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%) !important;
    padding: 0;
    display: block;
    position: relative;
}

.hero-two-box .hero-container {
    display: grid;
    grid-template-columns: 70% 30% !important;
    gap: 0;
    align-items: stretch;
    padding: 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.hero-two-box .hero-slider-column {
    position: relative;
    border-radius: 0 1.25rem 1.25rem 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: auto !important;
    aspect-ratio: 1344 / 500;
    background: #f0f4f8;
}

.hero-two-box .hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-two-box .hero-slide {
    pointer-events: none;
}

.hero-two-box .hero-slide.active {
    pointer-events: auto;
}

.hero-two-box .hero-featured-column {
    display: flex;
    height: 100%;
    padding: 0;
}

.featured-product-card {
    border-radius: 1.25rem 0 0 1.25rem;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 35, 102, 0.08);
    transition: var(--transition-smooth);
}

.featured-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-red);
}

.featured-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 35, 102, 0.15);
    border-color: rgba(0, 102, 255, 0.3);
}

.feat-img-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.featured-product-card:hover .feat-img {
    transform: scale(1.05);
}

.feat-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: featPulse 4s ease-in-out infinite;
}

@keyframes featPulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.4); opacity: 0.7; }
}

.feat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.feat-title {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Featured Product Overlay */
.feat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    z-index: 2;
}

.feat-overlay .feat-title {
    color: #fff;
    margin: 0;
    font-size: clamp(0.75rem, 2.2vw, 1.4rem);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.feat-desc {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.featured-product-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

/* Two-Box Slider Nav Adjustments */
.hero-two-box .slider-prev,
.hero-two-box .slider-next {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.hero-two-box .slider-dots {
    bottom: 20px;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-two-box .hero-container {
        grid-template-columns: 1fr !important;
    }

    .hero-two-box .hero-featured-column {
        display: none !important;
    }

    .hero-two-box .hero-slider-column {
        border-radius: 1rem;
    }
}

@media (max-width: 1100px) {
    .hero-two-box .hero-container {
        grid-template-columns: 1fr 340px;
        gap: 0;
        padding: 0;
    }
}

@media (max-width: 900px) {
    .hero-two-box {
        padding: 0;
    }

    .hero-two-box .hero-container {
        grid-template-columns: 1fr 260px;
        gap: 0;
        padding: 0;
    }

    .hero-two-box .hero-slider-column {
        height: 420px;
        border-radius: 0 0.75rem 0.75rem 0;
    }

    .hero-two-box .hero-featured-column {
        height: 420px;
    }

    .featured-product-card {
        padding: 0;
        border-radius: 0.75rem 0 0 0.75rem;
    }

    .feat-img-container {
        min-height: 200px;
    }

    .feat-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feat-desc {
        font-size: 0.82rem;
        margin-bottom: 0.75rem;
    }

    .featured-product-card .btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-two-box {
        padding: 0;
    }

    .hero-two-box .hero-container {
        grid-template-columns: 1fr 160px;
        gap: 0;
        padding: 0;
    }

    .hero-two-box .hero-slider-column {
        height: 300px;
        border-radius: 0 0.5rem 0.5rem 0;
    }

    .hero-two-box .hero-featured-column {
        height: 300px;
    }

    .featured-product-card {
        padding: 0;
        border-radius: 0.5rem 0 0 0.5rem;
    }

    .featured-product-card::before {
        height: 3px;
    }

    .featured-product-card:hover {
        transform: none;
    }

    .feat-img-container {
        min-height: 120px;
        margin-bottom: 0.5rem;
    }

    .feat-glow {
        width: 80px;
        height: 80px;
    }

    .feat-title {
        font-size: 0.82rem;
        margin-bottom: 0.35rem;
        letter-spacing: -0.01em;
    }

    .feat-desc {
        display: none;
    }

    .featured-product-card .btn {
        padding: 0.45rem 0.4rem;
        font-size: 0.68rem;
        gap: 0.2rem;
        border-radius: 0.5rem;
    }

    .featured-product-card .btn i {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-two-box .hero-container {
        grid-template-columns: 1fr 140px;
        gap: 0;
        padding: 0;
    }

    .hero-two-box .hero-slider-column {
        height: 240px;
        border-radius: 0 0.5rem 0.5rem 0;
    }

    .hero-two-box .hero-featured-column {
        height: 240px;
    }

    .feat-title {
        font-size: 0.75rem;
    }

    .featured-product-card {
        padding: 0;
        border-radius: 0.5rem 0 0 0.5rem;
    }
}


@media (max-width: 900px) {
    .hero-two-box {
        padding: 0;
    }

    .hero-two-box .hero-container {
        grid-template-columns: 1fr 260px;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .hero-two-box .hero-slider-column {
        height: 420px;
        border-radius: 1rem;
    }

    .hero-two-box .hero-featured-column {
        height: 420px;
    }

    .featured-product-card {
        padding: 0;
        border-radius: 1rem;
    }

    .feat-img-container {
        min-height: 200px;
    }

    .feat-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feat-desc {
        font-size: 0.82rem;
        margin-bottom: 0.75rem;
    }

    .featured-product-card .btn {
        padding: 0.65rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 640px) {
    .hero-two-box {
        padding: 0;
    }

    .hero-two-box .hero-container {
        grid-template-columns: 1fr 160px;
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .hero-two-box .hero-slider-column {
        height: 300px;
        border-radius: 0.75rem;
    }

    .hero-two-box .hero-featured-column {
        height: 300px;
    }

    .featured-product-card {
        padding: 0;
        border-radius: 0.75rem;
    }

    .featured-product-card::before {
        height: 3px;
    }

    .featured-product-card:hover {
        transform: none;
    }

    .feat-img-container {
        min-height: 120px;
        margin-bottom: 0.5rem;
    }

    .feat-glow {
        width: 80px;
        height: 80px;
    }

    .feat-title {
        font-size: 0.82rem;
        margin-bottom: 0.35rem;
        letter-spacing: -0.01em;
    }

    .feat-desc {
        display: none;
    }

    .featured-product-card .btn {
        padding: 0.45rem 0.4rem;
        font-size: 0.68rem;
        gap: 0.2rem;
        border-radius: 0.5rem;
    }

    .featured-product-card .btn i {
        display: none;
    }
}

@media (max-width: 400px) {
    .hero-two-box .hero-container {
        grid-template-columns: 1fr 140px;
        gap: 0.4rem;
        padding: 0.4rem;
    }

    .hero-two-box .hero-slider-column {
        height: 240px;
        border-radius: 0.5rem;
    }

    .hero-two-box .hero-featured-column {
        height: 240px;
    }

    .feat-title {
        font-size: 0.75rem;
    }

    .featured-product-card {
        padding: 0;
        border-radius: 0.5rem;
    }
}

/* ============================================
   ANTI-COPY & SECURITY MEASURES
   ============================================ */
body.secure-mode {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Allow selection inside inputs and textareas */
body.secure-mode input, 
body.secure-mode textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Secure all images */
img.secure-img,
.product-card img,
.product-item img,
.product-img img,
.lightbox-img,
.new-product-card img,
.featured-product-card img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

.product-card, .product-item, .new-product-card, .featured-product-card {
    /* Ensure clicks still work on the card itself, but not right click on images */
    pointer-events: auto;
}

/* ==========================================================================
   Legal Page Styling (Tabbed Layout)
   ========================================================================== */
.legal-container {
    padding: 5rem 0;
    background: var(--light-bg);
}

.legal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.legal-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-tab-btn {
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 1rem 1.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    border-radius: 0 4px 4px 0;
    font-family: 'Inter', sans-serif;
}

.legal-tab-btn:hover {
    color: var(--primary-blue);
    background: rgba(0, 35, 102, 0.02);
}

.legal-tab-btn.active {
    color: var(--primary-blue);
    background: rgba(0, 35, 102, 0.05);
    border-left-color: var(--primary-red);
}

.legal-content-panel {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 500px;
}

.legal-tab-content {
    display: none;
    animation: legalFadeIn 0.4s ease forwards;
}

.legal-tab-content.active {
    display: block;
}

.legal-tab-content h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(0, 35, 102, 0.1);
    padding-bottom: 0.5rem;
}

.legal-tab-content h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.legal-tab-content p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.98rem;
}

.legal-tab-content ul, .legal-tab-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-tab-content li {
    color: #444;
    line-height: 1.8;
    margin-bottom: 0.6rem;
    font-size: 0.98rem;
}

/* Responsive Styles for Legal Tabs */
@media (max-width: 992px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-sidebar {
        position: relative;
        top: 0;
        padding: 1rem;
    }
    
    .legal-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .legal-tab-btn {
        padding: 0.8rem 1.2rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 4px 4px 0 0;
    }
    
    .legal-tab-btn.active {
        border-bottom-color: var(--primary-red);
        border-left-color: transparent;
        background: rgba(0, 35, 102, 0.05);
    }
    
    .legal-content-panel {
        padding: 2rem 1.5rem;
    }
}

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