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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #FFFFFF;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563EB;
}

.logo i {
    font-size: 1.8rem;
}

.brand-name {
    font-size: 1.1rem;
    color: #1E293B;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    text-decoration: none;
    color: #1E293B;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563EB;
}

.nav-link.active {
    color: #2563EB;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2563EB;
    border-radius: 2px;
}

.join-btn {
    background: #10B981;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1E293B;
    z-index: 1001; /* Ensure it's above other elements */
    position: relative;
}

/* Mobile menu visible only on small screens */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        width: 50%;
        background: #e1ecec;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 0.2rem;
        width: 100%;
    }
}
/* Temporary body padding to see navbar */
main {
    margin-top: 80px;
    padding: 2rem;
    min-height: 200vh;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 4.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/college-bg.jpg') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E8F5E9;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #F59E0B;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #D97706;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: white;
    color: #2563EB;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    justify-content: center;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 5rem 2rem;
    background: #e4e8ec;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1E293B;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #2563EB;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: #2563EB;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.3rem;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748B;
    line-height: 1.6;
}

.about-logos {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.logo-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-card:hover {
    transform: scale(1.05);
}

.logo-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.logo-card h4 {
    color: #1E293B;
    font-size: 1.1rem;
}

/* Responsive About */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== EVENTS PAGE STYLES ===== */
.events-hero {
    background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    text-align: center;
}

.events-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.events-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.events-filter {
    padding: 2rem;
    background: #F8FAFC;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #2563EB;
    background: white;
    color: #2563EB;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: #2563EB;
    color: white;
}

.events-grid {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-banner-container {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

.event-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-banner {
    transform: scale(1.05);
}

.event-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-header {
    padding: 1.5rem 1.5rem 0;
}

.event-type {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.type-upcoming {
    background: #10B981;
    color: white;
}

.type-past {
    background: #6B7280;
    color: white;
}

.type-partner {
    background: #F59E0B;
    color: white;
}

.event-title {
    font-size: 1.4rem;
    color: #1E293B;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-date {
    color: #64748B;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.event-body {
    padding: 0 1.5rem;
    flex: 1;
}

.event-description {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-partner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #64748B;
    font-size: 0.9rem;
    padding: 0.8rem;
    background: #F8FAFC;
    border-radius: 6px;
}

.event-resources {
    margin: 1.5rem 0;
    padding: 1.2rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #F8FAFC 100%);
    border-radius: 8px;
    border-left: 4px solid #2563EB;
}

.resources-title {
    font-size: 0.95rem;
    color: #1E293B;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.resources-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #2563EB;
    text-decoration: none;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.resource-link:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.resource-link.youtube-link {
    background: white;
    color: #DC2626;
    border-color: #FECACA;
}

.resource-link.youtube-link:hover {
    background: #DC2626;
    color: white;
    border-color: #DC2626;
}

.resource-link i {
    font-size: 0.9rem;
}

.event-footer {
    padding: 1.5rem;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    margin-top: auto;
}

.register-btn {
    background: #2563EB;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
}

.register-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.register-btn.disabled {
    background: #94A3B8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.register-btn.disabled:hover {
    background: #94A3B8;
    transform: none;
}

.event-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748B;
    font-size: 0.9rem;
}

/* No Events and Error Messages */
.no-events,
.error-message {
    text-align: center;
    padding: 3rem 2rem;
    color: #64748B;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px dashed #CBD5E1;
    grid-column: 1 / -1;
}

.no-events i,
.error-message i {
    font-size: 3rem;
    color: #94A3B8;
    margin-bottom: 1rem;
}

.no-events h3,
.error-message h3 {
    color: #475569;
    margin-bottom: 0.5rem;
}

.retry-btn {
    background: #2563EB;
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.retry-btn:hover {
    background: #1D4ED8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .events-hero {
        padding: 6rem 1rem 3rem;
    }
    
    .events-hero h1 {
        font-size: 2rem;
    }
    
    .events-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-banner-container {
        height: 100px;
    }
    
    .event-header,
    .event-body {
        padding: 1rem;
    }
    
    .event-footer {
        padding: 1rem;
    }
    
    .resources-links {
        flex-direction: column;
    }
    
    .resource-link {
        justify-content: center;
    }
    
    .event-stats {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .events-grid {
        padding: 2rem 1rem;
    }
    
    .event-banner-container {
        height: 90px;
    }
    
    .event-title {
        font-size: 1.2rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.event-resources {
    animation: fadeInUp 0.5s ease;
}

/* Focus states for accessibility */
.filter-btn:focus,
.register-btn:focus,
.resource-link:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* ===== TEAM SECTION ===== */
.team {
    padding: 5rem 2rem;
    background: white;
}

.section-subtitle {
    text-align: center;
    color: #64748B;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.team-filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #E2E8F0;
    background: white;
    color: #64748B;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.team-filter-btn.active,
.team-filter-btn:hover {
    border-color: #2563EB;
    background: #2563EB;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #F1F5F9;
}

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

.member-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563EB, #10B981);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.member-batch {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.member-description {
    color: #475569;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-link {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    transform: translateY(-2px);
}

/* Additional Social Icons */
.social-behance { background: #053EFF; }
.social-medium { background: #000000; }
.social-leetcode { background: #FFA116; }
.social-codeforces { background: #3B5998; }

.social-linkedin { background: #0077B5; }
.social-github { background: #333; }
.social-instagram { background: #E4405F; }
.social-twitter { background: #1DA1F2; }

.team-tag {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: #F1F5F9;
    color: #64748B;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Responsive Team */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .team-filter {
        gap: 0.5rem;
    }
    
    .team-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 5rem 2rem;
    background: #F8FAFC;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid #E2E8F0;
    background: white;
    color: #64748B;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
    border-color: #2563EB;
    background: #2563EB;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

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

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-event {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== LIGHTBOX STYLES ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1000px;
    height: 90%;
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-image {
    width: 100%;
    height: 80%;
    object-fit: contain;
    background: #000;
}

.lightbox-caption {
    background: white;
    padding: 1.5rem;
    height: 20%;
    overflow-y: auto;
}

.lightbox-title {
    color: #1E293B;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.lightbox-description {
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.lightbox-meta {
    display: flex;
    justify-content: space-between;
    color: #64748B;
    font-size: 0.9rem;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .gallery-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .lightbox-content {
        width: 95%;
        height: 95%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}


/* ===== FAQ SECTION ===== */
.faq {
    padding: 5rem 2rem;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E293B;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F8FAFC;
}

.faq-icon {
    color: #2563EB;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #F8FAFC;
    color: #475569;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-category {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 1rem;
    text-transform: uppercase;
}

.faq-contact {
    text-align: center;
    padding: 2rem;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.faq-contact a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

/* FAQ Filter (Optional) */
.faq-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.faq-filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid #E2E8F0;
    background: white;
    color: #64748B;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-filter-btn.active,
.faq-filter-btn:hover {
    border-color: #2563EB;
    background: #2563EB;
    color: white;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.2rem;
    }
    
    .faq-category {
        display: none;
    }
}

/* FAQ Filter and Empty State */
.no-faqs {
    text-align: center;
    padding: 3rem;
    color: #64748B;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px dashed #CBD5E1;
}

.faq-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 2rem;
    background: #F8FAFC;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info h3,
.contact-form h3 {
    color: #1E293B;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.contact-info h3::after,
.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #2563EB;
    border-radius: 2px;
}

.contact-details {
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: #1E293B;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-text p {
    color: #475569;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.contact-text a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* Contact section social links */
.contact-info .social-links {
    margin-top: 2rem;
}

.contact-info .social-links h4 {
    margin-bottom: 1rem;
    color: #1E293B;
}

.contact-info .social-icons {
    display: flex;
    gap: 1rem;
}

.contact-info .social-icons .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563EB;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info .social-icons .social-link:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

.social-links h4 {
    color: #1E293B;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icons .social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #F8FAFC;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.error-message {
    color: #DC2626;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
    min-height: 1rem;
}

.submit-btn {
    background: #2563EB;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.submit-btn:disabled {
    background: #94A3B8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: block;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-section h3 {
    color: #1E293B;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-link {
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border: 2px solid white;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.map-link:hover {
    background: white;
    color: #667eea;
}

/* Responsive Contact */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 3rem 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: #1E293B;
    color: white;
    padding: 4rem 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    margin-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: #10B981;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-description {
    color: #CBD5E1;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-social .social-link:hover {
    background: #10B981;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.footer-links h3,
.footer-contact h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #10B981;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #10B981;
    padding-left: 5px;
}

.footer-contact .contact-info {
    margin-bottom: 2rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #CBD5E1;
    font-size: 0.9rem;
}

.footer-contact .contact-item i {
    color: #10B981;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.newsletter h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #475569;
    border-radius: 6px;
    background: #334155;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #94A3B8;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #10B981;
}

.newsletter-form button {
    background: #10B981;
    color: white;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #059669;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #334155;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-credits p {
    color: #CBD5E1;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.footer-credits .fa-heart {
    color: #EF4444;
    animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #10B981;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #10B981;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.scroll-to-top.visible {
    display: flex;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        margin-right: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}


/* Newsletter Success State */
.newsletter-success {
    color: #10B981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 0.5rem 0;
}

.newsletter-success i {
    font-size: 1.2rem;
}