/* =============================================
   MP PORTFOLIO WEBSITE — DESIGN SYSTEM
   Inspired by a.adcirclemedia.in
   Colors: Saffron + Navy + Cream
   Fonts: Playfair Display + Poppins
   ============================================= */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --saffron: #FF9933;
    --saffron-dark: #E68A2E;
    --saffron-light: #FFB366;
    --navy: #001C3D;
    --navy-light: #002B5C;
    --green-india: #138808;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --cream-dark: #FFF0E0;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =============================================
   NEWS TICKER BAR
   ============================================= */
.ticker-bar {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.ticker-bar .container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-label {
    background: var(--saffron);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.ticker-content {
    overflow: hidden;
    flex: 1;
    position: relative;
    height: 22px;
}

.ticker-scroll {
    display: flex;
    gap: 60px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    position: absolute;
    top: 0;
    left: 0;
}

.ticker-scroll span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ticker-scroll span::after {
    content: '|';
    opacity: 0.4;
    margin-left: 16px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.lang-toggle {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.lang-btn {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-family: var(--font-body);
}

.lang-btn:hover, .lang-btn.active {
    background: var(--saffron);
    border-color: var(--saffron);
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--saffron);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--saffron);
    box-shadow: 0 2px 8px rgba(255,153,51,0.3);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--saffron-dark);
    line-height: 1.2;
}

.logo-text .hindi-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.logo-text .title-line {
    font-size: 0.7rem;
    color: var(--green-india);
    font-weight: 600;
    font-style: italic;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--saffron);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--saffron);
}

.nav-menu a:hover::after {
    width: 60%;
}

.btn-complaint {
    background: var(--saffron);
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 12px rgba(255,153,51,0.3);
    border: 2px solid var(--saffron);
    white-space: nowrap;
}

.btn-complaint::after {
    display: none !important;
}

.btn-complaint:hover {
    background: var(--saffron-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,153,51,0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1010;
    background: none;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #002B5C 50%, #003366 100%);
    color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,153,51,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--white), var(--green-india));
}

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

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,153,51,0.15);
    border: 1px solid rgba(255,153,51,0.3);
    color: var(--saffron-light);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--saffron);
    border-radius: 50%;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero h2 .highlight {
    color: var(--saffron);
    font-style: italic;
}

.hero .hindi-title {
    font-size: 1.5rem;
    color: var(--saffron-light);
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--saffron);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(255,153,51,0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--saffron);
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255,153,51,0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 420px;
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-image-wrapper .overlay-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--saffron);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-suffix {
    font-size: 1.6rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 48px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--saffron);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-tag::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--saffron);
    border-radius: 3px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--saffron);
    font-style: italic;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about {
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.about-photo-area {
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-details {
    margin-top: 24px;
}

.detail-row {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.detail-label {
    font-weight: 600;
    color: var(--saffron);
    min-width: 120px;
    font-size: 0.9rem;
}

.detail-value {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.about-text-area .about-bio {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding-left: 24px;
    border-left: 4px solid var(--saffron);
    margin-bottom: 40px;
}

/* Timeline */
.career-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 28px;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--saffron), var(--saffron-light));
}

.timeline-item {
    position: relative;
    padding-bottom: 28px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--saffron);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--saffron);
}

.timeline-year {
    font-weight: 700;
    color: var(--saffron);
    font-size: 1rem;
    margin-bottom: 4px;
}

.timeline-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* =============================================
   NEWS SECTION
   ============================================= */
.news-section {
    background: var(--cream);
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.news-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.news-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
}

.news-category-badge.development { background: var(--green-india); }
.news-category-badge.health { background: #0EA5E9; }
.news-category-badge.infrastructure { background: #DC2626; }
.news-category-badge.education { background: #7C3AED; }

.news-card-body {
    padding: 20px;
}

.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    color: var(--text-dark);
}

.news-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-top: 1px solid var(--border);
}

.news-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--saffron);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.read-more:hover {
    gap: 8px;
    color: var(--saffron-dark);
}

/* =============================================
   DEVELOPMENT WORKS SECTION
   ============================================= */
.dev-section {
    background: var(--cream-dark);
}

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

.dev-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.dev-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--saffron-light);
}

.dev-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dev-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.dev-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.dev-budget {
    display: inline-block;
    background: rgba(255,153,51,0.1);
    color: var(--saffron-dark);
    padding: 4px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,153,51,0.2);
}

/* Gallery Images for Dev Section */
.dev-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.dev-gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 240px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.dev-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.dev-gallery-item:hover img {
    transform: scale(1.05);
}

/* =============================================
   PHOTO GALLERY SECTION
   ============================================= */
.gallery-section {
    background: var(--white);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,28,61,0.8), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    transition: var(--transition);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--saffron);
    transform: rotate(90deg);
}

/* =============================================
   EVENTS SECTION
   ============================================= */
.events-section {
    background: var(--cream);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--saffron-light);
}

.event-date-box {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.event-date-box .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-heading);
}

.event-date-box .month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.event-info {
    flex: 1;
}

.event-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--saffron);
    font-weight: 500;
}

.event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-status {
    flex-shrink: 0;
}

.status-badge {
    padding: 6px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.upcoming {
    background: rgba(16,185,129,0.1);
    color: #059669;
    border: 1px solid rgba(16,185,129,0.3);
}

.status-badge.completed {
    background: rgba(107,114,128,0.1);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

/* =============================================
   CONTACT & COMPLAINTS SECTION
   ============================================= */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--border);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Complaint Form */
.complaint-form-area {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
}

.complaint-form-area h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.complaint-form-area .form-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group label .required {
    color: #DC2626;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255,153,51,0.15);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    background: var(--saffron);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,153,51,0.35);
}

.form-success {
    display: none;
    background: rgba(16,185,129,0.1);
    color: #059669;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(16,185,129,0.3);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: linear-gradient(135deg, var(--navy) 0%, #001530 100%);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--saffron);
    margin-bottom: 4px;
}

.footer-brand .subtitle {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
}

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

.footer-hours p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.footer-admin-btn {
    display: inline-block;
    margin-top: 12px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.footer-admin-btn:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

.jai-hind {
    color: var(--saffron);
    font-weight: 600;
    font-style: italic;
    opacity: 1;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    background: var(--saffron);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--saffron-dark);
    transform: translateY(-4px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 0;
    }

    .hero h2 {
        font-size: 2.6rem;
    }

    .hero p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        width: 320px;
        height: 290px;
    }

    .about .container {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 24px 40px;
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        z-index: 1005;
        gap: 4px;
        align-items: stretch;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 50px 0 40px;
        min-height: auto;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero .hindi-title {
        font-size: 1.2rem;
    }

    .hero-image-wrapper {
        width: 260px;
        height: 240px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .about .container {
        grid-template-columns: 1fr;
    }

    .about-photo {
        max-width: 300px;
        margin: 0 auto;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .dev-grid {
        grid-template-columns: 1fr;
    }

    .dev-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }

    .event-meta {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image-wrapper {
        width: 220px;
        height: 200px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .complaint-form-area {
        padding: 24px;
    }

    .ticker-bar .container {
        gap: 10px;
    }

    .lang-toggle {
        display: none;
    }

    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* Mobile Overlay for nav */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1002;
    backdrop-filter: blur(4px);
}

.nav-overlay.active {
    display: block;
}

/* =============================================
   GALLERY FILTER TABS
   ============================================= */
.gallery-tab {
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--transition);
}

.gallery-tab:hover {
    border-color: var(--saffron-light);
    color: var(--saffron);
}

.gallery-tab.active {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
}

/* =============================================
   SOCIAL LINKS
   ============================================= */
.social-links-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--saffron);
    color: var(--white);
    border-color: var(--saffron);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255,153,51,0.3);
}
