/* Page Specific Styles */

/* Breadcrumb & Hero Banner */
.page-header {
    background: linear-gradient(135deg, #071f38 0%, var(--primary-dark) 50%, var(--primary-color) 100%);
    padding: 70px 0 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.page-title {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-header-desc {
    font-size: 1.12rem;
    opacity: 0.92;
    max-width: 780px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255,255,255,0.92);
}

.breadcrumb-nav {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    font-size: 0.92rem;
    opacity: 0.9;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.08;
    background-image: radial-gradient(#fff 2px, transparent 2px);
    background-size: 28px 28px;
    z-index: 1;
}

.circle-decor {
    position: absolute;
    bottom: -50px;
    right: 10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 30px solid rgba(255,255,255,0.04);
    z-index: 1;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-highlight-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(15,76,129,0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.about-highlight-text {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--primary-dark);
}

.about-visuals {
    position: relative;
}

.main-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.floating-stats-box {
    position: absolute;
    bottom: -25px;
    left: -25px;
    background: white;
    padding: 22px 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: flex;
    gap: 30px;
    z-index: 2;
    border: 1px solid var(--border-color);
}

.stat-group-right {
    padding-left: 30px;
    border-left: 1px solid var(--border-color);
}

.stat-value {
    font-size: 2rem;
    margin-bottom: 2px;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Mission & Vision Cards */
.mv-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mv-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.mv-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.mv-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 16px rgba(15,76,129,0.25);
}

.mv-icon.vision-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
}

.mv-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.mv-desc {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.value-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(15,76,129,0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    color: white;
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.value-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Advantage Grid */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.advantage-card {
    background: white;
    padding: 30px 20px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15,76,129,0.1) 0%, rgba(245,158,11,0.1) 100%);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 18px;
}

.advantage-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.advantage-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* AI Spotlight Box */
.ai-spotlight-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f365c 100%);
    color: white;
    padding: 50px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ai-spotlight-card .badge-ai {
    background: rgba(245, 158, 11, 0.2);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Stats Banner & Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
}

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

.stat-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15,76,129,0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 18px;
}

.stats-banner {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stats-text {
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Media Queries for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .floating-stats-box {
        position: relative;
        inset: auto;
        margin-top: 20px;
        width: 100%;
        justify-content: space-around;
        box-shadow: var(--shadow-md);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .ai-spotlight-card {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .values-grid,
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    .mv-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .floating-stats-box {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    .stat-group-right {
        padding-left: 0;
        border-left: none;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }
    .main-image-box img {
        height: 280px;
    }
}

/* Auth Pages (Login & Register) */
.auth-page-body {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.auth-visuals {
    flex: 1;
    min-width: 400px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    position: relative;
}

.auth-visuals-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
}

.auth-logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.auth-heading {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.auth-stat-box {
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.auth-form-container {
    flex: 1;
    min-width: 350px;
    padding: 60px 50px;
}

.auth-input-group {
    position: relative;
}

.auth-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

.auth-input {
    padding: 12px 15px 12px 45px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
}

.auth-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
}

.registration-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 50px;
}

.reg-input {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* How It Works */
.process-list {
    list-style: none;
    padding: 0;
}

.process-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-card {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
}

.step-number-circle {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(15,76,129,0.3);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-dark);
}

.tracking-ui {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* Membership */
.membership-list-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.pricing-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 40px rgba(15,76,129,0.15);
    position: relative;
    overflow: hidden;
}

.popular-badge-ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    vertical-align: top;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
}

.process-step-box {
    width: 100%;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.process-dashed-line {
    height: 30px;
    border-left: 3px dashed var(--primary-color);
}

/* Members & Directory */
.search-filter-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transform: translateY(-50px);
    position: relative;
    z-index: 10;
}

.member-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(15, 76, 129, 0.12);
    border-color: rgba(15, 76, 129, 0.25);
}

.member-img-wrapper {
    position: relative;
    padding-top: 100%;
    background: #f0f0f0;
}

.member-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-badge-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.member-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.category-tag {
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.profile-sidebar {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.profile-img-large {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.profile-img-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    margin: 0 5px;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--primary-color);
    color: white;
}

.profile-content-box {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

/* City Teams */
.map-visual {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 20px 20px;
}

.map-icon-large {
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.map-node {
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 10;
}

.pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse-animation 2s infinite;
    z-index: -1;
}

@keyframes pulse-animation {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

.city-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.15);
    border-color: rgba(15, 76, 129, 0.3);
}

.city-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(15,76,129,0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-card:hover .city-icon {
    background: var(--primary-color);
    color: white;
    transform: rotateY(180deg);
}

/* Events */
.event-card-horizontal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 76, 129, 0.14);
    border-color: rgba(15, 76, 129, 0.25);
}

.event-img {
    flex: 0 0 350px;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 250px;
}

.event-type-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Gallery */
.gallery-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,46,80,0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

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

.gallery-overlay h4, .gallery-overlay span {
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay h4,
.gallery-card:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-item {
    transition: all 0.4s ease;
}

.gallery-item.hide {
    display: none;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 76, 129, 0.12);
    border-color: rgba(15, 76, 129, 0.25);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--primary-color);
    opacity: 0.1;
    font-size: 4rem;
    z-index: -1;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(9,46,80,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

/* Blog */
.featured-post {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15, 76, 129, 0.12);
    border-color: rgba(15, 76, 129, 0.25);
}

.blog-img {
    position: relative;
    padding-top: 60%;
}

.blog-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-link {
    color: var(--primary-dark);
    text-decoration: none;
}

.blog-card h4 a:hover, 
.featured-post h2 a:hover,
.blog-link:hover {
    color: var(--primary-color) !important;
}

.author-avatar {
    width: 40px; 
    height: 40px; 
    background: rgba(15,76,129,0.1); 
    color: var(--primary-color); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* FAQ */
.faq-sidebar {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.faq-sidebar .nav-link {
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 8px;
    color: #666;
}

.faq-sidebar .nav-link.active {
    background: rgba(15,76,129,0.05);
    color: var(--primary-dark);
    font-weight: 600;
}

.faq-sidebar .nav-link:not(.active):hover {
    background: rgba(0,0,0,0.03);
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color) !important;
    background-color: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}

.accordion-button:focus {
    box-shadow: none !important;
}

.accordion-item-custom {
    border: none;
    margin-bottom: 15px;
    background: transparent;
}

.accordion-button-custom {
    background: white;
    border-radius: 10px !important;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--primary-dark);
    padding: 20px;
}

.accordion-body-custom {
    background: transparent;
    padding: 20px;
    color: #555;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

/* --- Member Profile Styles --- */
.btn-whatsapp {
    border-color: #25D366;
    color: #25D366;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
}

.social-circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #555;
    margin: 0 5px;
    transition: 0.3s;
}

.social-circle-btn:hover {
    background: var(--primary-color) !important;
    color: white !important;
}

.profile-stats-box {
    background: var(--primary-dark);
    color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.profile-text {
    line-height: 1.8;
    font-size: 1.05rem;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.stats-border-sides {
    border-left: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
}

/* Featured Blog & Category Filters */
.category-pill {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    background: white;
    color: var(--text-muted);
    display: inline-block;
}

.category-pill.active,
.category-pill:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}

.featured-blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15,76,129,0.12);
}

.featured-blog-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

/* Chapter Detail Cards */
.chapter-card {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    padding: 35px 30px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chapter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(15,76,129,0.14);
    border-color: var(--primary-color);
}

.chapter-badge-flagship {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.chapter-badge-growing {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #d97706 100%);
    color: var(--primary-dark);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    display: inline-block;
}

.city-stats-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #071f38 100%);
    color: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Media Queries */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-stats-box {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: center;
    }
    
    .auth-visuals {
        display: none;
    }
    
    .event-img {
        flex: 0 0 100%;
    }
    
    .event-content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 2rem;
    }
    
    .auth-form-container {
        padding: 40px 20px;
    }
    
    .registration-card {
        padding: 30px 20px;
    }
    
    .legal-content-wrapper {
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 2.2rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
}

@media (max-width: 575px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
}
