:root {
    --primary-green: #1a3d2e;
    --light-green: #2d5a45;
    --accent-gold: #d4a853;
    --bg-cream: #f5f3ed;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

.hide {
    display: none;
}

.serif {
    font-family: 'Arvo', serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(26, 61, 46, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--accent-gold), #e8c878);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

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

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--primary-green);
}

.btn-gold:hover {
    background: #e8c878;
}

/* Hero Section */
.hero {
    min-height: 103vh;
    background: linear-gradient(135deg, rgba(26,61,46,0.5), rgba(26,61,46,0.5)), 
                url('web-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero h1 .gold {
    color: var(--accent-gold);
}

.hero p {
    color: rgba(255,255,255,1);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    color: var(--white);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Card */
.hero-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 1.5rem;
    max-width: 320px;
    margin-left: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: absolute;
    right: 2rem;
    bottom: 3rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-badge {
    background: #10b981;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-destination {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.card-progress {
    margin-bottom: 1rem;
}

.progress-bar {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 68%;
    background: var(--accent-gold);
    border-radius: 3px;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-stat {
    text-align: center;
    padding: 0.8rem;
    background: var(--bg-cream);
    border-radius: 12px;
}

.card-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-stat-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.card-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.avatar:first-child {
    margin-left: 0;
}

/* Pilgrims Section */
.pilgrims {
    padding: 6rem 2rem;
    background: var(--bg-cream);
}

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

.section-label {
    color: var(--primary-green);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.section-title .green {
    color: var(--primary-green);
}

.pilgrims-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pilgrims-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.image-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.image-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.pilgrims-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-item:hover, .feature-item.active {
    border-color: var(--primary-green);
    background: var(--primary-green);
    color: white;
}

.feature-item:hover .feature-number,
.feature-item.active .feature-number {
    color: var(--accent-gold);
}

.feature-number {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.feature-text {
    flex: 1;
    font-weight: 500;
}

.feature-arrow {
    color: var(--text-light);
}

.feature-item:hover .feature-arrow,
.feature-item.active .feature-arrow {
    color: white;
}

.start-journey {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    background: white;
    border-radius: 12px;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.start-journey:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.start-journey-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.start-journey-text p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.start-journey-arrow {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Operators Section */
.operators {
    padding: 6rem 2rem;
    background: var(--primary-green);
    color: white;
    position: relative;
    overflow: hidden;
}

.operators::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,168,83,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.operators-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.operators-label {
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.operators h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.operators h2 .gold {
    color: var(--accent-gold);
}

.operators > .operators-container > div:first-child > p {
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.dashboard-preview {
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.dashboard-date {
    font-size: 0.8rem;
    opacity: 0.7;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-stat {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 12px;
}

.dashboard-stat-label {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-bottom: 0.3rem;
}

.dashboard-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-stat-change {
    font-size: 0.75rem;
    color: #10b981;
}

.dashboard-stat-change.negative {
    color: #ef4444;
}

.chart-placeholder {
    height: 80px;
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    padding-top: 1rem;
}

.chart-bar {
    flex: 1;
    background: rgba(212,168,83,0.3);
    border-radius: 4px 4px 0 0;
    transition: all 0.3s;
}

.chart-bar:hover {
    background: var(--accent-gold);
}

.chart-bar:nth-child(1) { height: 40%; }
.chart-bar:nth-child(2) { height: 65%; }
.chart-bar:nth-child(3) { height: 45%; }
.chart-bar:nth-child(4) { height: 80%; }
.chart-bar:nth-child(5) { height: 60%; }
.chart-bar:nth-child(6) { height: 90%; }
.chart-bar:nth-child(7) { height: 75%; }

.operators-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.operator-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.operator-feature:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.operator-feature i {
    width: 24px;
    color: var(--accent-gold);
}

.operator-feature span {
    flex: 1;
    font-size: 0.95rem;
}

.operator-feature .plus {
    color: rgba(255,255,255,0.4);
}

.join-btn {
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 0.95rem;
}

/* Community Section */
.community {
    padding: 6rem 2rem;
    background: #0f0f0f;
    color: white;
}

.community-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.community-label {
    color: var(--accent-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.community h2 {
    font-size: 3rem;
    line-height: 1.2;
}
.testimonials h2 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--light-green)
}
.testimonials p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 1rem 0 2rem 0;
    max-width: 600px;
}

/* Events Section - Styled to match Safar-e-Ishq */
.events {
    padding: 6rem 2rem;
    background: var(--bg-cream);
    position: relative;
    overflow: hidden;
}

/* Subtle decorative background element */
.events::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212,168,83,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.events::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26,61,46,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.events .section-title {
    font-family: 'Arvo', serif;
    font-size: 3rem;
    color: var(--light-green);
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.events .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.events .section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Event Card */
.event-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 61, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 61, 46, 0.12);
    border-color: rgba(26, 61, 46, 0.15);
}

.event-card:hover::before {
    transform: scaleY(1);
}

/* Event Icon */
.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(26, 61, 46, 0.2);
}

.event-card:hover .event-icon {
    background: linear-gradient(135deg, var(--accent-gold), #e8c878);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 168, 83, 0.3);
}

/* Event Body */
.event-body {
    flex: 1;
}

.event-body h3 {
    font-family: 'Arvo', serif;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.event-card:hover .event-body h3 {
    color: var(--accent-gold);
}

.event-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Alternative Dark Theme Variant */
.events.dark-theme {
    background: var(--primary-green);
}

.events.dark-theme .section-title {
    color: var(--white);
}

.events.dark-theme .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.events.dark-theme .event-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.events.dark-theme .event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 168, 83, 0.3);
}

.events.dark-theme .event-body h3 {
    color: var(--white);
}

.events.dark-theme .event-card:hover .event-body h3 {
    color: var(--accent-gold);
}

.events.dark-theme .event-body p {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
    .events {
        padding: 4rem 1.5rem;
    }

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

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card {
        padding: 1.8rem;
        flex-direction: column;
        text-align: center;
    }

    .event-icon {
        margin: 0 auto;
    }
}

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

.event-card {
    animation: fadeInUp 0.6s ease forwards;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }

.community h2 .gold {
    color: var(--accent-gold);
}

.community-desc {
    text-align: right;
    max-width: 400px;
}

.community-desc p {
    color: rgba(255,255,255,1);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.share-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.gallery-author {
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-location {
    font-size: 0.75rem;
    opacity: 0.7;
}

.share-card {
    background: var(--primary-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.share-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,168,83,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.share-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.share-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.share-card p {
    font-size: 0.85rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 2rem;
    background: var(--bg-cream);
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.verified {
    margin-left: auto;
    font-size: 0.75rem;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.testimonial p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: var(--primary-green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,168,83,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta h2 .gold {
    color: var(--accent-gold);
}

.cta > .cta-container > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.store-btn i {
    font-size: 1.5rem;
}

.store-btn div {
    text-align: left;
}

.store-btn small {
    font-size: 0.7rem;
    opacity: 0.7;
    display: block;
}

.store-btn strong {
    font-size: 1rem;
    font-weight: 600;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.rating-stars {
    color: var(--accent-gold);
}

/* Footer Text */
.footer-text {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.footer-text h2 {
    font-size: 8rem;
    color: rgba(26,61,46,0.1);
    white-space: nowrap;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 2rem;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-logo-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.footer-links {
    display: none;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.footer-social a:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.footer-connect {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.footer-connect a {
    color: var(--primary-green);
    text-decoration: none;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 999;
}

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

.text-white {
    color: white;
}

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container,
    .pilgrims-content,
    .operators-container {
        grid-template-columns: 1fr;
    }

    .hero-card {
        margin: 0 auto;
    }

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

    .gallery-item.large,
    .gallery-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }

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

    .community-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .community-desc {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title,
    .operators h2,
    .community h2,
    .cta h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-text h2 {
        font-size: 3rem;
    }

    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 500px) {
    .gallery {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }
}