/* ===================================
   Champaran Accessories - Modern CSS
   Version 8.0 - Brand Details Modal Added
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a4d8f;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2d3748;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --success-color: #48bb78;
    --gradient-1: linear-gradient(135deg, #c41e3a 0%, #e63946 100%);
    --gradient-2: linear-gradient(135deg, #1a4d8f 0%, #2563b3 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ===================================
   Loading Screen
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader i {
    font-size: 60px;
    color: var(--primary-color);
    animation: carBounce 1s ease-in-out infinite;
}

.loader-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

@keyframes carBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.logo h1 i {
    color: var(--primary-color);
    font-size: 28px;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: transparent;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--light-color);
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    margin-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0.05;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--gradient-1);
    top: 50%;
    right: 30%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-image-badge i {
    font-size: 36px;
    color: var(--primary-color);
}

.hero-image-badge strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.hero-image-badge span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-title span {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-feature i {
    color: var(--success-color);
    font-size: 20px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-contact-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card i {
    font-size: 24px;
    color: var(--primary-color);
}

.contact-card.whatsapp-card i {
    color: #25d366;
}

.contact-card strong {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-card a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 24px;
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ===================================
   Stats Section
   =================================== */
.stats {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-color);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
}

.stat-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-title span {
    color: var(--primary-color);
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Brands Section
   =================================== */
.brands {
    padding: 60px 0 40px 0;
    background: var(--light-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.brand-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.brand-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.brand-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.brand-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ===================================
   Products Section
   =================================== */
.products {
    padding: 60px 0;
    background: var(--white);
}

/* ===================================
   Our Company Section
   =================================== */
.our-company {
    padding: 40px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.our-company::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.company-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.company-brand-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.company-brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.company-brand-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.company-brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.company-brand-card:hover .company-brand-image img {
    transform: scale(1.1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.85), rgba(196, 30, 58, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.company-brand-card:hover .brand-overlay {
    opacity: 1;
}

.brand-overlay i {
    font-size: 64px;
    color: var(--white);
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.5s ease;
}

.company-brand-card:hover .brand-overlay i {
    transform: scale(1) rotate(0deg);
}

/* Brand specific overlays */
.jbl-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(247, 147, 30, 0.7));
}

.sony-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 168, 232, 0.7));
}

.pioneer-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.9), rgba(247, 127, 0, 0.7));
}

.galio-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(0, 166, 81, 0.9), rgba(122, 193, 66, 0.7));
}

.blockbuster-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(245, 158, 11, 0.7));
}

.trident-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(26, 77, 143, 0.9), rgba(37, 99, 179, 0.7));
}

.mafatlal-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(167, 139, 250, 0.7));
}

.threem-bg .brand-overlay {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.7));
}

.company-brand-content {
    padding: 25px 20px;
    text-align: center;
}

.company-brand-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.company-brand-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.brand-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.brand-explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    margin-top: 10px;
}

.brand-explore-link:hover {
    background: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.brand-explore-link i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.brand-explore-link:hover i {
    transform: translateX(5px);
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: linear-gradient(135deg, var(--primary-color), #e91e63);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.company-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.company-stats::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.company-stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.company-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    margin-bottom: 15px;
}

.stat-icon i {
    font-size: 48px;
    color: var(--white);
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.company-stat-item h4 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.company-stat-item p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   Products Section
   =================================== */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--light-color);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-badge.hot {
    background: #ef4444;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-image {
    height: 250px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    background: var(--light-color);
}

.product-image img[src=""],
.product-image img:not([src]) {
    display: none;
}

.product-image img::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: var(--light-color);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.product-info {
    padding: 25px;
}

.product-brand {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #fbbf24;
    font-size: 14px;
}

.product-rating span {
    color: var(--text-light);
    font-size: 14px;
    margin-left: 5px;
}

.product-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.call-btn-product-full {
    background: var(--gradient-1);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    width: 100%;
    justify-content: center;
    transition: var(--transition);
}

.call-btn-product-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.call-btn-product {
    background: var(--gradient-1);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.call-btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose {
    padding: 60px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    background: var(--white);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 60px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), rgba(196, 30, 58, 0.1));
    z-index: 1;
}

.about-icon {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: var(--transition);
}

.about-image:hover .about-icon {
    transform: rotate(360deg);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    transition: var(--transition);
}

.about-badge:hover {
    transform: scale(1.05);
}

.about-badge i {
    font-size: 24px;
    color: #fbbf24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.about-badge span {
    font-weight: 600;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features i {
    color: var(--success-color);
    font-size: 20px;
}

.about-buttons {
    display: flex;
    gap: 15px;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
    padding: 60px 0;
    background: var(--white);
}

.gallery-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 0 30px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

/* Custom Scrollbar */
.gallery-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #a01828;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    min-width: 350px;
    height: 300px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.gallery-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 30, 58, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 48px;
    color: var(--white);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-label {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-label {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Mobile Responsive - One Card at a Time */
@media (max-width: 768px) {
    .gallery-grid {
        gap: 15px;
        padding: 10px 15px 30px 15px;
        scroll-padding: 0 15px;
    }
    
    .gallery-item {
        min-width: calc(100vw - 30px);
        width: calc(100vw - 30px);
        height: 280px;
        scroll-snap-align: center;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-overlay i {
        font-size: 40px;
    }
    
    .gallery-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        height: 250px;
    }
}

.gallery-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
    white-space: nowrap;
}

.gallery-item:hover .gallery-label {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.gallery-note {
    margin-top: 40px;
    padding: 20px 30px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-note i {
    font-size: 24px;
    color: #ff9800;
    flex-shrink: 0;
}

.gallery-note p {
    margin: 0;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.gallery-note code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #d63384;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    padding: 60px 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-light);
}

/* ===================================
   Product Modal Styles
   =================================== */
.modal-brand {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.modal-rating i {
    color: #fbbf24;
    font-size: 18px;
}

.modal-rating span {
    color: var(--text-light);
    margin-left: 5px;
}

.modal-features {
    margin-bottom: 30px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 500;
}

.modal-feature i {
    color: var(--success-color);
    font-size: 18px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr !important;
        padding: 30px 20px !important;
    }
    
    .modal-image {
        min-height: 250px !important;
    }
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 60px 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    gap: 40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card.whatsapp-card {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: var(--white);
}

.contact-info-card.whatsapp-card h3,
.contact-info-card.whatsapp-card p {
    color: var(--white);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
}

.contact-info-card.whatsapp-card .contact-icon {
    background: var(--white);
    color: #25d366;
}

.contact-info-card.email-card {
    background: var(--white);
    color: var(--text-dark);
}

.contact-info-card.email-card .contact-icon {
    background: var(--gradient-1);
    color: var(--white);
}

.contact-map-section {
    margin: 50px 0 40px;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.map-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.map-header p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-map {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
    background: var(--white);
    transition: var(--transition);
}

.contact-map:hover {
    box-shadow: 0 15px 50px rgba(196, 30, 58, 0.2);
    transform: translateY(-5px);
}

.contact-map iframe {
    display: block;
    filter: grayscale(0%);
    transition: var(--transition);
}

.contact-map:hover iframe {
    filter: grayscale(0%) brightness(1.05);
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    pointer-events: none;
}

.map-info-card {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 400px;
    animation: slideUpFade 0.6s ease;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.map-info-card i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.map-info-card strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.map-info-card span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-info-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-section {
    margin-top: 50px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.form-header h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--primary-color);
    font-size: 14px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-copyright {
    text-align: center;
    color: #b0b0b0;
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
}

.footer-developer {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Combined Credits Card */
.credits-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.98));
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
    padding: 12px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.credits-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(196, 30, 58, 0.5);
}

.credit-section {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 8px;
    transition: var(--transition);
}

.brandrise-section {
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.brandrise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 77, 143, 0.1), transparent);
    transition: var(--transition);
}

.brandrise-section:hover::before {
    left: 100%;
}

.brandrise-section:hover {
    background: rgba(26, 77, 143, 0.1);
}

.developer-section:hover {
    background: rgba(196, 30, 58, 0.05);
}

.credit-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brandrise-section .credit-logo {
    background: #0a0e1a;
    border: 2px solid rgba(26, 77, 143, 0.4);
    padding: 3px;
}

.developer-section .credit-logo {
    background: #1a1a1a;
    border: 2px solid rgba(196, 30, 58, 0.4);
}

.credit-section:hover .credit-logo {
    transform: scale(1.1);
}

.credit-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.credit-info {
    flex: 1;
}

.credit-info h4 {
    font-size: 10px;
    color: #b0b0b0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    font-weight: 500;
}

.credit-info h3 {
    font-size: 13px;
    color: var(--white);
    margin-bottom: 2px;
    font-weight: 700;
    line-height: 1.1;
}

.credit-info p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 0;
}

.credit-contacts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 3px;
}

.credit-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b0b0b0;
    font-size: 11px;
    text-decoration: none;
    transition: var(--transition);
}

.credit-contact-item:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.credit-contact-item i {
    color: var(--primary-color);
    font-size: 10px;
    width: 12px;
    flex-shrink: 0;
}

.credit-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(26, 77, 143, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.brandrise-section:hover .credit-arrow {
    background: var(--secondary-color);
    transform: translateX(3px);
}

.credit-arrow i {
    font-size: 11px;
    color: var(--white);
}

.credits-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 6px 0;
}

/* ===================================
   Floating Buttons
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    animation: none;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
}

.call-float {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5);
    transition: var(--transition);
    animation: callPulse 2s infinite;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.7);
    animation: none;
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(196, 30, 58, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(196, 30, 58, 0.8);
        transform: scale(1.05);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .company-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo h1 i {
        font-size: 24px;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1100;
        position: relative;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    /* Mobile Menu Drawer */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 0;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1050;
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Menu Header */
    .nav-menu::before {
        content: 'Menu';
        display: block;
        padding: 20px 20px 15px;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        background: var(--gradient-1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .nav-menu li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-menu li:first-child {
        margin-top: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        font-size: 16px;
        font-weight: 500;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 0;
        transition: all 0.2s ease;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-menu a::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 14px;
        color: var(--text-light);
        transition: var(--transition);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:active {
        background: linear-gradient(90deg, rgba(196, 30, 58, 0.15) 0%, transparent 100%);
    }
    
    .nav-menu a.active {
        background: linear-gradient(90deg, rgba(196, 30, 58, 0.08) 0%, transparent 100%);
        color: var(--primary-color);
    }
    
    .nav-menu a.active::before {
        color: var(--primary-color);
    }
    
    .hero {
        margin-top: 60px;
        padding: 40px 0;
    }
    
    .hero-wrapper {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-contact-cards {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-developer {
        padding: 0 10px;
    }
    
    .credits-card {
        padding: 20px;
    }
    
    .credit-section {
        flex-direction: row;
        padding: 12px;
        gap: 15px;
    }
    
    .credit-logo {
        width: 50px;
        height: 50px;
    }
    
    .credit-info h3 {
        font-size: 18px;
    }
    
    .credit-arrow {
        width: 30px;
        height: 30px;
    }
    
    .credit-arrow i {
        font-size: 12px;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .company-brands-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
    }
    
    .company-stat-item i {
        font-size: 36px;
    }
    
    .company-stat-item h4 {
        font-size: 28px;
    }
    
    .map-header h3 {
        font-size: 24px;
    }
    
    .map-header i {
        font-size: 36px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    .form-header i {
        font-size: 36px;
    }
    
    .map-info-card {
        padding: 15px 20px;
        max-width: 100%;
    }
    
    .map-info-card strong {
        font-size: 16px;
    }
    
    .contact-map iframe {
        height: 350px;
    }
    
    .gallery-item.featured-gallery {
        grid-column: span 1;
    }
    
    .gallery-note {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo i {
        font-size: 24px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-card {
        padding: 20px 15px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .credits-card {
        padding: 18px;
    }
    
    .credit-section {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
        gap: 12px;
    }
    
    .credit-logo {
        width: 55px;
        height: 55px;
        margin: 0 auto;
    }
    
    .credit-info h3 {
        font-size: 17px;
    }
    
    .credit-info p {
        font-size: 11px;
    }
    
    .credit-contacts {
        align-items: center;
    }
    
    .credit-contact-item {
        font-size: 11px;
        justify-content: center;
    }
    
    .credit-arrow {
        display: none;
    }
    
    .credits-divider {
        margin: 10px 0;
    }
    
    .dev-contact-item span {
        word-break: break-all;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .call-float {
        bottom: 145px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}


/* ===================================
   Touch & Mobile Optimizations
   =================================== */
@media (hover: none) and (pointer: coarse) {
    /* Touch-friendly tap targets */
    .btn {
        min-height: 48px;
        padding: 14px 28px;
    }
    
    .nav-menu a {
        min-height: 48px;
        padding: 12px 20px;
    }
    
    .menu-toggle {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .product-card:hover,
    .brand-card:hover,
    .company-brand-card:hover {
        transform: none;
    }
    
    /* Better tap feedback */
    .btn:active {
        transform: scale(0.95);
    }
    
    .nav-menu a:active {
        background: var(--light-color);
    }
}

/* Landscape mode for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .nav-menu {
        height: calc(100vh - 60px);
        padding: 20px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .credits-card {
        padding: 15px;
    }
    
    .credit-logo {
        width: 50px;
        height: 50px;
    }
    
    .credit-info h3 {
        font-size: 16px;
    }
}

/* ===================================
   Brand Details Modal
   =================================== */
.brand-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
}

.brand-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.brand-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: white;
    cursor: pointer;
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 300;
}

.brand-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.brand-explore-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    width: 100%;
    margin-top: 15px;
}

.brand-explore-btn:hover {
    background: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.brand-explore-btn i {
    font-size: 16px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 8px 0;
    line-height: 1.5;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar styling for modal */
.brand-modal-content::-webkit-scrollbar {
    width: 8px;
}

.brand-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.brand-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.brand-modal-content::-webkit-scrollbar-thumb:hover {
    background: #a01828;
}

/* Mobile Responsive for Brand Modal */
@media (max-width: 768px) {
    .brand-modal {
        padding: 10px;
    }
    
    .brand-modal-content {
        max-height: 90vh;
        border-radius: 15px;
    }
    
    .brand-detail-header {
        padding: 30px 20px !important;
    }
    
    .brand-detail-header h2 {
        font-size: 28px !important;
    }
    
    .brand-detail-header p {
        font-size: 16px !important;
    }
    
    .brand-detail-header > div {
        font-size: 45px !important;
    }
    
    .brand-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
    
    .brand-explore-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .brand-detail-header h2 {
        font-size: 24px !important;
    }
    
    .brand-detail-header p {
        font-size: 14px !important;
    }
    
    .brand-explore-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
}
