/* ============================================
   RADHIKA PAINTS - Premium Paint Dealer Website
   Professional Light Theme | Asian Paints Inspired
   ============================================ */

:root {
  --primary: #e8282b;        /* Bold Red - Asian Paints inspired */
  --primary-dark: #c01f21;
  --primary-light: #fef2f2;
  --secondary: #1a1a2e;      /* Deep navy */
  --accent: #f59e0b;         /* Gold accent */
  --accent-light: #fef3c7;
  --text-dark: #1a1a2e;
  --text-mid: #4b5563;
  --text-light: #9ca3af;
  --white: #ffffff;
  --bg-light: #f8f9fb;
  --bg-section: #f1f4f8;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-main: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* ============ UTILITY ============ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: none; text-decoration: none; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,40,43,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-gold { background: var(--accent); color: var(--white); }
.btn-gold:hover { background: #d97706; transform: translateY(-2px); }

.section-label { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { font-size: 1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto 3rem; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 1rem auto 2rem; }

/* ============ TOP BAR ============ */
.top-bar { background: var(--secondary); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 0.5rem 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a, .top-bar span { color: rgba(255,255,255,0.85); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; margin-right: 1.2rem; transition: color 0.2s; }
.top-bar a:hover { color: var(--accent); }
.top-bar .fab.fa-whatsapp { color: #25d366; }

/* ============ HEADER ============ */
.main-header { background: var(--white); box-shadow: 0 2px 15px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; transition: var(--transition); }
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; gap: 1.5rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo .logo-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; flex-shrink: 0; }
.logo-name { display: block; font-size: 1.2rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.logo-tagline { display: block; font-size: 0.7rem; color: var(--text-light); font-weight: 400; }

/* Nav */
.main-nav ul { list-style: none; display: flex; align-items: center; gap: 0.25rem; }
.main-nav a { color: var(--text-dark); text-decoration: none; font-weight: 500; font-size: 0.9rem; padding: 0.5rem 0.75rem; border-radius: 8px; display: flex; align-items: center; gap: 0.3rem; transition: var(--transition); position: relative; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--primary-light); }
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; padding: 0.5rem; z-index: 999; border-top: 3px solid var(--primary); }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { font-size: 0.88rem; padding: 0.6rem 1rem; border-radius: 8px; color: var(--text-mid); }
.dropdown li a:hover { color: var(--primary); background: var(--primary-light); }
.fa-chevron-down { font-size: 0.7rem; }

.header-cta { display: flex; align-items: center; gap: 0.75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ============ HERO SLIDER ============ */
.hero-section { position: relative; overflow: hidden; }
.hero-swiper { height: 90vh; min-height: 580px; max-height: 800px; }
.hero-slide { position: relative; display: flex; align-items: center; overflow: hidden; }
.hero-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,26,46,0.82) 0%, rgba(26,26,46,0.55) 50%, transparent 100%); z-index: 1; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 6s ease; }
.hero-swiper .swiper-slide-active .hero-bg { transform: scale(1.06); }
.hero-content { position: relative; z-index: 2; color: white; max-width: 680px; padding: 2rem 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,40,43,0.9); color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem; }
.hero-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.2rem; }
.hero-title span { color: var(--accent); }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.88); margin-bottom: 0.75rem; line-height: 1.7; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.hero-tag { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); color: white; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.82rem; border: 1px solid rgba(255,255,255,0.25); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-swiper .swiper-pagination-bullet { background: white; opacity: 0.6; width: 8px; height: 8px; }
.hero-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--accent); width: 24px; border-radius: 4px; }

/* ============ WHY CHOOSE US ============ */
.why-choose { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.why-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary-light), #ffe4e6); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--primary); font-size: 1.6rem; transition: var(--transition); }
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.7; }

/* ============ BRANDS STRIP ============ */
.brands-section { background: var(--white); padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-label { font-size: 0.8rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem; }
.brands-grid { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; }
.brand-item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; padding: 1.5rem 2rem; border: 2px solid var(--border); border-radius: var(--radius); transition: var(--transition); min-width: 160px; }
.brand-item:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.brand-item-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.4rem; }
.brand-item span { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.brand-item small { font-size: 0.75rem; color: var(--text-light); }

/* ============ PRODUCTS PREVIEW ============ */
.products-section { background: var(--bg-light); }
.product-cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.product-cat-card { background: var(--white); border-radius: var(--radius); padding: 2rem 1.25rem; text-align: center; text-decoration: none; color: var(--text-dark); border: 2px solid var(--border); transition: var(--transition); }
.product-cat-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.cat-icon { width: 70px; height: 70px; background: linear-gradient(135deg, var(--primary-light), #ffe4e6); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: var(--primary); font-size: 1.8rem; transition: var(--transition); }
.product-cat-card:hover .cat-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.product-cat-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.product-cat-card p { font-size: 0.8rem; color: var(--text-light); }

/* ============ FEATURED PRODUCTS CARDS ============ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img { height: 200px; background: var(--bg-section); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img .product-placeholder { font-size: 3rem; color: var(--text-light); }
.product-brand { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--primary); color: white; font-size: 0.7rem; font-weight: 700; padding: 0.25rem 0.6rem; border-radius: 20px; }
.product-body { padding: 1.25rem; }
.product-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.product-body p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.product-sizes { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.size-badge { background: var(--bg-section); color: var(--text-mid); font-size: 0.72rem; padding: 0.2rem 0.6rem; border-radius: 20px; border: 1px solid var(--border); }
.product-inquiry { display: flex; align-items: center; gap: 0.4rem; color: #25d366; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: var(--transition); }
.product-inquiry:hover { color: #128c7e; }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--white); }
.testimonials-swiper { padding: 1rem 0 3rem !important; }
.testimonial-card { background: var(--bg-light); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); height: auto; }
.stars { color: var(--accent); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; position: relative; }
.testimonial-text::before { content: '\201C'; font-family: var(--font-display); font-size: 4rem; color: var(--primary); opacity: 0.15; position: absolute; top: -1.5rem; left: -0.5rem; line-height: 1; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; font-weight: 700; flex-shrink: 0; }
.author-info strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.author-info span { font-size: 0.78rem; color: var(--text-light); }

/* ============ COUNTER STATS ============ */
.stats-section { background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%); color: white; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-number span { font-size: 1.8rem; }
.stat-label { font-size: 0.88rem; color: rgba(255,255,255,0.75); margin-top: 0.5rem; }

/* ============ CONTACT STRIP ============ */
.contact-strip { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 60px 0; }
.contact-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.contact-strip-text h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.5rem; }
.contact-strip-text p { opacity: 0.9; font-size: 0.95rem; }
.contact-strip-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: white; color: var(--primary); }

/* ============ PRODUCTS PAGE ============ */
.page-hero { background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%); color: white; padding: 80px 0; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1rem; opacity: 0.85; max-width: 550px; margin: 0 auto; }
.page-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; margin-top: 1.5rem; opacity: 0.8; }
.page-breadcrumb a { color: var(--accent); text-decoration: none; }
.page-breadcrumb span { opacity: 0.6; }

.product-section-block { padding: 60px 0; }
.product-section-block:nth-child(even) { background: var(--bg-light); }
.product-section-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--border); }
.product-section-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; flex-shrink: 0; }
.product-section-header h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-dark); }
.product-section-header p { font-size: 0.88rem; color: var(--text-mid); margin-top: 0.25rem; }

/* Product cards full listing */
.product-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; }
.product-list-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: flex; flex-direction: column; transition: var(--transition); }
.product-list-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plc-image { height: 220px; background: var(--bg-section); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.plc-image img { width: 100%; height: 100%; object-fit: cover; }
.plc-brand-tag { position: absolute; top: 0.75rem; right: 0.75rem; background: var(--primary); color: white; font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; }
.plc-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.plc-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-dark); }
.plc-body p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.plc-features { list-style: none; margin-bottom: 1rem; }
.plc-features li { font-size: 0.8rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; padding: 0.2rem 0; }
.plc-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.plc-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.plc-sizes { font-size: 0.75rem; color: var(--text-light); }
.plc-wa { display: inline-flex; align-items: center; gap: 0.4rem; background: #25d366; color: white; font-size: 0.8rem; font-weight: 600; padding: 0.5rem 1rem; border-radius: 50px; text-decoration: none; transition: var(--transition); }
.plc-wa:hover { background: #128c7e; }

/* Accessories & Chemicals list */
.items-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.item-chip { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); font-size: 0.88rem; font-weight: 500; color: var(--text-dark); transition: var(--transition); }
.item-chip i { color: var(--primary); width: 20px; text-align: center; }
.item-chip:hover { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); }

/* ============ WHOLESALE PAGE ============ */
.wholesale-clients { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.client-card { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.25rem; text-align: center; border: 2px solid var(--border); transition: var(--transition); }
.client-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.client-card .client-icon { font-size: 2rem; color: var(--primary); margin-bottom: 0.75rem; }
.client-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.35rem; }
.client-card p { font-size: 0.8rem; color: var(--text-mid); }

/* ============ FORMS ============ */
.form-section { background: var(--bg-light); }
.form-wrapper { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); max-width: 700px; margin: 0 auto; }
.form-wrapper h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-wrapper p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select { padding: 0.75rem 1rem; border: 2px solid var(--border); border-radius: 10px; font-family: var(--font-main); font-size: 0.9rem; color: var(--text-dark); outline: none; transition: var(--transition); background: var(--bg-light); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); background: white; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.wa-submit-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.75rem; display: flex; align-items: center; gap: 0.4rem; }
.wa-submit-note i { color: #25d366; }

/* ============ CONTRACT PAGE ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 2rem; border: 2px solid var(--border); transition: var(--transition); }
.service-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-light), #ffe4e6); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.5rem; margin-bottom: 1.25rem; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; }
.service-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

.project-types { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 2rem 0; }
.project-type-badge { display: flex; align-items: center; gap: 0.5rem; background: var(--white); border: 2px solid var(--border); padding: 0.6rem 1.2rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.project-type-badge i { color: var(--primary); }
.project-type-badge:hover { border-color: var(--primary); background: var(--primary-light); }

/* ============ GALLERY PAGE ============ */
.gallery-filters { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.gallery-filter { padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.88rem; font-weight: 600; cursor: pointer; border: 2px solid var(--border); background: var(--white); color: var(--text-mid); transition: var(--transition); }
.gallery-filter.active, .gallery-filter:hover { background: var(--primary); color: white; border-color: var(--primary); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; background: var(--bg-section); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: white; }
.gallery-overlay-text strong { display: block; font-size: 0.95rem; font-weight: 700; }
.gallery-overlay-text span { font-size: 0.78rem; opacity: 0.85; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; color: var(--text-light); font-size: 0.85rem; background: var(--bg-section); }
.gallery-placeholder i { font-size: 2.5rem; color: var(--border); }

/* ============ CONTACT PAGE ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.cic-icon { width: 46px; height: 46px; background: linear-gradient(135deg, var(--primary-light), #ffe4e6); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem; flex-shrink: 0; }
.cic-text strong { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--text-dark); }
.cic-text a, .cic-text p { font-size: 0.88rem; color: var(--text-mid); text-decoration: none; line-height: 1.6; }
.cic-text a:hover { color: var(--primary); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 250px; margin-top: 1.25rem; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============ FOOTER ============ */
.main-footer { background: var(--secondary); color: rgba(255,255,255,0.85); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo .logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
.footer-logo .logo-name { color: white; font-size: 1.1rem; font-weight: 800; }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.6); font-size: 0.7rem; }
.footer-about { font-size: 0.85rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 1.25rem; }
.footer-contact-info { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-info a, .footer-contact-info span { font-size: 0.85rem; color: rgba(255,255,255,0.75); text-decoration: none; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.footer-contact-info a:hover { color: var(--accent); }
.footer-contact-info .fab.fa-whatsapp { color: #25d366; }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid rgba(255,255,255,0.1); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.7); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.brand-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); font-size: 0.78rem; padding: 0.35rem 0.75rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.15); }
.brand-badge i { color: var(--accent); font-size: 0.7rem; }
.footer-hours { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-hours span { font-size: 0.82rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============ FLOATING ELEMENTS ============ */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 58px; height: 58px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; text-decoration: none; z-index: 999; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); background: #128c7e; }
.wa-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--secondary); color: white; font-size: 0.78rem; padding: 0.4rem 0.8rem; border-radius: 6px; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.wa-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--secondary); }
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.back-to-top { position: fixed; bottom: 6rem; right: 2rem; width: 44px; height: 44px; background: var(--primary); color: white; border-radius: 50%; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 1rem; z-index: 999; box-shadow: var(--shadow); transition: var(--transition); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ============ ADMIN STYLES ============ */
.admin-body { font-family: var(--font-main); background: #f1f4f8; }
.admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; width: 260px; background: var(--secondary); color: white; z-index: 100; overflow-y: auto; transition: var(--transition); }
.admin-sidebar-logo { padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; gap: 0.75rem; }
.admin-sidebar-logo span { font-size: 1rem; font-weight: 800; }
.admin-sidebar-logo small { font-size: 0.7rem; opacity: 0.6; display: block; }
.admin-nav { padding: 1rem 0; }
.admin-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.1); color: white; }
.admin-nav a i { width: 18px; text-align: center; font-size: 0.95rem; }
.admin-nav .nav-section { padding: 1rem 1.5rem 0.5rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.admin-main { margin-left: 260px; min-height: 100vh; }
.admin-topbar { background: white; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 99; }
.admin-topbar h1 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }
.admin-content { padding: 2rem; }
.admin-card { background: white; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); margin-bottom: 1.5rem; }
.admin-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--text-dark); padding-bottom: 0.75rem; border-bottom: 2px solid var(--border); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: white; border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--border); }
.stat-card .stat-val { font-size: 2.2rem; font-weight: 800; color: var(--primary); }
.stat-card .stat-lbl { font-size: 0.85rem; color: var(--text-mid); margin-top: 0.25rem; }
.stat-card .stat-icon { float: right; font-size: 2rem; color: var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th { padding: 0.75rem 1rem; text-align: left; font-weight: 700; color: var(--text-mid); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--border); }
.admin-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-dark); vertical-align: middle; }
.admin-table tr:hover td { background: var(--bg-light); }
.badge { display: inline-block; padding: 0.25rem 0.6rem; border-radius: 20px; font-size: 0.72rem; font-weight: 700; }
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-contacted { background: #fef3c7; color: #d97706; }
.badge-converted { background: #d1fae5; color: #065f46; }
.badge-closed { background: var(--bg-section); color: var(--text-light); }
.badge-published { background: #d1fae5; color: #065f46; }
.badge-draft { background: #fef3c7; color: #d97706; }
.admin-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: none; text-decoration: none; transition: var(--transition); }
.admin-btn-primary { background: var(--primary); color: white; }
.admin-btn-primary:hover { background: var(--primary-dark); }
.admin-btn-secondary { background: var(--bg-section); color: var(--text-dark); border: 1px solid var(--border); }
.admin-btn-danger { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.admin-btn-danger:hover { background: #dc2626; color: white; }
.admin-form-group { margin-bottom: 1.25rem; }
.admin-form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-dark); }
.admin-form-group input, .admin-form-group textarea, .admin-form-group select { width: 100%; padding: 0.7rem 1rem; border: 2px solid var(--border); border-radius: 8px; font-family: var(--font-main); font-size: 0.9rem; outline: none; transition: var(--transition); }
.admin-form-group input:focus, .admin-form-group textarea:focus, .admin-form-group select:focus { border-color: var(--primary); }
.admin-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

/* ============ ALERTS ============ */
.alert { padding: 1rem 1.25rem; border-radius: 10px; font-size: 0.9rem; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .admin-sidebar { transform: translateX(-100%); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1rem; box-shadow: var(--shadow-md); border-top: 3px solid var(--primary); }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a { padding: 0.75rem 1rem; border-radius: 8px; }
    .dropdown { position: static; box-shadow: none; border: none; padding-left: 1rem; display: none; border-top: none; }
    .has-dropdown.open .dropdown { display: block; }
    .hamburger { display: flex; }
    .header-inner { position: relative; }
}
@media (max-width: 768px) {
    .section-padding { padding: 55px 0; }
    .hero-swiper { height: 75vh; min-height: 500px; }
    .hero-title { font-size: 1.8rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-strip-inner { flex-direction: column; text-align: center; }
    .form-grid { grid-template-columns: 1fr; }
    .admin-form-row { grid-template-columns: 1fr; }
    .top-bar .container { justify-content: center; }
    .top-bar-right { display: none; }
}
@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .hero-btns { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============ ADDITIONAL RESPONSIVE FIXES ============ */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .product-section-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
@media (max-width: 768px) {
    /* Contract page intro grid */
    .section-padding > .container > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    /* Blog single post grid */
    .section-padding > .container > div[style*="grid-template-columns:1fr 300px"] {
        grid-template-columns: 1fr !important;
    }
    /* Product detail grid */
    .section-padding > .container > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    .hero-swiper { height: 82vh; min-height: 480px; }
    .wholesale-clients { grid-template-columns: 1fr 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .top-bar-left a:last-child { display: none; }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .why-card { padding: 1.25rem 1rem; }
    .why-icon { width: 52px; height: 52px; font-size: 1.3rem; }
    .why-card h3 { font-size: .88rem; }
    .wholesale-clients { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .hero-content { padding: 1rem 0; }
    .hero-btns .btn { padding: .75rem 1.4rem; font-size: .88rem; }
    .product-cats { grid-template-columns: 1fr 1fr; }
    .items-list-grid { grid-template-columns: 1fr 1fr; }
    .brand-item { min-width: 130px; padding: 1rem; }
    .form-wrapper { padding: 1.5rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 1.25rem; right: 1.25rem; }
    .back-to-top { bottom: 5rem; right: 1.25rem; }
}

/* ============ PRINT STYLES ============ */
@media print {
    .main-header, .top-bar, .whatsapp-float, .back-to-top, .contact-strip, .hero-section { display: none !important; }
    body { color: #000; }
}

/* ============ ADMIN RESPONSIVE ============ */
@media (max-width: 900px) {
    .admin-sidebar {
        position: fixed;
        left: 0; top: 0; bottom: 0;
        transform: translateX(-100%);
        z-index: 200;
        transition: transform 0.3s ease;
        width: 260px;
    }
    .admin-sidebar.open { transform: translateX(0); box-shadow: 0 0 0 100vw rgba(0,0,0,.4); }
    .admin-main { margin-left: 0 !important; }
    .admin-content { padding: 1.25rem; }
    .stat-cards { grid-template-columns: 1fr 1fr; }
    .admin-form-row { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
    .stat-cards { grid-template-columns: 1fr; }
    .admin-topbar { padding: .75rem 1rem; }
    .admin-topbar h1 { font-size: 1rem; }
    .login-box { padding: 2rem 1.25rem; margin: 1rem; }
}

/* ============ GALLERY LIGHTBOX HINT ============ */
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
    z-index: 2;
}
.gallery-item:hover::after { transform: translate(-50%, -50%) scale(1); }

/* ============ SMOOTH PAGE TRANSITIONS ============ */
main, section { animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ============ PRODUCT SECTION ANCHOR OFFSET (for sticky header) ============ */
[id] { scroll-margin-top: 90px; }

/* ============ FOCUS STYLES (Accessibility) ============ */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}
