:root {
    --primary: #E91E8C;
    --primary-dark: #C4167A;
    --secondary: #9B2D9B;
    --accent: #FF6B9D;
    --gradient: linear-gradient(135deg, #E91E8C, #9B2D9B);
    --gradient-soft: linear-gradient(135deg, #FFF5F9, #F3E8FF);
    --bg-soft: #FFF5F9;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #F3F4F6;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(233,30,140,0.08);
    --shadow-lg: 0 8px 30px rgba(233,30,140,0.12);
    --shadow-xl: 0 20px 50px rgba(233,30,140,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Hind Siliguri', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ===================== PRELOADER ===================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-spinner {
    width: 50px; height: 50px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===================== TOP BAR ===================== */
.topbar {
    background: var(--gradient);
    padding: 8px 0;
    font-size: 13px;
    color: #fff;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar-left { display: flex; align-items: center; gap: 8px; }
.topbar-left i { font-size: 12px; }
.lang-btn {
    color: #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.lang-btn:hover { background: #fff; color: var(--primary); transform: scale(1.05); }

/* ===================== HEADER ===================== */
.main-header {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.main-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.logo img { max-height: 55px; width: auto; }

/* Navigation */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
    padding: 10px 18px;
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    position: relative;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: rgba(233,30,140,0.06);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}
.menu-toggle span {
    width: 24px; height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== HERO SLIDER ===================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(155,45,155,0.6), rgba(233,30,140,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}
.hero-content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.3;
}
.hero-content p {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.95;
    margin-bottom: 28px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.hero-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot.active { background: #fff; transform: scale(1.2); }

/* ===================== BUTTONS ===================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-primary i { transition: transform 0.3s ease; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================== SECTION TITLES ===================== */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title .tag {
    display: inline-block;
    background: rgba(233,30,140,0.1);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.section-title h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}
.section-title h2 span { color: var(--primary); }

/* ===================== STATS SECTION ===================== */
.stats-section {
    padding: 60px 0;
    background: var(--gradient-soft);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.stat-card {
    text-align: center;
    padding: 35px 20px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.stat-icon {
    width: 70px; height: 70px;
    margin: 0 auto 16px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}
.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===================== ENTREPRENEUR CARDS ===================== */
.section-padding { padding: 80px 0; }
.bg-soft { background: var(--bg-soft); }

.entrepreneur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.entrepreneur-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.entrepreneur-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.entrepreneur-card .card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.entrepreneur-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.entrepreneur-card:hover .card-image img {
    transform: scale(1.08);
}
.entrepreneur-card .card-image .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(155,45,155,0.8), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}
.entrepreneur-card:hover .card-overlay { opacity: 1; }
.entrepreneur-card .card-overlay .social-icons {
    display: flex;
    gap: 8px;
}
.entrepreneur-card .card-overlay .social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}
.entrepreneur-card .card-overlay .social-icon:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-3px);
}

.entrepreneur-card .card-body { padding: 20px; }
.entrepreneur-card .card-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.entrepreneur-card .card-body .business-name {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 6px;
}
.entrepreneur-card .card-body .business-type {
    display: inline-block;
    background: rgba(233,30,140,0.08);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}
.entrepreneur-card .card-body .address {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}
.entrepreneur-card .card-body .address i { color: var(--primary); font-size: 12px; }
.entrepreneur-card .card-body .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}
.entrepreneur-card .card-body .btn-link:hover { gap: 10px; }
.entrepreneur-card .card-body .btn-link i { transition: transform 0.3s ease; }
.entrepreneur-card .card-body .btn-link:hover i { transform: translateX(4px); }

/* ===================== ABOUT SECTION ===================== */
.about-section { overflow: hidden; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px; height: 120px;
    background: var(--gradient);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}
.about-content .section-tag {
    display: inline-block;
    background: rgba(233,30,140,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}
.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}
.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}
.mv-card {
    padding: 24px;
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.mv-card p { font-size: 13px; line-height: 1.7; color: var(--text-muted); margin: 0; }

/* ===================== GALLERY ===================== */
.gallery-section {
    background: var(--gradient);
    padding: 80px 0;
}
.gallery-section .section-title h2 { color: #fff; }
.gallery-section .section-title .tag { background: rgba(255,255,255,0.2); color: #fff; }

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.gallery-filter-btn {
    padding: 8px 22px;
    background: rgba(255,255,255,0.15);
    color: rgb(159 36 36 / 80%);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: #fff;
    color: var(--primary);
    transform: scale(1.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(155,45,155,0.8), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}
.gallery-overlay .category {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}
.gallery-overlay .zoom-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px; height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover .zoom-icon { transform: translate(-50%, -50%) scale(1); }

/* ===================== PROFILE PAGE ===================== */
.profile-hero-new {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}
.profile-avatar-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-hero-text { color: #fff; }
.profile-hero-text h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
}
.profile-hero-text .business {
    font-size: 16px;
    opacity: 0.9;
}

.profile-details {
    padding: 60px 0;
    background: var(--bg-soft);
}
.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.info-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.info-card:hover { box-shadow: var(--shadow-md); }
.info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.info-item:last-child { border: none; }
.info-item .icon {
    width: 40px; height: 40px;
    min-width: 40px;
    background: rgba(233,30,140,0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}
.info-item .label { font-size: 13px; color: var(--text-muted); margin-bottom: 2px; }
.info-item .value { font-size: 14px; font-weight: 600; color: var(--text-dark); }

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}
.social-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.social-link i {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}
.social-link.whatsapp i { background: #25D366; }
.social-link.phone i { background: var(--primary); }
.social-link.email i { background: var(--secondary); }
.social-link.facebook i { background: #3b5998; }
.social-link.instagram i { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.linkedin i { background: #0077b5; }
.social-link.website i { background: #444; }

.products-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.product-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}
.product-img:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-img img { width: 100%; height: 250px; object-fit: cover; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--primary);
    transition: all 0.3s ease;
}
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-muted);
}
.contact-item i { color: var(--primary); font-size: 16px; width: 20px; text-align: center; }
.contact-item a { color: var(--text-muted); }
.contact-item a:hover { color: var(--primary); }

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-top: 30px;
    height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-form {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(233,30,140,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===================== FOOTER ===================== */
.footer {
    background: var(--primary);
    color: #fff;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo img { max-height: 60px; margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; opacity: 0.9; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}
.footer-social a:hover { background: #fff; color: var(--primary); transform: translateY(-3px); }

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px; height: 3px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 14px;
    opacity: 0.85;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-links a:hover { opacity: 1; transform: translateX(4px); }
.footer-links a i { font-size: 10px; }

.footer-bottom {
    background: rgba(0,0,0,0.15);
    padding: 20px 0;
    margin-top: 40px;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 13px; opacity: 0.9; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; opacity: 0.85; }
.footer-bottom-links a:hover { opacity: 1; text-decoration: underline; }

/* ===================== 404 PAGE ===================== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    text-align: center;
    padding: 40px 20px;
}
.error-code {
    font-size: clamp(80px, 15vw, 160px);
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}
.error-page h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.error-page p { font-size: 16px; color: var(--text-muted); margin-bottom: 30px; }

/* ===================== TERMS/PRIVACY ===================== */
.policy-section { padding: 80px 0; }
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.policy-content h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}
.policy-content p, .policy-content ul {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px; height: 48px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 56px; height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
}

/* ===================== DIRECTORY LIST ===================== */
.directory-header {
    background: var(--gradient);
    padding: 60px 0 40px;
    text-align: center;
    color: #fff;
}
.directory-header h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.directory-header p { font-size: 16px; opacity: 0.9; }

.search-bar {
    max-width: 600px;
    margin: -25px auto 0;
    position: relative;
    z-index: 10;
}
.search-bar input {
    width: 100%;
    padding: 16px 60px 16px 24px;
    border: none;
    border-radius: var(--radius-xl);
    font-size: 15px;
    font-family: inherit;
    box-shadow: var(--shadow-lg);
    outline: none;
}
.search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px; height: 48px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}
.search-bar button:hover { transform: translateY(-50%) scale(1.05); }

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 8px 20px;
    background: #fff;
    color: var(--text-muted);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .entrepreneur-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .profile-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 9999;
        align-items: stretch;
        gap: 0;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a {
        padding: 14px 16px;
        border-radius: var(--radius-md);
        font-size: 16px;
    }
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; }

    .hero-slider { height: 60vh; min-height: 400px; }
    .entrepreneur-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .stats-grid { grid-template-columns: 1fr; max-width: 350px; margin: 0 auto; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .products-gallery { grid-template-columns: 1fr 1fr; }
    .social-grid { grid-template-columns: 1fr; }
    .profile-avatar-wrapper { width: 120px; height: 120px; }
    .policy-content { padding: 30px 20px; }
    .section-padding { padding: 50px 0; }
}

@media (max-width: 480px) {
    .topbar-left span { display: none; }
    .hero-content h1 { font-size: 24px; }
    .hero-content p { font-size: 14px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .products-gallery { grid-template-columns: 1fr; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ===================== ANIMATIONS ===================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.6s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ===================== LOADING SKELETON ===================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-md);
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===================== NO RESULTS ===================== */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
}
.no-results i { font-size: 48px; color: var(--border); margin-bottom: 16px; }
.no-results h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); }
.no-results p { font-size: 14px; }
