/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Government website theme - Saffron/Orange inspired */
    --primary-color: #FF6B35;
    --secondary-color: #FF8C42;
    --accent-color: #FFA366;
    --saffron-light: #FFB380;
    --saffron-medium: #FF6B35;
    --saffron-dark: #E55A2B;
    --gold-gradient: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #E55A2B 100%);
    --gold-gradient-light: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 50%, #FFD9CC 100%);
    --gold-gradient-section: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #FFF5F0;
    --bg-white: #ffffff;
    --shadow: 0 2px 10px rgba(255, 107, 53, 0.2);
    --shadow-lg: 0 5px 20px rgba(255, 107, 53, 0.3);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Smooth scrolling for mobile */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Improve scrolling performance on mobile */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
}

/* Better focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    /* Performance optimizations */
    will-change: scroll-position;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Performance optimization */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize image loading */
img[loading="lazy"] {
    content-visibility: auto;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-brand .logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 50%, #E55A2B 100%);
    background-image: url('../images/sangam.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 20px 80px;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%, 100% 50%, 50% 0%;
    }
    50% {
        background-position: 100% 50%, 0% 50%, 50% 100%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
    width: 100%;
    max-width: 800px;
    padding: 2rem 1rem;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

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

.hero-subtitle {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}


.hero-badge {
    margin: 1.5rem 0;
}

.badge-text {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Hero Date Highlight */
.hero-date-highlight {
    margin: 2rem 0;
    text-align: center;
}

.date-highlight-text {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4), 0 0 0 4px rgba(255, 107, 53, 0.1);
    animation: datePulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.date-highlight-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.3), transparent);
    transform: rotate(45deg);
    animation: dateShine 3s infinite;
}

@keyframes datePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4), 0 0 0 4px rgba(255, 107, 53, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6), 0 0 0 6px rgba(255, 107, 53, 0.2);
    }
}

@keyframes dateShine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    position: relative;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    min-width: 120px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

.countdown-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.countdown-item:nth-child(1) {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    border-color: #ff8e8e;
    animation-delay: 0s;
}

.countdown-item:nth-child(2) {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-color: #6eddd6;
    animation-delay: 0.2s;
}

.countdown-item:nth-child(3) {
    background: linear-gradient(135deg, #ffe66d 0%, #ffd93d 100%);
    border-color: #ffed8a;
    animation-delay: 0.4s;
}

.countdown-item:nth-child(4) {
    background: linear-gradient(135deg, #a8e6cf 0%, #7fcdbb 100%);
    border-color: #b8f0d9;
    animation-delay: 0.6s;
}

.countdown-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
    animation: numberPulse 1s ease-in-out infinite;
    letter-spacing: 2px;
}

.countdown-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

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

/* FAQ Section */
.faq-section {
    background: var(--gold-gradient-section);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 30%, rgba(255, 140, 66, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.faq-item {
    background: var(--bg-white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

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

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-color: var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

/* Page Header */
.page-header {
    background: var(--gold-gradient);
    color: white;
    padding: 40px 0 60px;
    text-align: center;
    margin-top: 0;
    padding-top: calc(70px + 40px);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about {
    background: var(--gold-gradient-section);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 140, 66, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.about-image-section {
    margin-bottom: 3rem;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.image-overlay p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
}

.ritual-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.ritual-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.ritual-list li:hover {
    background: #e9ecef;
    transform: translateX(10px);
}

.ritual-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

/* Sahi Snan Section */
.sahi-snan {
    background: var(--gold-gradient-section);
    position: relative;
}

.sahi-snan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.sahi-snan-content {
    position: relative;
    z-index: 1;
}

.sahi-snan-dates {
    position: relative;
    z-index: 1;
}

.sahi-snan-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.sahi-snan-dates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.date-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.date-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.date-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
}

.date-card.main-date {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 50%, #ffffff 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.date-card.main-date::before {
    height: 8px;
}

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

.date-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.date-info {
    display: flex;
    flex-direction: column;
}

.date-label {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--text-dark);
}

.date-day {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.date-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.date-month {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.date-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.date-significance {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.date-significance strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.sahi-snan-note {
    margin-top: 3rem;
}

.note-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
    border-left: 5px solid var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: var(--shadow);
}

.note-box i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.note-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.note-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Events Section */
.events {
    background: var(--gold-gradient-section);
    position: relative;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 140, 66, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.events-image-section {
    margin-top: 4rem;
}

.events-image {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.events-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.event-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-top-width: 6px;
}

.event-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.event-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background: var(--gold-gradient-section);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.info-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(52, 73, 94, 0.5) 100%);
    z-index: 0;
}

.footer-content,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.footer-brand p {
    opacity: 0.9;
    font-weight: bold;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.footer-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-style: italic;
}

/* Quick Info Section */
.quick-info {
    background: var(--gold-gradient-section);
    padding: 60px 0;
    position: relative;
}

.quick-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 215, 110, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.quick-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

.quick-info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-top-width: 6px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.quick-info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.quick-info-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-link:hover {
    gap: 1rem;
}

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

/* Highlights Section */
.highlights {
    background: var(--gold-gradient-section);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.highlights-content {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.highlight-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Significance Section */
.significance {
    background: var(--gold-gradient-section);
    position: relative;
}

.significance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.significance-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.significance-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.significance-text p {
    margin-bottom: 1.5rem;
}

/* Rituals Section */
.rituals {
    background: var(--gold-gradient-section);
    position: relative;
}

.rituals::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(245, 215, 110, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.rituals-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.rituals-content > p {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Best Time Section */
.best-time {
    background: var(--gold-gradient-section);
    position: relative;
}

.best-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 215, 110, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

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

.time-info-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

.time-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.time-info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.time-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.time-info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Daily Schedule Section */
.daily-schedule {
    background: var(--gold-gradient-section);
    position: relative;
}

.daily-schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 215, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.schedule-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.schedule-item {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    align-items: flex-start;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid var(--primary-color);
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.schedule-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    flex-shrink: 0;
}

.schedule-time i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.schedule-time span {
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.schedule-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.schedule-details p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Map Section */
.map-section {
    background: var(--bg-white);
}

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

.direction-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

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

.direction-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.direction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.direction-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.map-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    gap: 1rem;
}

/* Important Info Section */
.important-info {
    background: var(--gold-gradient-section);
    position: relative;
}

.important-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.info-boxes {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-box {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid var(--primary-color);
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-box p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Scriptural References Section */
.scriptural-references {
    background: var(--gold-gradient-section);
    position: relative;
}

.scriptural-references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(245, 215, 110, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.scriptural-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scriptural-quote {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    position: relative;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.scriptural-quote blockquote {
    margin: 0;
    padding-left: 2rem;
}

.scriptural-quote blockquote p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
}

.scriptural-quote cite {
    display: block;
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
}

.scriptural-text {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.scriptural-text > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.scriptural-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.scriptural-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    line-height: 1.7;
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid var(--primary-color);
}

.scriptural-list li strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

/* Sacred Sites Section */
.sacred-sites {
    background: var(--gold-gradient-section);
    position: relative;
}

.sacred-sites::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.sacred-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.sacred-site-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

.sacred-site-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-top-width: 6px;
}

.site-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.sacred-site-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.site-location {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-location i {
    font-size: 0.9rem;
}

.site-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Accommodation Section */
.accommodation-section {
    background: var(--gold-gradient-section);
    position: relative;
}

.accommodation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.accommodation-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

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

.accommodation-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.accommodation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.accommodation-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accommodation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accommodation-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--bg-light);
    line-height: 1.6;
}

.accommodation-list li:last-child {
    border-bottom: none;
}

/* Safety Section */
.safety-section {
    background: var(--gold-gradient-section);
    position: relative;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(245, 215, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.safety-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid var(--primary-color);
}

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

.safety-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.safety-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.safety-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.safety-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.emergency-contact {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
    color: var(--text-dark);
}

/* Weather Section */
.weather-section {
    background: var(--gold-gradient-section);
    position: relative;
}

.weather-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.weather-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.weather-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.weather-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.weather-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.weather-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.weather-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.weather-list li {
    padding: 0.7rem 0;
    color: var(--text-light);
    line-height: 1.7;
    border-bottom: 1px solid var(--bg-light);
}

.weather-list li:last-child {
    border-bottom: none;
}

/* Accessibility Section */
.accessibility-section {
    background: var(--gold-gradient-section);
    position: relative;
}

.accessibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(245, 215, 110, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.accessibility-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.2);
}

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

.accessibility-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.accessibility-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.accessibility-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accessibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accessibility-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    line-height: 1.7;
    padding-left: 1.5rem;
    position: relative;
}

.accessibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 5px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Akharas Section */
.akharas-section {
    background: var(--gold-gradient-section);
    position: relative;
}

.akharas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.akharas-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.akharas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.akhara-card {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-top: 4px solid var(--primary-color);
}

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

.akhara-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.akhara-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.akhara-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.spiritual-orgs {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255, 107, 53, 0.2);
}

.spiritual-orgs h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.spiritual-orgs > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.orgs-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.orgs-list li {
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-radius: 8px;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.orgs-list li::before {
    content: '•';
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.orgs-note {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e7dd 100%);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-features,
    .events-grid,
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
        min-height: 44px;
        width: 100%;
    }

    .nav-brand .logo {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero {
        padding: 90px 15px 60px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }


    .date-highlight-text {
        font-size: 1.4rem;
        padding: 14px 30px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 1.5rem;
    }

    .badge-text {
        font-size: 0.95rem;
        padding: 8px 20px;
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        padding: 0 20px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    /* Page Header */
    .page-header {
        padding: 30px 0 40px;
        padding-top: calc(70px + 30px);
        margin-top: 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .page-header p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* Sections */
    section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    /* About Section */
    .about-text {
        text-align: left;
        font-size: 1rem;
        padding: 0 5px;
    }

    .lead-text {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .about-image img {
        height: 250px;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card i {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    /* Sahi Snan Section */
    .sahi-snan-intro {
        padding: 1.5rem;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .sahi-snan-dates {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .date-card {
        padding: 1.5rem;
    }

    .date-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .date-label {
        font-size: 1.1rem;
    }

    .date-day {
        font-size: 0.85rem;
    }

    .date-number {
        font-size: 2.5rem;
    }

    .date-month {
        font-size: 1rem;
    }

    .date-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .note-box {
        flex-direction: column;
        text-align: left;
        padding: 1.5rem;
    }

    .note-box i {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .note-box h4 {
        font-size: 1.1rem;
    }

    /* Events Section */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-card {
        padding: 2rem 1.5rem;
    }

    .event-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .event-card h3 {
        font-size: 1.3rem;
    }

    .events-image {
        margin-top: 2rem;
    }

    .events-image img {
        height: 250px;
    }

    /* Quick Info */
    .quick-info {
        padding: 40px 0;
    }

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

    .quick-info-card {
        padding: 2rem 1.5rem;
    }

    /* Highlights */
    .highlights-content {
        gap: 2rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .highlight-item h3 {
        font-size: 1.4rem;
    }

    /* Schedule */
    .schedule-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .schedule-time {
        min-width: auto;
        margin-bottom: 1rem;
    }

    .schedule-time i {
        font-size: 2rem;
    }

    /* Contact */
    .contact-info {
        gap: 1.5rem;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .info-item i {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .info-item h3 {
        font-size: 1.2rem;
    }

    /* Directions */
    .directions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .direction-card {
        padding: 2rem 1.5rem;
    }

    /* Info Boxes */
    .info-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-box {
        padding: 2rem 1.5rem;
    }

    /* Best Time */
    .time-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .time-info-card {
        padding: 2rem 1.5rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-logo {
        width: 80px;
        height: 80px;
    }

    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.9rem;
    }

    /* Ritual List */
    .ritual-list {
        margin: 1.5rem 0;
    }

    .ritual-list li {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .ritual-list li i {
        font-size: 1.1rem;
    }

    /* Countdown Timer */
    .countdown-timer {
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .countdown-item {
        padding: 1.5rem 1rem;
        min-width: 90px;
        border-width: 2px;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    /* FAQ */
    .faq-question {
        padding: 1.2rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    /* Scriptural References */
    .scriptural-quote {
        padding: 1.5rem;
    }

    .scriptural-quote blockquote p {
        font-size: 1.1rem;
        padding-left: 1rem;
    }

    /* Sacred Sites */
    .sacred-sites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Accommodation */
    .accommodation-grid {
        grid-template-columns: 1fr;
    }

    /* Safety */
    .safety-grid {
        grid-template-columns: 1fr;
    }

    /* Weather */
    .weather-info {
        grid-template-columns: 1fr;
    }

    /* Accessibility */
    .accessibility-grid {
        grid-template-columns: 1fr;
    }

    /* Akharas */
    .akharas-grid {
        grid-template-columns: 1fr;
    }

    /* Guidelines */
}

/* Small Mobile Styles (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .navbar .container {
        padding: 0.8rem 15px;
    }

    .nav-brand .logo {
        width: 35px;
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 80px 12px 50px;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }

    .hero-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        font-weight: bold;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }


    .date-highlight-text {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 1rem;
    }

    .badge-text {
        font-size: 0.85rem;
        padding: 6px 16px;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        max-width: 100%;
    }

    /* Page Header */
    .page-header {
        padding: 25px 0 30px;
        padding-top: calc(70px + 25px);
        margin-top: 0;
    }

    .page-header h1 {
        font-size: 1.6rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    /* Cards */
    .feature-card,
    .event-card,
    .date-card,
    .quick-info-card,
    .direction-card,
    .info-box,
    .time-info-card {
        padding: 1.5rem 1rem;
    }

    /* Date Cards */
    .date-number {
        font-size: 2rem;
    }

    .date-month {
        font-size: 0.9rem;
    }

    /* Images */
    .about-image img,
    .events-image img {
        height: 200px;
    }

    /* Footer */
    .footer-logo {
        width: 70px;
        height: 70px;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 0.8rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .date-number {
        font-size: 1.8rem;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 10px 50px;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
    }

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

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    .btn,
    .nav-menu a,
    .social-icons a,
    .info-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .event-card:hover,
    .date-card:hover {
        transform: none;
    }

    /* Better tap feedback */
    .btn:active,
    .nav-menu a:active,
    .social-icons a:active {
        transform: scale(0.98);
        opacity: 0.8;
    }
}

/* Floating Instagram Icon - Fixed Bottom Right (for other pages) */
.floating-instagram {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    animation: float 3s ease-in-out infinite;
    /* Performance optimization */
    will-change: transform;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Ensure it stays in viewport */
    left: auto !important;
    top: auto !important;
    margin: 0 !important;
}

/* Draggable Floating Instagram Icon (Home Page) */
.floating-instagram-draggable {
    position: fixed !important;
    right: 30px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    animation: float 3s ease-in-out infinite;
    cursor: move;
    user-select: none;
    -webkit-user-select: none;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
}

.floating-instagram-draggable.dragging {
    animation: none;
    cursor: grabbing;
    z-index: 10000 !important;
}

.floating-instagram-draggable a {
    pointer-events: auto !important;
    cursor: pointer;
}

.floating-instagram-draggable.dragging a {
    pointer-events: none;
}

.floating-instagram a {
    display: flex !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 8px;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
}

.floating-instagram a:hover {
    transform: scale(1.1) translateZ(0);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.6);
}

.floating-instagram img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Instagram Pop-up Modal */
.instagram-popup {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000 !important;
    animation: fadeIn 0.3s ease;
    visibility: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.instagram-popup.show {
    display: block !important;
    visibility: visible !important;
}

.popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: fixed;
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(212, 175, 55, 0.3);
    animation: slideDown 0.4s ease;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 10001;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
    transform: rotate(90deg);
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.popup-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.popup-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: bold;
}

.popup-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.popup-btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    background: #1877f2 !important;
    color: white !important;
    border: none !important;
}

.popup-btn:hover {
    background: #166fe5 !important;
    color: white !important;
}

.popup-dismiss {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    width: 100%;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-dismiss:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Prevent body scroll when popup is visible */
body.popup-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Responsive styles for floating icon and popup */
@media (max-width: 768px) {
    .floating-instagram {
        bottom: 20px;
        right: 20px;
    }

    .floating-instagram a {
        width: 50px;
        height: 50px;
        padding: 6px;
    }

    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 90%;
        max-height: 80vh;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .popup-content h3 {
        font-size: 1.5rem;
    }

    .popup-content p {
        font-size: 1rem;
    }

    .popup-icon {
        width: 70px;
        height: 70px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .floating-instagram {
        bottom: 15px;
        right: 15px;
    }

    .floating-instagram a {
        width: 45px;
        height: 45px;
        padding: 5px;
    }

    .popup-content {
        padding: 1.5rem 1rem;
        max-height: 75vh;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

