/*
 * ============================================================
 * समस्त प्रजापति वेलफेयर संस्थान सुमेरपुर
 * Samast Prajapati Welfare Sansthan, Sumerpur
 * Main Stylesheet
 * ============================================================
 */

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-orange: #F57C00;
    --primary-blue: #1E88E5;
    --primary-green: #43A047;
    --primary-pink: #E91E63;
    --primary-purple: #8E24AA;
    --primary-red: #D32F2F;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --dark-text: #222222;
    --secondary-text: #666666;
    --gradient-orange-pink: linear-gradient(135deg, #F57C00, #E91E63);
    --gradient-blue-green: linear-gradient(135deg, #1E88E5, #43A047);
    --gradient-purple-pink: linear-gradient(135deg, #8E24AA, #E91E63);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-en: 'Poppins', sans-serif;
    --font-hi: 'Noto Sans Devanagari', sans-serif;
}

/* ===== Global Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-en);
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

.hindi-text {
    font-family: var(--font-hi);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Utility Classes ===== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    font-family: var(--font-hi);
}

.section-title p {
    color: var(--secondary-text);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title .title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-orange-pink);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn-primary-custom {
    background: var(--gradient-orange-pink);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.4);
    color: var(--white);
}

.btn-secondary-custom {
    background: var(--gradient-blue-green);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-secondary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* ===== Top Header Bar ===== */
.top-header {
    background: var(--dark-text);
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-header a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.top-header a:hover {
    color: var(--primary-orange);
}

.top-header .top-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header .top-left i {
    color: var(--primary-orange);
    margin-right: 6px;
}

.top-header .top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.top-header .top-social a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    transition: var(--transition);
}

.top-header .top-social a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.top-header .lang-switcher {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-header .lang-switcher select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
    outline: none;
}

.top-header .lang-switcher select option {
    background: var(--dark-text);
    color: var(--white);
}

.top-header .lang-switcher i {
    color: var(--primary-orange);
    font-size: 0.85rem;
}

/* Top header mobile visibility */
.top-header .top-email {
    display: inline;
}

@media (max-width: 767px) {
    .top-header .top-email,
    .top-header .top-social {
        display: none !important;
    }
    .top-header .top-left {
        gap: 10px;
    }
    .top-header .top-right {
        gap: 8px;
    }
}

/* ===== Header / Navbar ===== */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: var(--transition);
    padding: 18px 0;
}

.main-header.scrolled {
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 0px 0;
}

.main-header .navbar-brand img {
    height: 80px;
    transition: var(--transition);
}

.main-header.scrolled .navbar-brand img {
    height: 60px;
}

.main-header .navbar-brand .brand-text {
    font-family: var(--font-hi);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-left: 10px;
    transition: var(--transition);
}

.main-header.scrolled .navbar-brand .brand-text {
    color: var(--dark-text);
}

.main-header .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.main-header.scrolled .nav-link {
    color: var(--dark-text) !important;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: var(--primary-orange) !important;
}

.main-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition);
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
    width: 60%;
}

.main-header .btn-donate {
    background: var(--gradient-orange-pink);
    color: var(--white);
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.main-header .btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 124, 0, 0.4);
}

.main-header .btn-join {
    background: var(--gradient-blue-green);
    color: var(--white);
    border: none;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    margin-left: 8px;
}

.main-header .btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 136, 229, 0.4);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34,34,34,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Hero Slider ===== */
.hero-slider {
    height: 100vh;
    min-height: 600px;
}

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgb(0 0 0 / 0%));
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-slider .slide-content h1 {
    font-family: var(--font-hi);
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.hero-slider .slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-family: var(--font-hi);
}

.hero-slider .slide-content .slide-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-orange);
}

/* ===== Welcome Section ===== */
.welcome-section {
    background: var(--white);
}

.welcome-section .welcome-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.welcome-section .welcome-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.welcome-section .welcome-img:hover img {
    transform: scale(1.05);
}

.welcome-section .welcome-content h3 {
    font-family: var(--font-hi);
    font-size: 1.8rem;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.welcome-section .welcome-content p {
    color: var(--secondary-text);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about-section {
    background: var(--light-bg);
}

.about-section .about-img {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-section .about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-section .about-content h3 {
    font-family: var(--font-hi);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-section .about-content p {
    color: var(--secondary-text);
    margin-bottom: 12px;
}

.about-section .feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
    transition: var(--transition);
}

.about-section .feature-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-section .feature-box .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

/* ===== Statistics Counter ===== */
.stats-section {
    background: var(--gradient-orange-pink);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 4s infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stats-section .stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.stats-section .stat-item .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.stats-section .stat-item .stat-number {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.stats-section .stat-item .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-family: var(--font-hi);
}

/* ===== Members Section ===== */
.members-section {
    background: var(--light-bg);
}

.member-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-orange-pink);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-card .member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--gradient-orange-pink);
    padding: 3px;
}

.member-card .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: #f0f4f8;
    padding: 8px;
}

.member-card .member-name {
    font-family: var(--font-hi);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-card .member-designation {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.member-card .member-role {
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.member-card .member-contact {
    font-size: 0.85rem;
    color: var(--secondary-text);
    margin-bottom: 12px;
}

.member-card .member-social a {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--secondary-text);
    margin: 0 3px;
    transition: var(--transition);
    font-size: 0.85rem;
}

.member-card .member-social a:hover {
    background: var(--gradient-orange-pink);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Why Choose Us ===== */
.why-choose-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h4 {
    font-family: var(--font-hi);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--secondary-text);
    font-size: 0.9rem;
}

/* ===== Gallery Section ===== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-orange-pink);
    color: var(--white);
    border-color: transparent;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 124, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    color: var(--white);
    font-size: 2rem;
}

/* ===== Testimonials ===== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    margin: 10px;
}

.testimonial-card .testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
}

.testimonial-card .testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .stars {
    color: #FFC107;
    margin-bottom: 12px;
}

.testimonial-card .testimonial-text {
    color: var(--secondary-text);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-family: var(--font-hi);
}

.testimonial-card .testimonial-name {
    font-weight: 700;
    font-family: var(--font-hi);
    color: var(--dark-text);
}

.testimonial-card .testimonial-location {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

/* ===== Blog Section ===== */
.blog-section {
    background: var(--light-bg);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card .blog-img {
    overflow: hidden;
    height: 200px;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-card .blog-content {
    padding: 20px;
}

.blog-card .blog-date {
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-card .blog-title {
    font-family: var(--font-hi);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.blog-card .blog-desc {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* ===== News Ticker ===== */
.news-ticker-section {
    background: var(--dark-text);
    padding: 15px 0;
    overflow: hidden;
}

.news-ticker-section .ticker-label {
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.news-ticker-section .ticker-content {
    overflow: hidden;
    flex: 1;
    margin-left: 15px;
}

.news-ticker-section .ticker-content ul {
    list-style: none;
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.news-ticker-section .ticker-content ul li {
    color: var(--white);
    padding: 0 40px;
    font-size: 0.9rem;
    font-family: var(--font-hi);
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--gradient-blue-green);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-family: var(--font-hi);
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-family: var(--font-hi);
}

.cta-section .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    height: 100%;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-card .info-item .icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: var(--gradient-orange-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.contact-info-card .info-item h5 {
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-info-card .info-item p {
    color: var(--secondary-text);
    font-size: 0.9rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.contact-form .form-control {
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    padding: 12px 18px;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-bottom: 15px;
}

.contact-form .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1);
}

/* ===== Footer ===== */
.main-footer {
    background: var(--dark-text);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.main-footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 2px;
}

.main-footer p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.main-footer .footer-links {
    list-style: none;
    padding: 0;
}

.main-footer .footer-links li {
    margin-bottom: 10px;
}

.main-footer .footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.main-footer .footer-links li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.main-footer .footer-links li a i {
    margin-right: 8px;
    color: var(--primary-orange);
}

.main-footer .social-links a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.main-footer .social-links a:hover {
    background: var(--gradient-orange-pink);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-orange-pink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
    box-shadow: var(--shadow-md);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== Page Banner ===== */
.page-banner {
    background: var(--gradient-orange-pink);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,149.3C672,149,768,203,864,224C960,245,1056,235,1152,208C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

.page-banner h1 {
    color: var(--white);
    font-family: var(--font-hi);
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb {
    justify-content: center;
    position: relative;
    z-index: 1;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

/* ===== Lightbox ===== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 88%;
    max-height: 82vh;
    border-radius: var(--border-radius);
    object-fit: contain;
    transition: opacity 0.25s ease;
}

.lightbox-overlay .close-lightbox {
    position: absolute;
    top: 18px;
    right: 25px;
    color: var(--white);
    font-size: 2.2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.lightbox-overlay .close-lightbox:hover {
    background: var(--primary-red);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    background: rgba(0,0,0,0.4);
    padding: 4px 14px;
    border-radius: 20px;
}

.lightbox-title {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-top: 12px;
    text-align: center;
    max-width: 80%;
}

/* ===== Search & Filter ===== */
.search-filter-bar {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 20px 30px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.search-filter-bar .form-control {
    border: 2px solid #eee;
    border-radius: 50px;
    padding: 10px 20px;
}

.search-filter-bar .form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: none;
}

/* ===== Glassmorphism Cards ===== */
.glass-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--border-radius-lg);
}

/* ===== Loading Animation ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.page-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #eee;
    border-top-color: var(--primary-orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== WhatsApp Widget ===== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7); }
}
