/* ============================================
   IBNEZZ - Premium Mattress Store Styles
   Modern, Elegant, Arabic-First Design
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================
   CSS Variables & Design Tokens
   ============================================ */
:root {
    /* Gold Palette */
    --primary-gold: #D4AF37;
    --primary-gold-light: #F4E4BC;
    --primary-gold-dark: #B8960C;
    --gold-glow: rgba(212, 175, 55, 0.4);

    /* Navy Palette */
    --deep-navy: #0A1628;
    --navy-light: #1A2D4A;
    --navy-medium: #152238;

    /* Text Colors */
    --white: #FFFFFF;
    --text-light: rgba(255, 255, 255, 0.95);
    --text-muted: rgba(255, 255, 255, 0.65);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
    --gradient-navy: linear-gradient(135deg, #0A1628 0%, #1A2D4A 50%, #0A1628 100%);
    --gradient-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 45, 74, 0.85) 50%, rgba(10, 22, 40, 0.92) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(26, 45, 74, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 15px 50px rgba(0, 0, 0, 0.3);
    --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);

    /* Timing */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

img {
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    background-color: var(--deep-navy);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 5px;
}

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

/* ============================================
   Utility Classes
   ============================================ */
.bg-primary-gold {
    background-color: var(--primary-gold);
}

.bg-primary-gold-light {
    background-color: var(--primary-gold-light);
}

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

.bg-deep-navy {
    background-color: var(--deep-navy);
}

.bg-navy-light {
    background-color: var(--navy-light);
}

.bg-navy-medium {
    background-color: var(--navy-medium);
}

.text-primary-gold {
    color: var(--primary-gold);
}

.text-primary-gold-light {
    color: var(--primary-gold-light);
}

.text-deep-navy {
    color: var(--deep-navy);
}

.text-light {
    color: var(--text-light);
}

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

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

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

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

@keyframes float {

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

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

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

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

@keyframes glow {

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

    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes bounce {

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

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

    60% {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

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

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Staggered Animations */
.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

.animate-delay-5 {
    animation-delay: 0.5s;
}

/* ============================================
   Header & Navigation
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.main-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo-container img {
    height: 50px;
    width: auto;
    transition: transform var(--transition-medium);
}

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

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-gold);
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-medium);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-medium);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

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

.nav-links a.active {
    color: var(--primary-gold);
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 3px;
    transition: all var(--transition-medium);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

/* Hero Effects Container */
.hero-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 50%;
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    left: 5%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 10%;
    border-radius: 30%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 25%;
    animation-delay: -7s;
    animation-duration: 22s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    top: 20%;
    left: -50px;
    border-radius: 40%;
    animation-delay: -3s;
    animation-duration: 28s;
}

@keyframes shapeFloat {

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

    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translate(0, -50px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translate(-30px, -20px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Light Rays Effect */
.light-rays {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    animation: lightPulse 8s ease-in-out infinite;
}

@keyframes lightPulse {

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

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

/* Animated Particles Background */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 40%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    left: 40%;
    top: 30%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 70%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    left: 60%;
    top: 15%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 70%;
    top: 50%;
    animation-delay: 6s;
}

.particle:nth-child(8) {
    left: 80%;
    top: 35%;
    animation-delay: 7s;
}

.particle:nth-child(9) {
    left: 90%;
    top: 65%;
    animation-delay: 8s;
}

.particle:nth-child(10) {
    left: 15%;
    top: 80%;
    animation-delay: 9s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-gold-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease forwards;
}

.hero-logo {
    /* animation: fadeInDown 0.8s ease forwards; */
        height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
max-height: 100%;
}

.hero-title {
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    line-height: 1.3;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
}

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

.hero-title .hero-tagline {
    display: block;
    font-size: clamp(1.25rem, 3.5vw, 2rem);
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primary-gold-light);
    margin-bottom: 2.5rem;
    font-weight: 500;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-decoration: none;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 4px;
    animation: float 1.5s ease-in-out infinite;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

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

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

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-call {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 153, 255, 0.3);
}

.btn-call:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.5);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 6rem 0;
    background: var(--gradient-navy);
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all var(--transition-medium);
}

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

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================
   Products Section
   ============================================ */
.products-section {
    padding: 6rem 0;
    background: var(--deep-navy);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.product-card {
    background: var(--navy-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-slow);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 0;
    border-radius: 24px;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.product-card:hover::before {
    opacity: 0.05;
}

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

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-badge {
    background: var(--primary-gold);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 1;
    margin: auto;
}

.product-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.product-footer .btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 12px !important;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.price-currency {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* View All Products Button */
.products-more {
    text-align: center;
    margin-top: 3rem;
}

.products-more .btn {
    min-width: 250px;
}

/* ============================================
   Page Hero (for inner pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--navy-medium) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    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='%23D4AF37' 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");
}

.page-hero-small {
    padding: 7rem 2rem 2rem;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.breadcrumb a:hover {
    opacity: 0.8;
}

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

/* ============================================
   Products Page
   ============================================ */
.products-page-section {
    padding: 4rem 0;
    background: var(--deep-navy);
    min-height: 50vh;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.product-card-full {
    display: flex;
    flex-direction: column;
}

.product-card-full .product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-specs-mini {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-specs-mini span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.product-specs-mini i {
    color: var(--primary-gold);
}

.product-card-full .product-footer {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding: 1rem;
}

.product-card-full .product-footer .btn {
    flex: 1;
}

/* ============================================
   Product Details Page
   ============================================ */
.product-details-section {
    padding: 4rem 0;
    background: var(--deep-navy);
}

.product-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-details-image {
    position: sticky;
    top: 100px;
}

.product-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-warranty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-details-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-details-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.product-model-name {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: -1rem;
}

.product-quick-specs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-spec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    min-width: 100px;
}

.quick-spec i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.quick-spec .spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quick-spec .spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.product-details-price {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-details-price .price-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.product-details-price .price-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-details-price .price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
}

.product-details-price .price-currency {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.product-description-full h3 {
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description-full p {
    color: var(--text-light);
    line-height: 1.8;
}

.product-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-cta-buttons .btn {
    flex: 1;
    min-width: 200px;
}

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

.product-full-specs {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.product-full-specs h2 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.specs-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    color: var(--text-light);
    line-height: 2;
}

.product-features {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 0 2rem;
}

.product-features h2 {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.feature-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.feature-item span {
    color: var(--text-light);
    font-weight: 500;
}

/* Responsive for Product Details */
@media (max-width: 992px) {
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details-image {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-quick-specs {
        justify-content: center;
    }

    .product-cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 4rem 0;
    background: var(--deep-navy);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-medium);
}

.contact-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: opacity var(--transition-fast);
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-text {
    color: var(--primary-gold-light);
    font-size: 0.95rem;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-cta h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-cta-buttons .btn {
    min-width: 180px;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-feature {
    text-align: center;
    padding: 2rem;
}

.contact-feature i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.contact-feature h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-feature p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 5rem 0;
    background: var(--navy-medium);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%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");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--deep-navy) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--deep-navy);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
}

.footer-about {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all var(--transition-medium);
}

.social-link:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary-gold);
    text-decoration: none;
}

/* ============================================
   Floating Action Buttons
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: all var(--transition-medium);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation-delay: 0.5s;
}

.floating-btn.call {
    background: linear-gradient(135deg, #0099ff 0%, #0066cc 100%);
}

.floating-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.floating-btn.whatsapp:hover {
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
}

.floating-btn.call:hover {
    box-shadow: 0 10px 40px rgba(0, 153, 255, 0.5);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 6rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--navy-light);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 998;
}

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

.back-to-top:hover {
    background: var(--primary-gold);
    color: var(--deep-navy);
    transform: translateY(-5px);
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);

    z-index: 999;
}

.floating-btn-right {
    right: 2rem;
}

.floating-btn-left {
    left: 2rem;
}

.floating-btn.call {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }

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

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

    .hero-title {
        font-size: 0;
    }

    .hero-title .hero-tagline {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

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

    .floating-buttons {
        bottom: 1.5rem;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .section-header {
        padding: 0 1rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .product-content {
        padding: 1.5rem;
    }

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

/* ============================================
   Coming Soon Overlay (Optional)
   ============================================ */
.coming-soon-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
    margin-top: 2rem;
}

/* ============================================
   Empty State
   ============================================ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-text {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.d-none {
    display: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}
.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border) !important;
}