/* ================================
   مزارع السعدنى - التصميم الاحترافي
   ================================ */

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

:root {
    /* Primary Colors - Red Theme */
    --primary-color: #c41e3a;
    --primary-dark: #a01830;
    --primary-light: #e63950;
    --primary-lighter: #e8c359;

    /* Secondary Colors */
    --secondary-color: #2c2c2c;
    --secondary-light: #444444;

    /* Accent Colors */
    --accent-gold: #d4af37;
    --accent-cream: #f5f0e1;

    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gray-100: #f1f1f1;
    --gray-200: #e9e9e9;
    --gray-300: #d1d1d1;
    --gray-400: #999999;
    --gray-500: #777777;
    --gray-600: #555555;
    --dark-text: #2c2c2c;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    --gradient-light: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 30px rgba(196, 30, 58, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Font */
    --font-main: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

/* ================================
   Preloader
   ================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

.loader-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    animation: logoGlow 2s infinite;
}

@keyframes logoGlow {

    0%,
    100% {
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
        transform: scale(1);
    }

    50% {
        filter: brightness(0) invert(1) drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
        transform: scale(1.1);
    }
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--white);
    border-radius: 2px;
    animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

@keyframes bounce {

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

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

/* ================================
   Particles Background
   ================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-lighter);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 15s infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    90% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ================================
   Header
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

/* Premium Top Bar */
.header-top {
    background: #000000;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-info {
    display: flex;
    gap: 1.5rem;
}

.header-info a,
.header-info span {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    text-decoration: none;
}

.header-info a:hover {
    color: var(--accent-gold);
}

.header-info i {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.header-social {
    display: flex;
    gap: 0.8rem;
}

.header-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    transition: var(--transition-normal);
}

.header-social a:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

/* Premium Navbar */
.navbar {
    background: var(--white);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled .navbar {
    padding: 0.6rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
    overflow: hidden;
    padding: 8px;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-normal);
}

.logo:hover .logo-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.5);
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

/* Logo without background (for dark backgrounds) */
.header-scrolled .logo-img,
.footer .logo-img {
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--gray-500);
    letter-spacing: 1px;
}

/* Navigation Menu - Horizontal Layout */
.nav-menu {
    display: flex;
    gap: 0.2rem;
    /* Reduced from 0.3rem */
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    display: inline-block;
}

/* Premium Navigation Links */
.nav-link {
    padding: 0.5rem 0.6rem;
    /* Reduced from 0.6rem 1rem */
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.9rem;
    /* Reduced from 0.95rem */
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    /* Reduced from 0.4rem */
    position: relative;
    text-decoration: none;
    transition: var(--transition-normal);
}

.nav-link i {
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
    transition: var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(196, 30, 58, 0.05);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    opacity: 1;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Toggle - Premium */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(196, 30, 58, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.mobile-toggle:hover {
    background: rgba(196, 30, 58, 0.1);
    border-color: var(--primary-color);
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196, 30, 58, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-glow {
    animation: glow 2s infinite;
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(196, 30, 58, 0.4);
    }

    50% {
        box-shadow: 0 0 40px rgba(196, 30, 58, 0.6);
    }
}

/* ================================
   Hero Section
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, var(--primary-dark) 100%);
    z-index: -2;
}

/* Watermark Logo in Hero Background */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    transform: translate(-50%, -50%) rotate(-15deg);
    background-image: url('admin/uploads/general_1765276412746-876330118.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
    filter: grayscale(100%) brightness(200%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c41e3a' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.1;
    animation: morphShape 15s infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: -7s;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 50%;
        transform: scale(1) rotate(0deg);
    }

    25% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
        transform: scale(1.1) rotate(90deg);
    }

    50% {
        border-radius: 50%;
        transform: scale(1) rotate(180deg);
    }

    75% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
        transform: scale(1.1) rotate(270deg);
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
    display: block;
    color: var(--white);
}

.title-highlight {
    display: block;
    color: var(--primary-lighter);
    text-shadow: 0 0 40px rgba(196, 30, 58, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    /* Ensure z-index works */
    z-index: 10;
    /* Bring above background shapes */
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-200);
}

.hero-feature i {
    color: var(--primary-lighter);
}

/* Enhanced Badge with Glow */
.glow-badge {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    animation: fadeInDown 0.8s ease, badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2);
    }
}

.pulse-slow {
    animation: pulseSlow 2s ease-in-out infinite;
}

@keyframes pulseSlow {

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

    50% {
        transform: scale(1.15);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem 0;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
    text-align: center;
    position: relative;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    display: inline;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hero-stat .stat-plus,
.hero-stat .stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-lighter);
}

.hero-stat .stat-label {
    display: block;
    color: var(--gray-300);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.hero-stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Hero CTA Button */
.hero-cta {
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.btn-hero-cta:hover::before {
    left: 100%;
}

.btn-hero-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.5);
}

.btn-hero-cta i {
    transition: transform 0.3s ease;
}

.btn-hero-cta:hover i {
    transform: translateX(-5px);
}

/* Responsive for Hero Stats */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .hero-stat-divider {
        width: 50px;
        height: 1px;
    }

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

.countdown-section {
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.countdown-section h3 {
    font-size: 1.1rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    min-width: 90px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-lighter);
    line-height: 1;
}

.countdown-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin-top: 0.3rem;
    display: block;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--primary-lighter);
    align-self: center;
    font-weight: 700;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    animation: fadeInUp 0.8s ease 1.2s both;
    z-index: 10;
}

.hero-scroll a {
    color: var(--gray-400);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-lighter);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ================================
   Construction Banner
   ================================ */
.construction-banner {
    background: var(--gradient-primary);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.construction-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm20 0a7 7 0 1 0 0-14 7 7 0 0 0 0 14zM10 37a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm10-17h20v20H20V20zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.construction-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.construction-icon {
    font-size: 3rem;
    color: var(--white);
}

.construction-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

.construction-text {
    text-align: center;
    color: var(--white);
}

.construction-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.construction-text p {
    opacity: 0.9;
}

.construction-progress {
    text-align: center;
    color: var(--white);
}

.progress-bar {
    width: 200px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: var(--white);
    border-radius: 4px;
    transition: width 1s ease;
    animation: progressPulse 2s infinite;
}

@keyframes progressPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ================================
   Section Styles
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.section-header.light .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
}

.section-header.light .section-subtitle {
    color: var(--gray-300);
}

/* ================================
   About Section
   ================================ */
.about-section {
    padding: 50px 0 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative floating shapes */
.about-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 15s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatShape 12s ease-in-out infinite reverse;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced 50/50 split */
    gap: 3.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.about-main-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-services-column {
    position: sticky;
    top: 100px;
}

.about-image {
    position: relative;
}

/* Premium image frame with multiple layers */
.image-frame {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

/* Decorative gradient border */
.image-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold), var(--primary-color));
    border-radius: 28px;
    z-index: -1;
    opacity: 0.8;
    animation: gradientRotate 5s linear infinite;
    background-size: 200% 200%;
}

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

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

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

/* Shadow layer */
.image-frame::after {
    content: '';
    position: absolute;
    inset: 20px;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: -2;
    filter: blur(40px);
    opacity: 0.3;
    transform: translateY(20px);
}

.image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Animated particles in placeholder */
.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 60px 80px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 100px 40px, rgba(212, 175, 55, 0.3), transparent),
        radial-gradient(2px 2px at 140px 90px, rgba(212, 175, 55, 0.2), transparent);
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.image-placeholder span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Premium experience badge */
.image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.image-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(212, 175, 55, 0.4);
}

.badge-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About text styling */
/* About story styling (New structure) */
.about-story h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.about-story h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
}

.about-story p {
    color: var(--gray-600);
    font-size: 1.15rem;
    line-height: 1.9;
    position: relative;
    padding-right: 20px;
    border-right: 3px solid var(--accent-gold);
}

/* Red separator at the bottom of About section */
.about-footer-separator {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin-top: 5rem;
    border-radius: 2px;
    opacity: 0.6;
}

/* Premium feature cards */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
    /* Ensure clicks pass through */
}

.about-feature:hover {
    background: var(--white);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(196, 30, 58, 0.1);
    transform: translateX(-10px);
}

.about-feature:hover::before {
    opacity: 1;
}

.about-feature .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
    overflow: hidden;
    /* Ensure image respects border radius */
}

.about-feature:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-feature .feature-icon.has-image {
    padding: 0;
    background: transparent;
    /* Remove gradient background if image exists */
}

.feature-content {
    position: relative;
    z-index: 1;
    /* Ensure content is above background */
    flex: 1;
}

.about-feature .feature-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
}

.about-feature:hover .feature-content h4 {
    color: var(--primary-color);
}

.about-feature .feature-content p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    margin-right: 5px;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Show More Services Button Styling */
.show-more-services-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 10;
}

.btn-show-more-services {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
}

.btn-show-more-services:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 30, 58, 0.2);
}

.btn-show-more-services i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .image-badge {
        bottom: -20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }

    .image-placeholder {
        height: 300px;
    }

    .image-placeholder i {
        font-size: 3.5rem;
    }

    .image-badge {
        padding: 1rem 1.5rem;
    }

    .badge-number {
        font-size: 2.2rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .about-text>p {
        font-size: 1rem;
        padding-right: 15px;
    }

    .about-feature {
        padding: 1rem;
    }

    .about-feature .feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.2rem;
    }
}

/* ================================
   Services Section
   ================================ */
.services-section {
    padding: 50px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: -1;
}

.services-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23c41e3a' fill-opacity='0.08'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm10 0h9v-9h-9v9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Services Grid removed - integrated into About Section */
.services-grid {
    display: none;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Ensure all cards in a row have same height */
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.service-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Push the hover icon to the bottom */
}

.read-more-link {
    color: var(--accent-gold);
    display: block;
    margin-top: 5px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: var(--primary-lighter);
    text-decoration: underline;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1) rotate(10deg);
}

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

.service-card p {
    color: var(--gray-300);
    font-size: 0.95rem;
}

.service-hover {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-hover {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Service Detail Modal Style */
.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-content {
    background: var(--white);
    width: 90%;
    max-width: 500px;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(196, 30, 58, 0.1);
    text-align: center;
}

.service-modal-overlay.active .service-modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-400);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.3);
}

.service-modal-content h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.modal-scroll-area {
    max-height: 300px;
    overflow-y: auto;
    padding: 0 15px;
    margin-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.modal-scroll-area::-webkit-scrollbar {
    width: 4px;
}

.modal-scroll-area::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.service-modal-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.8;
}

.modal-btn-close {
    padding: 12px 40px;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ================================
   Products Section
   ================================ */
.products-section {
    padding: 50px 0 80px 0;
    background: var(--light-bg);
}

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

/* Category Cards for Homepage */
.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
    border: 2px solid transparent;
    position: relative;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.category-card-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
}

.category-card:hover .category-card-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(196, 30, 58, 0.3);
}

.category-card-icon {
    font-size: 2.5rem;
    color: var(--white);
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-icon {
    transform: scale(1.1);
}

.category-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 0 1rem 1.5rem;
}

.category-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    width: 100%;
}

.category-card:hover .category-card-title {
    color: var(--primary-color);
}

.category-card-count {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 0;
    font-weight: 500;
    width: 100%;
}

.btn-explore-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.25);
    border: 2px solid transparent;
    margin-top: auto;
    align-self: center;
}

.btn-explore-category:hover {
    background: var(--primary-dark);
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.btn-explore-category i {
    transition: transform 0.3s ease;
}

.btn-explore-category:hover i {
    transform: translateX(-3px);
}

/* Category Cards Responsive */
@media (max-width: 992px) {
    .category-card-icon-wrapper {
        width: 90px;
        height: 90px;
    }

    .category-card-icon {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .category-card {
        padding: 2rem 1.5rem;
    }

    .category-card-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }

    .category-card-icon {
        font-size: 2rem;
    }

    .category-card-title {
        font-size: 1.2rem;
    }

    .category-card-count {
        font-size: 0.95rem;
    }

    .btn-explore-category {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-normal);
}

.product-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-card:hover .product-placeholder {
    background: var(--gradient-primary);
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.product-info p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-price .price {
    color: var(--primary-color);
    font-weight: 600;
}

/* ================================
   Offers Section (Dark)
   ================================ */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: hidden;
}

.offers-section .section-title {
    color: var(--white);
}

.offers-section .section-subtitle {
    color: var(--gray-300);
}

/* ================================
   Testimonials Section (Dark)
   ================================ */
.testimonials-section {
    padding: 50px 0 80px 0;
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    color: var(--white);
    position: relative;
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: var(--gray-400);
}

/* ================================
   FAQ Section (Light)
   ================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Search */
.faq-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.faq-search input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-search input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(196, 30, 58, 0.1);
    outline: none;
}

.faq-search i {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    color: var(--gray-400);
    pointer-events: none;
    transition: var(--transition-normal);
}

.faq-search input:focus+i {
    color: var(--primary-color);
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-load-more {
    padding: 0.8rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* FAQ Items */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: rgba(196, 30, 58, 0.1);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: var(--transition-normal);
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 50%;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--primary-color);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    background: var(--light-bg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Check if content is longer */
    opacity: 1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
}

/* No Results Message */
.no-faq-results {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
}

.no-faq-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ================================
   Contact Section (Dark)
   ================================ */
.contact-section {
    padding: 50px 0 80px 0;
    background: linear-gradient(135deg, #0f1016 0%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: var(--gray-400);
}

/* ================================
   Gallery Section
   ================================ */
.gallery-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
    z-index: 1;
}

.gallery-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    animation: galleryBgPulse 8s ease-in-out infinite;
}

@keyframes galleryBgPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.gallery-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.gallery-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.gallery-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatShape 15s ease-in-out infinite;
}

.gallery-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation: floatShape 12s ease-in-out infinite reverse;
}

@keyframes floatShape {

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

    33% {
        transform: translate(30px, -30px) rotate(10deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

/* Gallery Section Header - Light Theme */
.gallery-section .section-header {
    margin-bottom: 3rem;
}

.gallery-badge {
    background: rgba(196, 30, 58, 0.1) !important;
    border: none !important;
    color: var(--primary-color) !important;
}

.gallery-title {
    color: var(--dark-text) !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.gallery-subtitle {
    color: var(--gray-500) !important;
}

/* Filter Buttons */
/* Filter Buttons - Light Theme */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    color: var(--gray-600);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.filter-btn i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: var(--gray-400);
}

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

.filter-btn:hover i {
    color: var(--white);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.filter-btn.active i {
    color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #252540 0%, #1a1a2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.5);
    transition: all 0.4s ease;
}

/* Gallery Overlay - Always visible with hover enhancement */
/* Gallery Overlay - Always visible with hover enhancement */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(196, 30, 58, 0.1) 50%,
            rgba(196, 30, 58, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 1;
    /* Make it always visible but subtle */
    transition: all 0.4s ease;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--white);
    /* Changed to white for better contrast against dark overlay */
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Add shadow */
    margin-bottom: auto;
    margin-top: 30%;
    transform: scale(0.9);
    opacity: 1;
    /* Full opacity */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    transform: translateY(0);
    /* Keep it visible */
    opacity: 1;
    /* Full opacity */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Strong text shadow */
    transition: all 0.4s ease 0.1s;
    text-align: center;
}

/* Gallery Item Hover Effects */
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(196, 30, 58, 0.3) 40%,
            rgba(196, 30, 58, 0.85) 100%);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.1);
    opacity: 1;
    color: var(--accent-gold);
    /* Gold on hover for pop */
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(-5px);
    opacity: 1;
}


.gallery-item:hover .gallery-placeholder i {
    color: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

/* Gallery Item with animated border on hover */
.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold), var(--primary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    position: relative;
}

.lightbox-placeholder {
    width: 60vw;
    height: 60vh;
    max-width: 800px;
    background: linear-gradient(145deg, #1a1a2e 0%, #252540 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.lightbox-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #0f1016;
}

/* Gallery Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 1rem;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item-tall {
        grid-row: span 1;
    }

    .filter-btn span {
        display: none;
    }
}

/* ================================
   Stats Section
   ================================ */
.stats-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    z-index: -1;
}

/* Premium animated gradient overlay */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(196, 30, 58, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.3) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Floating particles effect */
.stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.12), transparent);
    background-size: 200px 200px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-200px);
    }
}

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

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 4rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

/* Vertical dividers between items */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Hover glow effect */
.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: scale(1.02);
}

.stat-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon glow ring */
.stat-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    opacity: 0.2;
    animation: pulseRing 3s ease-in-out infinite;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.35;
    }
}

.stat-icon i {
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    color: var(--accent-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.8));
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
    letter-spacing: -2px;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Number underline accent */
.stat-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 3px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1rem;
}

/* Responsive Stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-item:nth-child(1)::after,
    .stat-item:nth-child(3)::after {
        left: auto;
        right: 0;
    }

    /* Add horizontal divider for 2-column layout */
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .stat-item {
        padding: 1.5rem 0.8rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-icon {
        width: 55px !important;
        height: 55px !important;
    }

    .stat-icon i {
        font-size: 1.3rem !important;
    }

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

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

/* ================================
   Gallery Section
   ================================ */
.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ================================
   Newsletter Section
   ================================ */
/* ================================
   Newsletter Section
   ================================ */
.newsletter-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f8f8 100%);
    overflow: hidden;
    margin-top: 0;
    border-top: 1px solid rgba(196, 30, 58, 0.1);
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(196, 30, 58, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite alternate;
}

.newsletter-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(30, 35, 50, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
    position: relative;
}

.newsletter-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    border-right-color: transparent;
    border-bottom-color: transparent;
    animation: spin 4s linear infinite;
}

.newsletter-content h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-content p {
    color: #a0a0b0;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    max-width: 600px;
    margin: 0 auto 1.3rem;
    position: relative;
}

.newsletter-form .form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-form .form-group input {
    flex: 1;
    padding: 0.9rem 1.5rem;
    padding-right: 3rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    width: 100%;
}

.newsletter-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

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

.newsletter-form .form-group i {
    position: absolute;
    right: 1.5rem;
    color: var(--accent-gold);
    pointer-events: none;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.newsletter-form .form-group input:focus ~ i,
.newsletter-form .form-group input:valid ~ i {
    opacity: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.newsletter-form button {
    padding: 0 2.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    border: none;
    color: #1a1a2e;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

.newsletter-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 1rem;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
}

.newsletter-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.newsletter-feature:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(360deg);
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ================================
   Contact Section
   ================================ */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gradient overlay */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 90%, rgba(196, 30, 58, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 10%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
    animation: contactGradient 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes contactGradient {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Floating particles */
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 50px 50px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(2px 2px at 150px 150px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 250px 100px, rgba(212, 175, 55, 0.2), transparent);
    background-size: 300px 300px;
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
}

/* Override section header for dark background */
.contact-section .section-header {
    position: relative;
    z-index: 1;
}

.contact-section .section-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Premium contact card styling */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem 1.75rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.contact-card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

.contact-card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 21px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--accent-gold), transparent) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.5);
}

.contact-card:hover .contact-card-icon::after {
    opacity: 1;
}

.contact-card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.contact-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-card-content a {
    color: var(--accent-gold);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.contact-card-content a:hover {
    color: #f5d77e;
    text-decoration: none;
}

.contact-card-content a:hover::after {
    width: 100%;
}

/* Premium form wrapper */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 3.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form .form-group i {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.contact-form input:focus+i,
.contact-form textarea:focus+i {
    color: var(--accent-gold);
}

.contact-form input[type="tel"],
.contact-form input[type="tel"]::placeholder {
    direction: rtl;
    text-align: right;
}

.contact-form .form-group textarea+i {
    top: 1.4rem;
    transform: none;
}

/* Premium submit button */
.contact-form .btn {
    background: linear-gradient(135deg, var(--primary-color), #8b0000);
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 14px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.4);
}

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

.contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.5);
}

.contact-form .btn:hover::before {
    left: 100%;
}

.contact-form .btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.contact-form .btn:hover i {
    transform: translateX(-5px);
}

/* Responsive Contact Section */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-info-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }

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

    .contact-card {
        padding: 1.25rem;
    }

    .contact-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem 1rem 1rem 2.8rem;
    }
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #0f1016;
    /* Deep dark background */
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-brand .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
    transition: transform 0.3s ease;
}

.footer-brand .logo-icon:hover {
    transform: rotate(10deg);
}

.footer-brand .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-brand .logo-main {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
}

.footer-brand .logo-sub {
    color: var(--accent-gold);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.footer-brand>p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
    padding-right: 5px;
}

.footer-links ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.footer-contact ul li i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-bottom {
    background: #0a0b0f;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-gold);
}

/* ================================
   Back to Top & WhatsApp
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #25d366;
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

@media (max-width: 1200px) and (min-width: 992px) {
    .nav-link {
        padding: 0.5rem 0.4rem;
        font-size: 0.85rem;
        gap: 0.2rem;
    }
    
    .nav-menu {
        gap: 0.1rem;
    }

    .logo-text {
        display: none;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 0.6rem 0;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        animation: slideInDown 0.3s ease-out;
    }

    .nav-menu.active li {
        width: 100%;
    }

    .nav-menu.active .nav-link {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        justify-content: flex-start;
        font-size: 1rem;
    }

    .nav-menu.active .nav-link i {
        width: 25px;
        font-size: 1.1rem;
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-title {
        font-size: 3rem;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form .form-group {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown-item {
        padding: 0.8rem 1rem;
        min-width: 70px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

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

    .construction-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .products-grid,
    .stats-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Category Cards - Mobile */
    .category-card {
        padding: 2rem 1.5rem;
    }

    .category-card-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.25rem;
    }

    .category-card-icon {
        font-size: 2rem;
    }

    .category-card-title {
        font-size: 1.2rem;
    }

    .btn-explore-category {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

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

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

    .footer-social {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 1rem;
        border-radius: var(--radius-full);
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-icon {
        width: 45px;
        height: 45px;
        padding: 6px;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.6rem 0.8rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

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

/* ================================
   Skeleton Loading Styles
   ================================ */
.skeleton-loading {
    pointer-events: none;
    user-select: none;
}

.skeleton {
    background: linear-gradient(90deg,
            #f0f0f0 0%,
            #e0e0e0 20%,
            #f0f0f0 40%,
            #f0f0f0 100%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-sm);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

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

.skeleton-image {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.skeleton-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    margin: 0 auto 1.5rem;
}

.skeleton-title {
    height: 24px;
    width: 70%;
    margin: 0 auto 1rem;
}

.skeleton-text {
    height: 16px;
    width: 90%;
    margin: 0 auto 0.8rem;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-price {
    height: 20px;
    width: 40%;
    margin-top: 1rem;
}

/* Product/Service Card Fade In Animation */
.product-card,
.service-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

.product-card.loaded,
.service-card.loaded {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Loading State for Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded,
img[loading="lazy"][src] {
    opacity: 1;
}

/* Contact section styles moved to main section */

/* ================================
   Newsletter Section (Accent)
   ================================ */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter-text h3,
.newsletter-text p {
    color: var(--white);
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.newsletter-form button {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    border: none;
}

.newsletter-form button:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-feature {
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-feature i {
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
}


.newsletter-text h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.newsletter-form .form-group {
    flex: 1;
    max-width: 300px;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ================================
   Form Messages
   ================================ */
.form-message {
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-message.success {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.3);
    color: #27ae60;
}

.form-message.error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-form .form-group {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ================================
   Offers Banner Styles
   ================================ */

.offers-banner {
    background: linear-gradient(135deg, #c41e3a 0%, var(--primary-lighter) 50%, #c41e3a 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite, slideDown 0.5s ease-out;
    color: white;
    padding: 0.85rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

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

.offers-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.offers-banner-content i.fa-gift,
.offers-banner-content .pulse-icon {
    font-size: 1.5rem;
    color: #d4af37;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@keyframes pulse {

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

    50% {
        transform: scale(1.2);
    }
}

.offers-banner-content span,
.offers-banner-content .blink-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Adjust header when banner is visible */
body.has-offer-banner .header {
    margin-top: 55px;
}

body.has-offer-banner .header.sticky {
    top: 55px;
}

/* ================================
   Offers Section Styles
   ================================ */

/* Conflict removed: .offers-section style is defined earlier (Line ~1828) */

.offers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

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

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(196, 30, 58, 0.25);
    border-color: var(--primary-color);
}

.offer-card-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offer-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.offer-card-image .offer-placeholder {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.offer-card-content {
    padding: 1.5rem;
}

.offer-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.offer-card-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.offer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.offer-dates {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.offer-dates i {
    color: var(--primary-color);
    margin-left: 0.3rem;
}

.offer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.offer-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

/* Empty state for offers */
.offers-empty {
    text-align: center;
    padding: 3rem;
    color: var(--gray-400);
}

.offers-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--gray-300);
}

.offers-empty p {
    font-size: 1.1rem;
}

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

    .offer-card-image {
        height: 180px;
    }
}

/* ================================
   Carousel Styles
   ================================ */

.carousel-container {
    position: relative;
    width: 100%;
    padding: 0 50px;
}

.carousel-wrapper {
    overflow: hidden;
    position: relative;
}

/* Fade effect to indicate more cards */
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-wrapper::before {
    right: 0;
    background: linear-gradient(to right, transparent, rgba(196, 30, 58, 0.15));
}

.carousel-wrapper::after {
    left: 0;
    background: linear-gradient(to left, transparent, rgba(196, 30, 58, 0.15));
}

.carousel-wrapper.has-next::before {
    opacity: 1;
}

.carousel-wrapper.has-prev::after {
    opacity: 1;
}

/* Dark sections fade effect - subtler red */
.offers-section .carousel-wrapper::before,
.testimonials-section .carousel-wrapper::before {
    background: linear-gradient(to right, transparent, rgba(160, 24, 48, 0.3));
}

.offers-section .carousel-wrapper::after,
.testimonials-section .carousel-wrapper::after {
    background: linear-gradient(to left, transparent, rgba(160, 24, 48, 0.3));
}

.services-section .carousel-wrapper::before {
    background: linear-gradient(to right, transparent, rgba(26, 26, 26, 0.4));
}

.services-section .carousel-wrapper::after {
    background: linear-gradient(to left, transparent, rgba(26, 26, 26, 0.4));
}

/* Track - horizontal scroll */
.carousel-track {
    display: flex !important;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: auto;
    /* Changed allow instant jumps if needed, but smooth preferred for buttons. JS will handle manual smooth scroll. */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE 10+ */
    padding: 10px 0;
    cursor: grab;
    /* Indicate draggable/interactive */

    /* Fix for RTL scrolling: Force LTR layout so scrollLeft works naturally (Left to Right movement) */
    direction: ltr;
}

.carousel-track>* {
    /* Ensure content inside cards remains correct RTL for Arabic */
    direction: rtl;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

/* Cards in carousel */
.carousel-track>* {
    flex: 0 0 auto;
    width: calc(33.333% - 1rem);
}

/* Arrow buttons */
/* Arrow buttons */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    /* Larger size */
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    /* Always visible */
    visibility: visible;
}

/* Dark theme specific overrides */
.dark-theme .carousel-arrow,
.services-section .carousel-arrow,
.gallery-section .carousel-arrow {
    background: rgba(30, 35, 50, 0.9);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.carousel-arrow:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.carousel-arrow.carousel-prev {
    right: 0;
}

.carousel-arrow.carousel-next {
    left: 0;
}

.carousel-arrow.disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
    pointer-events: none;
}

/* Services section arrows */
.services-section .carousel-arrow {
    background: var(--secondary-light);
    color: var(--white);
}

.services-section .carousel-arrow:hover {
    background: var(--primary-color);
}

/* Responsive Carousel */
@media (max-width: 1024px) {
    .carousel-track>* {
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }

    .carousel-track>* {
        width: calc(85% - 0.5rem);
    }

    .carousel-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        opacity: 1;
        visibility: visible;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 35px;
    }

    .carousel-track>* {
        width: 100%;
    }

    .carousel-arrow {
        width: 30px;
        height: 30px;
    }
}

/* Gallery Load More Button */
.gallery-load-more-container {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-bottom: 2rem;
    animation: fadeIn 0.5s ease;
}

.gallery-load-more-btn {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.gallery-load-more-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

.gallery-load-more-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.gallery-load-more-btn:hover i {
    transform: translateY(3px);
}/* ================================
   Product Page Premium Styles
   ================================ */

/* Page Header (Hero) */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%) !important;
    padding: 180px 0 50px !important;
    color: white !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 0.8rem !important;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    position: relative;
    z-index: 2;
    color: white !important;
}

.page-header p {
    opacity: 0.95 !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    font-size: 1.1rem !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    color: rgba(255, 255, 255, 0.95) !important;
}

.products-layout-full {
    margin-top: 2rem !important;
    padding-bottom: 5rem !important;
}

/* Top Filter Bar */
.products-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2.5rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.dropdown-filter {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-btn:hover {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 250px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    display: none;
    z-index: 100;
    border: 1px solid #eee;
}

.dropdown-filter.active .dropdown-content {
    display: block;
    animation: slideInUp 0.3s ease;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.filter-checkbox:hover {
    background: #f8f9fa;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.filter-tag i {
    cursor: pointer;
    font-size: 0.75rem;
}

.filter-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #f8f9fa;
    font-family: inherit;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.results-count {
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

/* Compact Product Grid */
.products-grid-compact {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 2rem !important;
}

.product-card-compact {
    background: var(--white) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.4s ease !important;
    border: 1px solid #f0f0f0 !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-img-wrapper {
    height: 180px !important;
    position: relative !important;
}

.product-details {
    padding: 1.2rem !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-details h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.5rem !important;
    color: var(--dark-text) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.product-details .desc {
    font-size: 0.85rem !important;
    color: var(--gray-500) !important;
    margin-bottom: 1rem !important;
    flex-grow: 1 !important;
    line-height: 1.6 !important;
    height: 40px !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .products-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 1.2rem;
    }
    
    .search-box {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.category-tag {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 6px 12px !important;
    border-radius: 40px !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
    backdrop-filter: blur(8px) !important;
    z-index: 2 !important;
}

.product-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
    border-top: 1px solid var(--gray-50) !important;
    padding-top: 1rem !important;
}

.product-footer .price {
    font-weight: 900 !important;
    color: var(--primary-color) !important;
    font-size: 1.2rem !important;
}

.btn-order-sm {
    background: #25D366 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 60px !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
}

.btn-order-sm:hover {
    background: #128C7E !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35) !important;
}

/* Product Actions - Inquiry Cart Button */
.product-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.btn-inquiry-cart {
    background: var(--primary-color) !important;
    color: white !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem !important;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.25) !important;
}

.btn-inquiry-cart:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35) !important;
}

.btn-inquiry-cart.cart-bounce {
    animation: cartBounce 0.6s ease !important;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3) rotate(-5deg); }
    50% { transform: scale(1.2) rotate(5deg); }
    75% { transform: scale(1.1) rotate(-3deg); }
}

/* Floating Inquiry Bar */
.inquiry-floating-bar {
    position: fixed !important;
    bottom: -100px !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
    z-index: 1000 !important;
    transition: bottom 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
    border-top: 2px solid var(--primary-color) !important;
}

.inquiry-floating-bar.visible {
    bottom: 0 !important;
}

.inquiry-bar-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 1rem 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 1.5rem !important;
}

.inquiry-bar-info {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 1rem !important;
    color: var(--dark-text) !important;
}

.inquiry-bar-info i {
    color: var(--primary-color) !important;
    font-size: 1.3rem !important;
}

.inquiry-bar-info strong {
    color: var(--primary-color) !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
}

.inquiry-send-btn {
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.inquiry-send-btn:hover {
    background: #128C7E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Inquiry Modal */
.inquiry-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 2000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    padding: 1rem !important;
}

.inquiry-modal.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.inquiry-modal-content {
    background: white !important;
    border-radius: 24px !important;
    max-width: 600px !important;
    width: 100% !important;
    max-height: 90vh !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    transform: scale(0.9) translateY(20px) !important;
    transition: transform 0.3s ease !important;
}

.inquiry-modal.active .inquiry-modal-content {
    transform: scale(1) translateY(0) !important;
}

.inquiry-modal-header {
    padding: 1.5rem 2rem !important;
    border-bottom: 1px solid var(--gray-100) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.inquiry-modal-header h3 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: var(--dark-text) !important;
    font-weight: 700 !important;
}

.inquiry-modal-close {
    background: none !important;
    border: none !important;
    font-size: 1.5rem !important;
    color: var(--gray-400) !important;
    cursor: pointer !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
}

.inquiry-modal-close:hover {
    background: var(--gray-100) !important;
    color: var(--dark-text) !important;
}

.inquiry-modal-body {
    padding: 1.5rem 2rem !important;
    overflow-y: auto !important;
    flex: 1 !important;
    max-height: calc(90vh - 180px) !important;
}

.inquiry-products-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.inquiry-product-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem !important;
    background: var(--gray-50) !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
}

.inquiry-product-item:hover {
    background: var(--gray-100) !important;
}

.inquiry-product-info h4 {
    margin: 0 !important;
    font-size: 1rem !important;
    color: var(--dark-text) !important;
    font-weight: 600 !important;
}

.inquiry-product-controls {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.quantity-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    border: 2px solid var(--primary-color) !important;
    background: white !important;
    color: var(--primary-color) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.quantity-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.quantity-value {
    min-width: 30px !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: var(--dark-text) !important;
    font-size: 1rem !important;
}

.remove-product-btn {
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    border: none !important;
    background: #ff4444 !important;
    color: white !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
    font-size: 0.9rem !important;
}

.remove-product-btn:hover {
    background: #cc0000 !important;
    transform: scale(1.1) !important;
}

.empty-inquiry {
    text-align: center !important;
    padding: 3rem 1rem !important;
    color: var(--gray-400) !important;
}

.empty-inquiry i {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.empty-inquiry p {
    font-size: 1.1rem !important;
    margin: 0 !important;
}

.inquiry-modal-footer {
    padding: 1.5rem 2rem !important;
    border-top: 1px solid var(--gray-100) !important;
}

.btn-inquiry-send {
    width: 100% !important;
    background: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
}

.btn-inquiry-send:hover {
    background: #128C7E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

.btn-inquiry-send:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .inquiry-bar-content {
        flex-direction: column !important;
        padding: 1rem !important;
        gap: 1rem !important;
    }

    .inquiry-send-btn {
        width: 100% !important;
        justify-content: center !important;
    }

    .inquiry-modal-content {
        max-width: 100% !important;
        margin: 1rem !important;
        max-height: 85vh !important;
    }

    .inquiry-modal-header,
    .inquiry-modal-body,
    .inquiry-modal-footer {
        padding: 1rem !important;
    }

    .product-actions {
        flex-direction: column !important;
        gap: 8px !important;
        width: 100% !important;
    }

    .btn-inquiry-cart {
        width: 100% !important;
        border-radius: 12px !important;
        height: 40px !important;
    }
}

/* Pagination */
.pagination-container {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.pagination-btn {
    width: 48px !important;
    height: 48px !important;
    border-radius: 16px !important;
    border: 2px solid var(--gray-100) !important;
    background: white !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: var(--dark-text) !important;
    font-weight: 700 !important;
}

.pagination-btn.active {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}
/* ================================
 * Category Card Image Styles
 * ================================ */
.category-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.category-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card-img {
    transform: scale(1.05);
}

/* Adjust category-card-content padding when image exists */
.category-card-content {
    padding: 2.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
