/* ============================================
   ROHIT SAMAJ - Main Stylesheet
   282 Pargana Rohit Samaj Community Portal
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
    --primary: #1a237e;
    --primary-light: #283593;
    --primary-dark: #0d1652;
    --secondary: #f9a825;
    --secondary-light: #fdd835;
    --accent: #00897b;
    --accent-light: #26a69a;
    --warm: #e65100;
    --info: #0277bd;
    --purple: #6a1b9a;
    --bg: #f5f5f5;
    --bg-white: #ffffff;
    --dark: #212121;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
    --radius: 8px;
    --radius-lg: 16px;
    --font-en: 'Poppins', sans-serif;
    --font-gu: 'Noto Sans Gujarati', sans-serif;
    --transition: all 0.3s ease;
    --container: 1200px;
}

/* --- Language Toggle --- */
.lang-gu { display: none; }
body.lang-gujarati .lang-en { display: none; }
body.lang-gujarati .lang-gu { display: inline; }
.lang-gu-block { display: none; }
body.lang-gujarati .lang-en-block { display: none; }
body.lang-gujarati .lang-gu-block { display: block; }
body.lang-gujarati .lang-en-flex { display: none; }
body.lang-gujarati .lang-gu-flex { display: flex; }
.lang-gu-flex { display: none; }
body.lang-gujarati .lang-en-li { display: none; }
body.lang-gujarati .lang-gu-li { display: list-item; }
.lang-gu-li { display: none; }

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-en);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--secondary);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* --- Layout --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.site-main {
    min-height: 60vh;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,35,126,0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--secondary);
    font-size: 12px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.language-toggle {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 2px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    padding: 4px 12px;
    border-radius: 18px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-en);
}

.lang-btn.active {
    background: var(--secondary);
    color: var(--dark);
}

.lang-btn:hover:not(.active) {
    color: #fff;
}

.top-link {
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.top-link:hover {
    color: var(--secondary);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

/* Logo */
.site-logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-gujarati {
    font-family: var(--font-gu);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.logo-english {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu li a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--primary);
    background: rgba(26,35,126,0.06);
}

/* Events Menu Highlight Blink */
.menu-item-highlight a {
    position: relative;
    color: var(--warm) !important;
    font-weight: 600 !important;
}

.nav-blink-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53935;
    margin-left: 2px;
    vertical-align: top;
    position: relative;
    top: 2px;
    animation: navBlink 1.2s ease-in-out infinite;
}

@keyframes navBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

/* === Hero Row: Portrait — Text — Portrait === */
.hero-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

/* Portrait Containers */
.hero-portrait {
    flex: 0 0 auto;
    text-align: center;
}

.hero-portrait-frame {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.08);
    margin: 0 auto;
}

.hero-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Golden frame for Ravidas Ji */
.hero-portrait-golden {
    border: 5px solid rgba(249,168,37,0.6);
    box-shadow: 0 8px 40px rgba(249,168,37,0.25), 0 0 0 2px rgba(249,168,37,0.15);
}

.hero-portrait-label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    margin-top: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
    max-width: 180px;
}

/* Center Text Column */
.hero-center {
    flex: 0 1 auto;
    text-align: center;
    min-width: 0;
}

.hero-title-gu {
    font-family: var(--font-gu);
    font-size: 2.6rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.hero-title-en {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* Gold Decorative Divider */
.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 18px 0;
}

.hero-divider-line {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    border-radius: 1px;
}

.hero-divider-icon {
    color: var(--secondary);
    font-size: 14px;
    opacity: 0.9;
}

.hero-tagline {
    font-family: var(--font-gu);
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-tagline-en {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* === Hero Action Buttons Row === */
.hero-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.hero-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 8px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-action-btn i {
    font-size: 15px;
    opacity: 0.9;
}

.hero-action-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #fff;
}

.hero-action-btn:first-child {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
}

.hero-action-btn:first-child:hover {
    background: var(--secondary-light);
    border-color: var(--secondary-light);
    color: var(--primary-dark);
    box-shadow: 0 6px 24px rgba(249,168,37,0.35);
}

/* Hero Wave Divider */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.25rem;
    color: var(--dark);
    margin-bottom: 12px;
    position: relative;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 16px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.title-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 0 auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 80px 0;
    background: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: block;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-accent, var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

/* Per-card accent colors via nth-child */
.services-grid .service-card:nth-child(1) { --card-accent: var(--primary); }
.services-grid .service-card:nth-child(2) { --card-accent: var(--secondary); }
.services-grid .service-card:nth-child(3) { --card-accent: var(--accent); }
.services-grid .service-card:nth-child(4) { --card-accent: var(--warm); }
.services-grid .service-card:nth-child(5) { --card-accent: var(--info); }
.services-grid .service-card:nth-child(6) { --card-accent: var(--purple); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    color: var(--text);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(26,35,126,0.08);
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.service-icon.icon-secondary {
    background: rgba(249,168,37,0.12);
    color: var(--secondary);
}

.service-card:hover .icon-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.service-icon.icon-accent {
    background: rgba(0,137,123,0.1);
    color: var(--accent);
}

.service-card:hover .icon-accent {
    background: var(--accent);
    color: #fff;
}

.service-icon.icon-warm {
    background: rgba(230,81,0,0.1);
    color: var(--warm);
}

.service-card:hover .icon-warm {
    background: var(--warm);
    color: #fff;
}

.service-icon.icon-info {
    background: rgba(2,119,189,0.1);
    color: var(--info);
}

.service-card:hover .icon-info {
    background: var(--info);
    color: #fff;
}

.service-icon.icon-purple {
    background: rgba(106,27,154,0.1);
    color: var(--purple);
}

.service-card:hover .icon-purple {
    background: var(--purple);
    color: #fff;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-card:hover .service-link {
    gap: 10px;
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 70px 0;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview-section {
    padding: 80px 0;
    background: #fff;
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--secondary);
}

.exp-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-preview-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.about-gujarati {
    font-family: var(--font-gu);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-features {
    margin: 20px 0 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    color: var(--text);
}

.about-features li i {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary);
}

.testimonial-quote {
    color: var(--primary);
    font-size: 2rem;
    opacity: 0.2;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26,35,126,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 28px;
    color: var(--primary);
}

.author-info h4 {
    font-size: 15px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(249,168,37,0.1), transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0,137,123,0.1), transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ============================================
   WHATSAPP FLOAT & SCROLL TOP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 90px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ============================================
   CONTENT PAGES (index, page, single, etc.)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 60px 0 50px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(249,168,37,0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,137,123,0.08), transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    margin-top: 16px;
    color: rgba(255,255,255,0.5);
    position: relative;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.content-area {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.content-grid.full-width {
    grid-template-columns: 1fr;
}

/* Blog / Post Cards */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.post-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.post-card-thumb {
    height: 200px;
    overflow: hidden;
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-card:hover .post-card-thumb img {
    transform: scale(1.05);
}

.post-card-body {
    padding: 24px;
}

.post-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.post-card-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.post-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.post-card-body h3 a {
    color: var(--dark);
}

.post-card-body h3 a:hover {
    color: var(--primary);
}

.post-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.read-more:hover {
    gap: 10px;
    color: var(--primary-light);
}

/* Single Post */
.single-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.single-content h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.single-content .entry-meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content p {
    margin-bottom: 18px;
    color: var(--text);
}

.entry-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.entry-content ul,
.entry-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li {
    margin-bottom: 8px;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary);
    background: rgba(26,35,126,0.04);
    padding: 20px 24px;
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404-page {
    text-align: center;
    padding: 80px 20px;
}

.error-404-page .error-number {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.15;
}

.error-404-page h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.error-404-page p {
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 30px;
}

/* ============================================
   SEARCH
   ============================================ */
.search-form-wrap {
    max-width: 500px;
    margin: 0 auto 40px;
}

.search-form {
    display: flex;
    gap: 8px;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--font-en);
    outline: none;
    transition: var(--transition);
}

.search-form input[type="search"]:focus {
    border-color: var(--primary);
}

.search-form button {
    padding: 12px 24px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--primary-light);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--primary);
    color: #fff;
}

/* ============================================
   FORMS (General)
   ============================================ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-en);
    color: var(--text);
    background: #fff;
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

/* ============================================
   WORDPRESS DEFAULTS
   ============================================ */
.wp-block-image img {
    border-radius: var(--radius);
}

.aligncenter {
    display: block;
    margin: 20px auto;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Sticky header offset for anchor links */
:target {
    scroll-margin-top: 100px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-block {
    margin-bottom: 60px;
}

.about-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-block-content .section-tag {
    margin-bottom: 12px;
}

.about-block-content h2 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.about-block-content .about-gujarati {
    font-family: var(--font-gu);
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-block-content p {
    font-size: 15px;
    line-height: 1.8;
}

.about-block-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-block-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Leaders */
.leaders-section {
    margin-bottom: 60px;
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.leader-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.leader-card:hover .leader-image {
    border-color: var(--primary);
}

.leader-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid rgba(26,35,126,0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.leader-gujarati {
    font-family: var(--font-gu);
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.leader-card > p:last-of-type {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Values */
.values-section {
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26,35,126,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   SUGGESTION FORM PAGE
   ============================================ */
.suggestion-form-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-header-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.form-header-info h2 {
    font-family: var(--font-gu);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.form-header-info h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.form-header-info p {
    font-family: var(--font-gu);
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Form Alerts */
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
}

.form-alert i {
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-alert-success {
    background: rgba(46,160,67,0.08);
    border: 1px solid rgba(46,160,67,0.2);
    color: #1a7f37;
}

.form-alert-success i {
    color: #2ea043;
}

.form-alert-error {
    background: rgba(218,54,51,0.08);
    border: 1px solid rgba(218,54,51,0.2);
    color: #cf222e;
}

.form-alert-error i {
    color: #da3633;
}

/* Form Layout */
.rs-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.rs-form .form-group {
    margin-bottom: 0;
}

.rs-form .form-group-full {
    margin-bottom: 20px;
}

.rs-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.rs-form label small {
    font-weight: 400;
    color: var(--text-muted);
}

.required {
    color: #da3633;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Checkboxes */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-size: 15px;
    color: var(--text);
    cursor: pointer;
    padding: 10px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    margin-bottom: 0;
}

.checkbox-label:hover {
    border-color: var(--primary);
    background: rgba(26,35,126,0.02);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
}

/* Submit */
.form-submit {
    text-align: center;
    margin-top: 28px;
    margin-bottom: 20px;
}

.form-footer-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.form-footer-note i {
    color: var(--primary);
    margin-right: 4px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26,35,126,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
}

.contact-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-form-section {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-form-section h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.contact-form-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-form-section .btn {
    margin-top: 12px;
}

/* ============================================
   EMPTY STATES (Matrimonial, Business, Jobs, Events)
   ============================================ */
.empty-state {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 0 auto;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}

.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(26,35,126,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.empty-state h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.empty-state .btn {
    margin-top: 8px;
}

/* ============================================
   FEATURE GRID (Matrimonial page)
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(26,35,126,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: #fff;
}

.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* ============================================
   GUJARATI LANGUAGE MODE
   ============================================ */
body.lang-gujarati {
    font-family: var(--font-gu), var(--font-en), sans-serif;
}

body.lang-gujarati h1,
body.lang-gujarati h2,
body.lang-gujarati h3,
body.lang-gujarati h4 {
    font-family: var(--font-gu), var(--font-en), sans-serif;
}

body.lang-gujarati .btn {
    font-family: var(--font-gu), var(--font-en), sans-serif;
}

/* ============================================
   MOBILE NAV OVERLAY (responsive only)
   ============================================ */
.nav-overlay {
    display: none;
}

/* ============================================
   AUTH FORMS (Register, Login)
   ============================================ */
.auth-form-wrap {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--primary), var(--secondary)) 1;
}

.auth-form-wrap.register-form {
    max-width: 800px;
}

.password-field {
    position: relative;
}

.password-field input {
    padding-right: 44px;
}

.password-toggle {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    line-height: 1;
}

.password-toggle:hover {
    color: var(--primary);
}

.form-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-light);
}

.form-footer-link a {
    color: var(--primary);
    font-weight: 600;
}

.form-footer-link a:hover {
    color: var(--secondary);
}

.form-row-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.checkbox-label-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox-label-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-row-flex a {
    color: var(--primary);
    font-size: 13px;
}

.form-row-flex a:hover {
    color: var(--secondary);
}

.form-alert-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #e8f4fd;
    color: #0277bd;
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid #0277bd;
}

.form-alert-info i {
    font-size: 18px;
    margin-top: 2px;
}

.btn-resend {
    background: none;
    border: 1px solid #0277bd;
    color: #0277bd;
    padding: 6px 14px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 13px;
    margin-top: 8px;
    display: inline-block;
    transition: var(--transition);
}

.btn-resend:hover {
    background: #0277bd;
    color: #fff;
}

.input-readonly {
    background: var(--bg) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-wrap {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.dashboard-user-card {
    text-align: center;
    padding: 30px 20px;
    border-bottom: 1px solid var(--border);
}

.dashboard-user-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: block;
    margin: 0 auto 12px;
    border: 3px solid var(--primary);
}

.dashboard-user-card h4 {
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.dashboard-user-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    word-break: break-word;
}

.badge {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-verified {
    background: rgba(46, 160, 67, 0.1);
    color: #1a7f37;
}

.badge-unverified {
    background: rgba(218, 54, 51, 0.1);
    color: #cf222e;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
}

.dashboard-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.dashboard-nav-link:last-child {
    border-bottom: none;
}

.dashboard-nav-link:hover {
    background: rgba(26, 35, 126, 0.04);
    color: var(--primary);
}

.dashboard-nav-link.active {
    background: rgba(26, 35, 126, 0.06);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    font-weight: 600;
}

.dashboard-nav-link i {
    width: 20px;
    text-align: center;
}

.dashboard-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.dashboard-section {
    margin-bottom: 30px;
}

.dashboard-section:last-child {
    margin-bottom: 0;
}

.dashboard-section h3 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-section h3 i {
    color: var(--primary);
}

.account-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.account-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: var(--radius);
}

.account-info-item > i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.info-label {
    font-size: 12px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.info-value {
    font-weight: 600;
    font-size: 14px;
    word-break: break-word;
}

/* ============================================
   BUSINESS DIRECTORY
   ============================================ */

/* --- Filter Bar --- */
.business-filter-bar {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.filter-group {
    flex: 1;
    min-width: 160px;
}

.filter-group select,
.filter-group input[type="text"],
.filter-group input[type="number"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg);
    transition: border-color 0.2s;
    -moz-appearance: textfield;
}

.filter-group input[type="number"]::-webkit-outer-spin-button,
.filter-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.filter-group select:focus,
.filter-group input[type="text"]:focus,
.filter-group input[type="number"]:focus {
    border-color: var(--primary);
    outline: none;
}

.filter-group-search {
    flex: 2;
}

.filter-group-age {
    flex: 0 0 120px;
    min-width: 100px;
}

.btn-add-business {
    white-space: nowrap;
    align-self: flex-end;
}

/* --- Results Info --- */
.results-info {
    margin-bottom: 20px;
    padding: 10px 16px;
    background: rgba(26, 35, 126, 0.06);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Loading Spinner --- */
.loading-spinner {
    text-align: center;
    padding: 60px 0;
    color: var(--primary);
}

/* --- Load More --- */
.load-more-wrap {
    text-align: center;
    margin-top: 30px;
}

.btn-load-more {
    min-width: 200px;
}

/* --- Business Card Enhancements --- */
.business-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.business-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.business-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.wa-link:hover {
    background: #1DA851;
    color: #fff;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
}

.phone-link:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* --- Business Detail Page --- */
.business-detail {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.business-detail-header {
    display: flex;
    gap: 30px;
    padding: 30px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.business-detail-image {
    flex-shrink: 0;
    width: 200px;
    height: 160px;
    border-radius: var(--radius);
    overflow: hidden;
}

.business-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-detail-info {
    flex: 1;
}

.business-detail-info h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.business-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    align-items: center;
}

.business-location {
    color: var(--text-muted);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* --- Contact Buttons --- */
.business-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1DA851;
    color: #fff;
}

/* --- Info Grid --- */
.business-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 30px;
}

.business-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
}

.business-info-item .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 35, 126, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.business-info-item strong {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
}

.business-info-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* --- Business Description --- */
.business-description {
    padding: 30px;
    border-top: 1px solid var(--border);
}

.business-description h3 {
    margin-bottom: 16px;
}

.business-description .entry-content {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

/* --- Business Detail Footer --- */
.business-detail-footer {
    padding: 24px 30px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

/* --- Dashboard: My Businesses --- */
.business-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.business-list-header h3 {
    margin: 0;
}

.my-business-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.my-business-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    gap: 16px;
    flex-wrap: wrap;
}

.my-business-info {
    flex: 1;
    min-width: 200px;
}

.my-business-info h4 {
    margin: 0 0 6px;
    font-size: 15px;
}

.my-business-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.my-business-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* --- Small Buttons --- */
.btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
}

.btn-edit-business {
    background: rgba(26, 35, 126, 0.1);
    color: var(--primary);
}

.btn-edit-business:hover {
    background: var(--primary);
    color: #fff;
}

.btn-delete-business {
    background: rgba(207, 34, 46, 0.1);
    color: #cf222e;
}

.btn-delete-business:hover {
    background: #cf222e;
    color: #fff;
}

/* --- Status Badges --- */
.badge-pending {
    background: rgba(255, 165, 0, 0.15);
    color: #cc8400;
}

.badge-draft {
    background: rgba(128, 128, 128, 0.15);
    color: #666;
}

/* --- Logo Upload --- */
.logo-preview {
    margin-top: 10px;
}

.logo-preview img {
    max-width: 120px;
    max-height: 90px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

input[type="file"] {
    padding: 8px;
    font-size: 13px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    width: 100%;
    cursor: pointer;
}

input[type="file"]:hover {
    border-color: var(--primary);
}

/* --- Empty Business State --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.6;
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* ============================================
   MATRIMONIAL
   ============================================ */

/* --- Matrimonial Card --- */
.matrimonial-card .mat-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}

.matrimonial-card .mat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mat-avatar-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: rgba(26, 35, 126, 0.3);
}

.mat-avatar-lg {
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
}

.mat-avatar-lg i {
    font-size: 5rem;
}

.mat-gender-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.mat-male {
    background: rgba(25, 118, 210, 0.9);
    color: #fff;
}

.mat-female {
    background: rgba(233, 30, 99, 0.9);
    color: #fff;
}

/* --- Matrimonial Detail --- */
.mat-detail-header {
    align-items: center;
}

.mat-profile-photo {
    position: relative;
    flex-shrink: 0;
    width: 200px;
}

.mat-profile-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.mat-profile-photo .mat-gender-badge {
    top: auto;
    bottom: -10px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   JOB BOARD
   ============================================ */

.job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.job-card-header h3 {
    margin: 0;
}

.job-type-badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.job-type-full-time {
    background: rgba(0, 137, 123, 0.15);
    color: #00897b;
}

.job-type-part-time {
    background: rgba(255, 152, 0, 0.15);
    color: #e65100;
}

.job-type-contract {
    background: rgba(26, 35, 126, 0.12);
    color: var(--primary);
}

.job-type-internship {
    background: rgba(156, 39, 176, 0.12);
    color: #7b1fa2;
}

.job-company {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-company-name {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--primary);
}

/* ============================================
   EVENTS
   ============================================ */

/* Event Card — Date Badge */
.event-card {
    position: relative;
}

.event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    padding: 8px 12px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 2;
}

.event-date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-placeholder-thumb {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

/* Event Status Badges */
.event-status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 6px 0;
}

.event-status-upcoming {
    background: #e8f5e9;
    color: #2e7d32;
}

.event-status-ongoing {
    background: #e3f2fd;
    color: #1565c0;
}

.event-status-completed {
    background: #f5f5f5;
    color: #666;
}

.event-status-cancelled {
    background: #fce4ec;
    color: #c62828;
}

/* Single Event Detail */
.event-detail {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Header Section */
.event-detail-header-section {
    padding: 32px 32px 0;
}

.event-detail-title {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin: 14px 0 0;
    line-height: 1.4;
    font-weight: 700;
}

/* Date-Time Highlight */
.event-datetime-highlight {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    background: linear-gradient(135deg, #e8eaf6, #c5cae9) !important;
    padding: 20px 24px !important;
    border-radius: 12px !important;
    margin: 24px 32px !important;
    border: none !important;
    box-shadow: 0 2px 12px rgba(26,35,126,0.1) !important;
}

.event-date-block {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    text-align: center !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    min-width: 80px !important;
    box-shadow: 0 4px 15px rgba(26,35,126,0.3) !important;
}

.event-date-block .event-date-day {
    display: block !important;
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #fff !important;
}

.event-date-block .event-date-month {
    display: block !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: rgba(255,255,255,0.9) !important;
    margin-top: 2px !important;
}

.event-datetime-text {
    flex: 1;
}

.event-datetime-text strong {
    font-size: 1.1rem !important;
    color: var(--primary-dark) !important;
    display: block !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
}

.event-datetime-text p {
    font-size: 0.95rem !important;
    color: var(--text-light) !important;
    margin: 0 !important;
}

.event-datetime-text p i {
    margin-right: 6px;
    color: var(--primary);
}

/* Action Buttons */
.event-action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 8px 32px 28px;
}

/* Event Poster Section */
.event-poster-section {
    padding: 28px 32px 32px;
    border-top: 2px solid var(--border);
    background: linear-gradient(180deg, #fafafa, #fff);
}

.event-poster-section h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.event-poster-wrap {
    text-align: center;
    margin-bottom: 20px;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.event-poster-wrap img {
    max-width: 480px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

.btn-download-poster {
    display: inline-flex;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
}

/* Event Info Bar (listing page cards) */
.event-info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 28px 32px;
    background: linear-gradient(135deg, #f8f9ff, #eef0ff);
    border-bottom: 1px solid var(--border);
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.event-info-item > i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.event-info-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.event-info-item p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

/* Share Section */
.event-share-section {
    padding: 24px 32px;
    border-top: 1px solid var(--border);
}

.event-share-section h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.event-share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.share-whatsapp { background: #25d366; }
.share-facebook { background: #1877f2; }
.share-twitter { background: #1da1f2; }
.share-copy { background: var(--text-light); }

/* ============================================
   EVENT POPUP MODAL
   ============================================ */
.event-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.event-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.event-popup-overlay.closing {
    opacity: 0;
    visibility: hidden;
}

.event-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.event-popup-modal {
    position: relative;
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-popup-overlay.active .event-popup-modal {
    transform: scale(1) translateY(0);
}

.event-popup-overlay.closing .event-popup-modal {
    transform: scale(0.85) translateY(30px);
}

/* Close Button */
.event-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.event-popup-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

/* Ribbon */
.event-popup-ribbon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    border-radius: 20px 20px 0 0;
}

.event-popup-ribbon i {
    color: var(--secondary);
    font-size: 1.1rem;
    animation: float 3s ease-in-out infinite;
}

/* Body */
.event-popup-body {
    padding: 0;
}

/* Poster */
.event-popup-poster {
    width: 100%;
    overflow: hidden;
}

.event-popup-poster img {
    width: 100%;
    display: block;
}

/* Info Section */
.event-popup-info {
    padding: 24px;
}

.event-popup-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
    margin-bottom: 18px;
}

/* Details */
.event-popup-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 22px;
}

.epd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.epd-item > i {
    color: var(--primary);
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.epd-date {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #e8eaf6, #c5cae9);
    padding: 14px 18px;
    border-radius: 12px;
}

.epd-date-block {
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    text-align: center;
    line-height: 1;
    flex-shrink: 0;
    min-width: 64px;
    box-shadow: 0 3px 10px rgba(26, 35, 126, 0.3);
}

.epd-day {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
}

.epd-month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
    margin-top: 2px;
}

.epd-date strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.epd-date p {
    margin: 3px 0 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.epd-date p i {
    color: var(--primary);
    margin-right: 4px;
}

/* CTA */
.event-popup-actions {
    text-align: center;
}

.event-popup-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
    transition: all 0.3s ease;
}

.event-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

/* Event Registration Button */
.event-registration-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(249, 168, 37, 0); }
}

/* ============================================
   BUSINESS — JOB OPENINGS SECTION
   ============================================ */

.business-jobs-section {
    padding: 28px 32px;
    border-top: 1px solid var(--border);
}

.business-jobs-section h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-jobs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.business-job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.business-job-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
}

.business-job-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.business-job-info h4 a {
    color: var(--text);
    text-decoration: none;
}

.business-job-info h4 a:hover {
    color: var(--primary);
}

.business-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.business-job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   BANDHARAN — Heritage Timeline & Preview
   ============================================ */

/* --- Intro Section --- */
.bandharan-intro {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 50%, #fff3e0 100%);
}

.bandharan-intro-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.bandharan-intro-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--warm));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(249,168,37,0.35);
}

.bandharan-intro-content h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.bandharan-intro-gu {
    font-family: var(--font-gu);
    font-size: 1.15rem;
    color: var(--warm);
    font-weight: 600;
    margin-bottom: 16px;
}

.bandharan-intro-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

/* Era Progress Line */
.bandharan-era-line {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.era-start,
.era-end {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

.era-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}

.era-fill {
    height: 100%;
    width: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--warm), var(--primary));
}

/* --- Timeline Section --- */
.bandharan-timeline-section {
    padding: 60px 0 80px;
    background: var(--bg);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Central Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--secondary), var(--primary), var(--warm));
    border-radius: 2px;
    transform: translateX(-50%);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px 60px;
}

.timeline-left {
    left: 0;
    padding-right: 60px;
}

.timeline-right {
    left: 50%;
    padding-left: 60px;
}

/* Year Marker on the Line */
.timeline-marker {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--warm));
    border: 4px solid #fff;
    box-shadow: 0 4px 16px rgba(249,168,37,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-left .timeline-marker {
    right: -30px;
}

.timeline-right .timeline-marker {
    left: -30px;
}

.timeline-year {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Timeline Card */
.timeline-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.timeline-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.timeline-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(26,35,126,0.03), rgba(249,168,37,0.05));
}

.timeline-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--warm));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(249,168,37,0.3);
}

.timeline-card-header h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.timeline-title-gu {
    font-family: var(--font-gu);
    font-size: 0.9rem;
    color: var(--warm);
    font-weight: 600;
}

.timeline-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 12px 24px 0;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(249,168,37,0.1);
    color: var(--warm);
    font-size: 0.85rem;
    font-weight: 600;
}

.timeline-location i {
    font-size: 0.75rem;
}

.timeline-desc {
    padding: 12px 24px 0;
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.timeline-desc-gu {
    font-family: var(--font-gu);
    padding-bottom: 4px;
}

/* PDF Embed */
.timeline-pdf-embed {
    margin: 20px 24px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    background: #f9f9f9;
}

.timeline-pdf-embed object {
    display: block;
    border: 0;
}

.pdf-fallback {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
}

.pdf-fallback i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #e53935;
}

/* Large File Placeholder */
.timeline-pdf-placeholder {
    margin: 20px 24px 0;
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    background: linear-gradient(135deg, #f5f5f5, #eeeeee);
}

.pdf-placeholder-inner {
    padding: 40px;
    text-align: center;
}

.pdf-placeholder-inner > i {
    font-size: 3.5rem;
    color: #e53935;
    margin-bottom: 12px;
}

.pdf-placeholder-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.pdf-size-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--warm), #ff6d00);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.pdf-placeholder-note {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Action Buttons */
.timeline-actions {
    display: flex;
    gap: 12px;
    padding: 20px 24px 24px;
    flex-wrap: wrap;
}

.btn-file-size {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 4px;
}

/* --- Bottom CTA --- */
.bandharan-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.bandharan-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.bandharan-cta-inner > i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
}

.bandharan-cta-inner h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.bandharan-cta-inner p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ============================================
   BANDHARAN PREVIEW — Homepage Section
   ============================================ */
.bandharan-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 40%, #fff3e0 100%);
}

.bandharan-preview-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.bandharan-mini-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 16px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-bottom: 4px solid var(--secondary);
    transition: var(--transition);
    cursor: default;
}

.bandharan-mini-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--warm);
}

.bmc-year {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), var(--warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bmc-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--warm));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(249,168,37,0.25);
}

.bmc-title {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 2px;
}

.bmc-title-gu {
    font-family: var(--font-gu);
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.bandharan-preview-cta {
    text-align: center;
}

/* Responsive rules are in responsive.css — do not duplicate here */
