/* ===== CSS Variables & Reset ===== */
:root {
    --primary: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #f97316;
    --accent-light: #fb923c;
    --accent-dark: #ea580c;
    --success: #22c55e;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --text: #1e293b;
    --text-light: #64748b;
    --text-white: #ffffff;
    --bg: #ffffff;
    --bg-light: #eff6ff;
    --bg-dark: #0f172a;
    --bg-card: #ffffff;
    --border: #dbeafe;
    --shadow: 0 4px 20px rgba(29, 78, 216, 0.08);
    --shadow-lg: 0 10px 40px rgba(29, 78, 216, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Poppins', 'Noto Sans Devanagari', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Language Toggle ===== */
.lang-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.lang-btn {
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 15px;
    transition: var(--transition);
    color: var(--text-light);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
}

.lang-btn:hover {
    color: var(--primary);
}

.lang-btn.active:hover {
    color: #fff;
}

.lang-divider {
    color: var(--border);
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(26, 82, 118, 0.06);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
    color: #fff !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    background: linear-gradient(135deg, var(--accent-light), var(--accent)) !important;
    color: #fff !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 25%, #1d4ed8 60%, #7c3aed 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.18) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 100px 20px 60px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    display: block;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    background: linear-gradient(to right, #ffffff, #fde8d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    max-width: 650px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-brands {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.hero-brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-brand-img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.hero-brand-fallback {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-brand-abro-text {
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.hero-brand-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.hero-brand-since {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.hero-brand-plus {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceDown 2s infinite;
}

.hero-scroll a {
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-12px); }
    60% { transform: translateX(-50%) translateY(-6px); }
}

/* ===== Sections ===== */
.section {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.10), rgba(124, 58, 237, 0.08));
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border: 1px solid rgba(29, 78, 216, 0.15);
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

/* ===== About ===== */
.about {
    background: var(--bg-light);
}

/* Main 2-col split */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-headline {
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.25;
    position: relative;
    padding-left: 18px;
}

.about-headline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 5px;
    border-radius: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.about-text > p {
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.8;
}

.about-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--border);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(29,78,216,0.07);
    transition: var(--transition);
}

.trust-badge i {
    color: var(--accent);
    font-size: 0.9rem;
}

.trust-badge:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.trust-badge:hover i {
    color: #fff;
}

/* Banner image side */
.about-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-banner-img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.about-banner-fallback {
    min-height: 320px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #7c3aed 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 24px;
    background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-banner-overlay span:first-child {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.about-banner-overlay span:last-child {
    color: rgba(255,255,255,0.72);
    font-size: 0.85rem;
}

/* Stats strip */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #4f46e5 100%);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    margin-bottom: 56px;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.stat-num {
    font-size: clamp(2.4rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: var(--font-main);
}

.stat-plus {
    color: var(--accent);
    font-size: 0.75em;
    vertical-align: super;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.68);
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* Vision & Mission */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px;
}

.vm-card {
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vm-card::after {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    opacity: 0.08;
    transition: var(--transition);
}

.vm-card:hover::after {
    opacity: 0.14;
    transform: scale(1.1);
}

.vm-vision {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 1.5px solid #bfdbfe;
}

.vm-vision::after {
    background: var(--primary);
}

.vm-mission {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1.5px solid #fed7aa;
}

.vm-mission::after {
    background: var(--accent);
}

.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.vm-vision .vm-icon { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); }
.vm-mission .vm-icon { background: linear-gradient(135deg, var(--accent-dark), var(--accent-light)); }

.vm-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.vm-vision h3 { color: var(--primary-dark); }
.vm-mission h3 { color: var(--accent-dark); }

.vm-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 24px;
}

.about-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(29, 78, 216, 0.2);
}

.about-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.about-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.about-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.75;
}

/* ===== Brands ===== */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 30px;
}

.brand-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.jivanjor-card::before {
    background: linear-gradient(90deg, #1e3a8a, #1d4ed8, #7c3aed);
}

.abro-card::before {
    background: linear-gradient(90deg, #ea580c, #f97316, #fbbf24);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.jivanjor-card:hover { border-color: rgba(41, 128, 185, 0.2); }
.abro-card:hover { border-color: rgba(231, 76, 60, 0.2); }

.brand-logo {
    height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.brand-logo img {
    max-height: 100%;
    object-fit: contain;
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

.abro-logo-box {
    background: linear-gradient(135deg, #dc2626, #f97316);
    padding: 10px 28px;
    border-radius: 10px;
    display: inline-flex;
}

.brand-text-abro {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 3px;
}

.brand-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.brand-by {
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 14px;
}

.brand-card > p:not(.brand-by) {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.brand-since {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(243, 156, 18, 0.1));
    color: var(--accent-dark);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid rgba(230, 126, 34, 0.15);
}

.brand-since i {
    font-size: 0.75rem;
    color: var(--accent);
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.brand-tags span {
    background: var(--bg-light);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}

.brand-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.brand-link:hover {
    color: var(--accent);
}

/* ===== Products ===== */
.products {
    background: var(--bg-light);
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--border);
    border-radius: 12px;
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-color: var(--primary);
}

.product-panel {
    display: none;
}

.product-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-category {
    margin-bottom: 48px;
}

/* ===== Category Header ===== */
.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border-left: 5px solid transparent;
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
    line-height: 1.3;
}

.category-header p {
    font-size: 0.82rem;
    margin: 0;
    opacity: 0.7;
}

.cat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    flex-shrink: 0;
}

/* Category color themes */
.cat-green  { background: rgba(34, 197, 94, 0.07);  border-left-color: #16a34a; }
.cat-green .cat-icon { background: linear-gradient(135deg, #15803d, #22c55e); }
.cat-blue   { background: rgba(29, 78, 216, 0.07); border-left-color: #1d4ed8; }
.cat-blue .cat-icon { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.cat-orange { background: rgba(249, 115, 22, 0.07); border-left-color: #f97316; }
.cat-orange .cat-icon { background: linear-gradient(135deg, #ea580c, #fb923c); }
.cat-purple { background: rgba(124, 58, 237, 0.07); border-left-color: #7c3aed; }
.cat-purple .cat-icon { background: linear-gradient(135deg, #5b21b6, #a78bfa); }
.cat-red    { background: rgba(220, 38, 38, 0.07);  border-left-color: #dc2626; }
.cat-red .cat-icon { background: linear-gradient(135deg, #b91c1c, #f87171); }
.cat-teal   { background: rgba(13, 148, 136, 0.07); border-left-color: #0d9488; }
.cat-teal .cat-icon { background: linear-gradient(135deg, #0f766e, #2dd4bf); }
.cat-dark   { background: rgba(15, 23, 42, 0.06);   border-left-color: #334155; }
.cat-dark .cat-icon { background: linear-gradient(135deg, #0f172a, #475569); }

/* ===== Product Cards ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    padding: 24px 22px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 126, 34, 0.18);
}

.product-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
    flex-shrink: 0;
    color: #fff;
}

/* Product icon color variants */
.pci-green  { background: linear-gradient(135deg, #15803d, #22c55e); }
.pci-blue   { background: linear-gradient(135deg, #1e3a8a, #3b82f6); }
.pci-orange { background: linear-gradient(135deg, #ea580c, #fb923c); }
.pci-purple { background: linear-gradient(135deg, #5b21b6, #a78bfa); }
.pci-red    { background: linear-gradient(135deg, #b91c1c, #f87171); }
.pci-teal   { background: linear-gradient(135deg, #0f766e, #2dd4bf); }
.pci-dark   { background: linear-gradient(135deg, #0f172a, #475569); }

/* Product image wrapper — replaces static icon */
.product-img-wrap {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}

.product-img {
    max-width: 88%;
    max-height: 116px;
    object-fit: contain;
    transition: transform 0.35s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}

.product-card:hover .product-img {
    transform: scale(1.07);
}

/* Fallback icon inside img-wrap (shown only when img fails) */
.product-img-wrap .product-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.product-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}

.product-tagline {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 8px !important;
}

.product-card > p:not(.product-tagline) {
    color: var(--text-light);
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 14px;
}

.product-features span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--text);
    border: 1px solid var(--border);
    white-space: nowrap;
}

.product-features span i {
    color: var(--success);
    font-size: 0.7rem;
}

.product-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
    transition: var(--transition);
}

.product-card:hover .product-view-link {
    color: var(--accent);
    gap: 9px;
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.product-category h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-category h3 i {
    color: var(--accent);
}


/* ===== Why Us ===== */
.why-us {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #4f46e5 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.why-us .section-header .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.why-us .section-header h2 {
    color: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 24px;
}

.advantage-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    border-color: rgba(249, 115, 22, 0.5);
    background: rgba(255, 255, 255, 0.10);
}

.advantage-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.advantage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.advantage-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ===== Contact ===== */
.contact {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    font-size: 0.92rem;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.contact-map {
    position: relative;
}

.contact-map iframe {
    box-shadow: var(--shadow-lg);
}

.map-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.map-link:hover {
    color: var(--accent);
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
    100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    object-fit: contain;
    background: rgba(255,255,255,0.08);
    padding: 2px;
}

.footer-logo-row h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 0.88rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    opacity: 0.7;
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .nav-container {
        height: 68px;
    }
}

@media (max-width: 768px) {
    .lang-toggle {
        top: 14px;
        right: 68px;
        padding: 4px 10px;
        font-size: 0.75rem;
        gap: 4px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 12px 16px;
        width: 100%;
        text-align: center;
        border-radius: 10px;
    }

    .logo-img {
        width: 38px;
        height: 38px;
    }

    .logo-name {
        font-size: 1rem;
    }

    .logo-tagline {
        display: none;
    }

    .hero-content {
        padding: 90px 16px 70px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

    .hero-brands {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-brand-card {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }

    .hero-brand-img {
        width: 100px;
        height: 50px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 13px 24px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
        padding: 28px 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 1 calc(50% - 12px);
        min-width: 100px;
    }

    .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .cat-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 1.1rem;
    }

    .category-header h3 {
        font-size: 1.05rem;
    }

    .product-features {
        gap: 5px;
    }

    .product-features span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .brand-card {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-map iframe {
        height: 260px;
    }

    .about-card {
        padding: 28px 20px;
    }

    .advantage-card {
        padding: 24px 20px;
    }

    .product-tabs {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .tab-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content {
        padding: 85px 14px 60px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.72rem;
        letter-spacing: 0.5px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-tag {
        font-size: 0.78rem;
    }

    .about-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .product-card {
        padding: 22px 18px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }

    .whatsapp-float {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-logo-img {
        width: 38px;
        height: 38px;
    }

    .advantage-number {
        font-size: 2rem;
    }

    .contact-actions {
        gap: 10px;
    }

    .brand-tags span {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

@media (max-width: 360px) {
    .logo-name {
        font-size: 0.9rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-brand-card {
        max-width: 100%;
    }

    .hero-brand-img {
        width: 90px;
        height: 44px;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* ===== Scroll Animation ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
