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

:root {
    /* Colors */
    --primary-color: #ff6b35;
    --primary-dark: #e85d2f;
    --secondary-color: #1a1a1a;
    --accent-color: #ffd23f;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --overlay-dark: rgba(0, 0, 0, 0.6);
    --overlay-light: rgba(0, 0, 0, 0.3);
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 72px;
    --spacing-xxl: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* ===================================
   Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   Hero Section - PREMIUM ENHANCED
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('/assets/img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}


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

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.particles::before {
    background: var(--primary-color);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.particles::after {
    background: var(--accent-color);
    bottom: -200px;
    right: -200px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(100px, 100px) scale(1.2);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 32px 20px;
    width: 100%;
}

/* Logo - REDUCED SIZE */
.logo {
    margin-bottom: 40px;
}

.logo img {
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

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

/* Hero Title - PREMIUM */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.8));
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 15px;
}

/* CTA Buttons - PREMIUM ENHANCED */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 16px 40px rgba(255, 107, 53, 0.6);
}

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

.btn-secondary-btn:hover {
    background: var(--text-light);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
}

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

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--text-light);
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===================================
   Features Section - IMPROVED
   =================================== */
.features-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.feature-card {
    text-align: center;
    padding: 35px 25px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 2px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 6px 18px rgba(255, 107, 53, 0.3);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.5);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

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

/* ===================================
   Section Header - PREMIUM
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 20px;
    font-weight: 300;
}

/* ===================================
   Partner Brands Section - IMPROVED CARDS
   =================================== */
.partner-brands {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding: 0 15px;
}

.brand-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 53, 0.05),
        transparent
    );
    transition: left 0.5s ease;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.brand-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

.brand-card img {
    max-width: 180px;
    height: auto;
    margin: 0 auto 25px;
    transition: all var(--transition-normal);
}

.brand-card:hover img {
    transform: scale(1.08);
}

.brand-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.brand-card > p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 400;
}

.brand-contact {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    text-align: left;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    min-width: 20px;
}

.contact-item span {
    word-break: break-all;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

.brand-link:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 18px rgba(255, 107, 53, 0.4);
}

.brand-link i {
    transition: transform 0.3s ease;
}

.brand-link:hover i {
    transform: translateX(5px);
}

/* ===================================
   Partner Brands Logos - IMPROVED
   =================================== */
.partner-brands-logos {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    position: relative;
    overflow: hidden;
}

.partner-brands-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.partner-brands-logos .container {
    position: relative;
    z-index: 1;
}

.partner-brands-logos .section-title {
    color: #ffffff;
}

.partner-brands-logos .section-title::after {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.partner-brands-logos .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.brands-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 15px;
}

.brand-logo-item {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 12px;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.brand-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-logo-item:hover::before {
    left: 100%;
}

.brand-logo-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.brand-logo-item img {
    max-width: 140px;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all var(--transition-normal);
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* ===================================
   CTA Section - IMPROVED
   =================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(100px);
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-content .cta-buttons {
    margin-bottom: 0;
}

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

.btn-light:hover {
    background: #f8f9fa;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

/* ===================================
   Footer - IMPROVED
   =================================== */
.footer {
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.footer-col ul li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

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

/* ===================================
   Responsive Design - IMPROVED 100%
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-content {
        padding: 50px 25px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        min-height: 100vh;
        background-attachment: scroll;
        background-position: center;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .logo {
        margin-bottom: 30px;
    }
    
    .logo img {
        max-width: 140px;
    }
    
    .hero-title {
        letter-spacing: 2px;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 15px 30px;
        font-size: 0.9rem;
        letter-spacing: 1.2px;
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
    
    .scroll-indicator {
        bottom: 25px;
    }
    
    .scroll-indicator i {
        font-size: 1.5rem;
    }
    
    /* Features */
    .features-section {
        padding: 50px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Brands */
    .partner-brands {
        padding: 60px 0;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .brand-card {
        padding: 35px 25px;
    }
    
    .brand-card img {
        max-width: 160px;
    }
    
    .brand-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }
    
    /* Brand Logos */
    .partner-brands-logos {
        padding: 60px 0;
    }
    
    .brands-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .brand-logo-item {
        padding: 20px;
        min-height: 90px;
    }
    
    .brand-logo-item img {
        max-width: 120px;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        padding: 0 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
        gap: 15px;
    }
    
}

/* Mobile Small */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 30px 15px;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .hero-title {
        letter-spacing: 1px;
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.85rem;
        letter-spacing: 1px;
        max-width: 280px;
    }
    
    .features-grid,
    .brands-grid,
    .brands-logo-grid {
        padding: 0 15px;
    }
    
    .brands-logo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brand-logo-item {
        padding: 18px;
    }
    
    .brand-logo-item img {
        max-width: 100px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-card,
    .brand-card {
        padding: 25px 20px;
    }
    
    .brand-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
    
}

/* Extra Small */
@media (max-width: 375px) {
    .logo img {
        max-width: 100px;
    }
    
    .hero-title {
        font-size: 1.4rem;
    }
    
    .btn {
        font-size: 0.8rem;
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
}

/* ===================================
   Loading Animation
   =================================== */
.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ===================================
   Print Styles
   =================================== */
@media print {
    .hero {
        background: none;
        min-height: auto;
        color: black;
    }
    
    .hero-overlay,
    .particles,
    .scroll-indicator,
    .footer,
    .cta-section {
        display: none;
    }
    
    .btn {
        border: 2px solid black;
    }
}

.quick-view-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center; align-items: center;
}

.quick-view-content {
  background: #fff;
  display: flex;
  max-width: 900px;
  width: 90%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.quick-view-left, .quick-view-right {
  padding: 20px;
}
.quick-view-right h2{
    width: 383px;
}

.quick-view-left {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quick-view-left img {
  max-width: 400px;
  object-fit: contain; 
  max-height: 400px;
  border-radius: 10px;
}

.quick-view-right {
  flex: 1;
}

.quick-view-price {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 15px 0;
}

.quick-view-buttons button {
  padding: 10px 20px;      
  margin-right: 10px;       
  border-radius: 5px;       
  border: none;
  background-color: #ff6600; 
  color: #fff;
  font-size: 1rem;
  min-width: 200px;         
  text-align: center;
}

.quick-view-buttons button.btn-buy {
  background-color: #28a745; 
}


.close-btn {
  position: absolute;      
  top: 15px;               
  right: 20px;             
  font-size: 2rem;         
  font-weight: bold;
  color: #333;             
  cursor: pointer;         
  z-index: 10;             
}

.close-btn:hover {
  color: #ff0000;         
}
/* MOBILE RESPONSIVE QUICK VIEW MODAL */
@media (max-width: 768px) {

  .quick-view-content {
    flex-direction: column;       /* Stack vertically */
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;             /* scroll if content is long */
    padding-bottom: 20px;
  }

  .quick-view-left {
    padding: 15px 10px;
  }

  .quick-view-left img {
    max-width: 90%;
    max-height: 250px;            /* smaller image for mobile */
  }

  .quick-view-right {
    padding: 15px;
    text-align: center;
  }

  .quick-view-right h2 {
    font-size: 1.2rem;
    width: 100%;                  /* prevent overflow */
  }

  .quick-view-price {
    font-size: 1.2rem;
    margin: 10px 0;
  }

  .quick-view-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .quick-view-buttons button {
    width: 100%;
    min-width: unset;             /* allow full width */
    font-size: 1rem;
    padding: 12px;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 1.7rem;
  }
}

/* Container */
.container {
    margin: auto;
}

/* TOP FLEX SECTION */
.product-flex {
    display: flex;
    gap: 40px;
    margin-top: 70px;
}

.product-left {
    width: 50%;
    /* border: 2px solid #e0e0e0;    */

}
.product-attributes p{
    margin-bottom: 7px;
}
.main-image {
    width: 100%;
    border-radius: 10px;
    border: 2px solid #e0e0e0;   /* Outer border box */
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    opacity: 0.6;
    border-radius: 6px;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    border: 2px solid #e85d2f;
}

.product-right {
    width: 50%;
}

.product-title {
    font-size: 32px;
    font-weight: 700;
}

.product-desc {
    margin-top: 5px;
    font-size: 15px;
}

.price-box {
    margin: 20px 0;
}

.new-price {
    font-size: 28px;
    color: #e85d2f;
    font-weight: 800;
}

.old-price {
    margin-left: 10px;
    color: #777;
    text-decoration: line-through;
}

.btn-buy,
.btn-wishlist {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
}

.btn-buy {
    background: #e85d2f;
    color: white;
}

.btn-wishlist {
    background: #eaeaea;
}

/* FEATURES */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin: 8px 0;
}

/* TABS */
.tabs-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 18px;
    border: none;
    background: #eaeaea;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.tab.active {
    background: #e85d2f;
    color: white;
}

.tab-content {
    display: none;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
}

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

/* REVIEWS */
.review-card {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rating {
    color: gold;
}

/* Additional Info */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    margin: 10px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .product-flex {
        flex-direction: column;
    }
    .product-left, .product-right {
        width: 100%;
    }
}

.products-container {
    display: flex;
    gap: 30px;
    padding: 60px 0;
}
/* MAIN SIDEBAR BOX */
.ozone-sidebar {
    width: 260px;
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    height: 420px;       /* fixed height */
    overflow-y: auto;    
    border: 1px solid #ececec;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}
/* FILTER SIDEBAR */
.filter-sidebar {
    width: 260px;
    background: #fff;
    padding: 20px;
    height: 500px;
        overflow-y: auto;    

    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.filter-sidebar h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}

.filter-box {
    margin-bottom: 25px;
}

.filter-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.filter-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    cursor: pointer;
}

.price-slider input[type="range"] {
    width: 100%;
    accent-color: #ff6600;   /* Change this to any color */
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 5px;
}

.selected-price {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
}
/* Each filter box with border */
.filter-box {
    border: 1px solid #ddd;  /* light gray border */
    border-radius: 6px;      /* slightly rounded corners */
    padding: 15px;
    margin-bottom: 15px;     /* space between filters */
    background-color: #fff;  /* optional: white background */
    box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* subtle shadow */
}

/* Heading and reset button aligned */
.filter-heading-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Reset button styling */
.reset-btn {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 4px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.reset-btn:hover {
    background-color: #e65c00;
}

/* Checkboxes spacing */
.brand-checkboxes label {
    display: block;
    margin-bottom: 5px;
}

/* Price slider spacing */
.price-slider {
    margin-bottom: 10px;
}



@media (max-width: 768px) {
    .filter-sidebar {
        width: 100%;
        margin-bottom: 25px;
    }
    .category-card img{
        height: 92px !important;
    }
    .contact-form{
        width: 100% !important;
    }
}



/* RIGHT PRODUCT GRID */
.products-grid-wrapper {
    flex: 1;
    margin-top: -50px;
}

.products-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .products-container {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.btn-view-details {
    background: #ff6600;
    color: #fff;
    padding: 8px 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-view-details:hover {
    background: #e25700;
}
.btn-view-details i {
    margin-left: 6px;
    font-size: 14px;
}
/* Popup Background */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box (Wider + Shorter) */
.popup-box {
    background: #fff;
    width: 95%;                /* INCREASED WIDTH */
    max-width: 650px;          /* More wide */
    padding: 25px 30px;
    border-radius: 14px;
    box-shadow: 0 0 25px rgba(0,0,0,0.25);
    position: relative;

    max-height: 80vh;          /* REDUCED HEIGHT */
    overflow-y: auto;          /* Prevent cutoff */
    animation: popupFade 0.3s ease;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    color: #444;
}

/* Popup Title */
.popup-box h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

/* Form Styling */
.popup-form label {
    font-weight: 600;
    margin-top: 8px;
    display: block;
}

.popup-form input,
.popup-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.popup-form textarea {
    height: 90px;   /* Reduced height */
    resize: none;
}

/* Submit Button */
.popup-submit-btn {
    margin-top: 15px;
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.popup-submit-btn:hover {
    background: #e25700;
}

/* Opening Animation */
@keyframes popupFade {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
/* Two-column layout */
.form-row {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}
/* About Section */
.about-section {
    padding: 80px 0;
}
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.about-content h3 {
    margin-top: 20px;
    font-size: 22px;
}

.about-list li {
    list-style: none;
    margin-bottom: 8px;
}

.about-list i {
    color: #ff7a00;
    margin-right: 8px;
}

/* 📱 Responsive View (mobile stack) */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-list {
        text-align: left;
        display: inline-block;
    }
}


/* Values Section */
.values-section {
    background: #f7f7f7;
    padding: 70px 0;
}

.values-header h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.values-header p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    background: #fff;
    padding: 30px 25px;
    width: 280px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 40px;
    color: #ff7a00;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info {
    flex: 0.35;   /* Smaller left side */
}

.contact-form {
    flex: 0.65;   /* Larger right side */
}


.contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-box i {
    font-size: 24px;
    color: #ff6600;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #333;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff6600;
}

/* FORM */
.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-size: 28px;
}

.input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 6px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.input-group textarea {
    height: 140px;
    resize: none;
}

.full {
    width: 100%;
    margin-bottom: 20px;
}

.submit-btn {
    background: #ff6600;
    border: none;
    padding: 14px 35px;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #cc5200;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .input-row {
        flex-direction: column;
    }
}
/* GOOGLE MAP SECTION */
.map-section {
    width: 100%;
}

.map-section iframe {
    width: 100%;
    border: none;
    border-radius: 10px;
    height: 420px;
}


/* Privacy Policy Section */
.privacy-content {
    padding: 40px 0;
    color: #333;
    line-height: 1.8;
}

.privacy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    border-bottom: 2px solid #ddd;
    color: #1a1a1a;
}

.privacy-content p {
    font-size: 16px;
    margin-top: 6px;
    color: #555;
}

.privacy-content ul {
    padding-left: 20px;
    list-style-type: disc;
    margin-top: 6px;
    color: #555;
}

.privacy-content ul li {
    margin-bottom: 10px;
}

.privacy-content a {
    color: #cc5200;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Optional: make container narrower for better readability */
.privacy-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .privacy-content h2 {
        font-size: 24px;
    }

    .privacy-content h3 {
        font-size: 20px;
    }

    .privacy-content p,
    .privacy-content ul li {
        font-size: 15px;
    }
}

/* Terms & Conditions Section */
.terms-content {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.terms-content .container {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 32px;
    color: #111;
    margin-bottom: 30px;
    text-align: center;
}

.terms-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #111;
    margin-top: 30px;
    margin-bottom: 10px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.terms-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.terms-content a {
    color: #1e90ff;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-content h2 {
        font-size: 28px;
    }
    .terms-content h3 {
        font-size: 18px;
    }
    .terms-content p {
        font-size: 15px;
    }
}
/* SECTION */
.blog-section {
    padding: 60px 0;
}

/* CONTAINER */
.blog-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}

/* HEADING */
.blog-heading h2 {
    font-size: 32px;
    font-weight: 700;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.blog-heading h2 span {
    color: #ffb400;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* CARD */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    transition: 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE BOX */
.blog-image-box {
    position: relative;
}

.blog-image-box img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* DATE BADGE */
.blog-date {
    position: absolute;
    left: 15px;
    top: 15px;
    background: #ffcc00;
    padding: 8px 10px;
    border-radius: 6px;
    text-align: center;
    font-weight: 700;
}

.blog-date .day {
    font-size: 16px;
    display: block;
}

.blog-date .month {
    font-size: 14px;
}

/* CONTENT */
.blog-content {
    padding: 20px 22px;
}

/* AUTHOR */
.blog-author {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 8px;
}

/* TITLE */
.blog-title a {
    font-size: 20px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.blog-title a:hover {
    color: #ffb400;
}

/* DESCRIPTION */
.blog-description {
    margin: 12px 0 18px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* READ MORE */
.blog-read-more {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
}

.blog-read-more:hover {
    color: #ffb400;
}
    /* MAIN WRAPPER */
    .blog-main-wrapper {
        display: flex;
        gap: 40px;
        padding: 60px 0;
        align-items: flex-start;
    }

    /* LEFT SECTION */
    .blog-left-section {
        flex: 3;
    }

    .blog-main-image img {
        width: 100%;
        height: 450px;
        border-radius: 12px;
        object-fit: cover;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        margin-bottom: 25px;
    }



    .blog-meta {
        font-size: 15px;
        color: #555;
        margin-bottom: 20px;
    }

    .blog-description p {
        margin-bottom: 18px;
        line-height: 1.8;
    }

    /* RIGHT SIDEBAR */
    .sidebar-wrapper {
        flex: 1;
        border-left: 1px solid #eee;
        padding-left: 25px;
    }

    .sidebar-box {
        background: #fff;
        border-radius: 10px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        margin-bottom: 30px;
    }

    .sidebar-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }

    .recent-post {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: center;
    }

    .recent-post img {
        width: 85px;
        height: 75px;
        object-fit: cover;
        border-radius: 6px;
    }

    .recent-post-title {
        font-size: 15px;
        font-weight: 600;
        color: #333;
    }

    .recent-post-date {
        font-size: 13px;
        color: #777;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .blog-main-wrapper {
            flex-direction: column;
        }
        
        .sidebar-wrapper {
            padding-left: 0;
            border-left: none;
            width: 100%;
        }
    }
