/* ====================================
   Mini Kumbh 2026 - Main Stylesheet
   ==================================== */

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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --accent-color: #ffd700;
    --dark-color: #2c1810;
    --light-color: #fff5e6;
    --text-color: #333;
    --gray-color: #666;
    --border-color: #ddd;
    --success-color: #28a745;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 5px 25px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Language Selector */
.language-selector {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    padding: 5px;
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.language-selector select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.language-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.logo h1 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

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

.nav-menu li a {
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23ff6b35" width="1200" height="600"/><path fill="%23f7931e" opacity="0.3" d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    padding: 2rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

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

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

.btn-primary:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Sections */
section {
    padding: 4rem 0;
}

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

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Cards */
.info-cards {
    background: var(--light-color);
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-image .image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* Features */
.features {
    background: var(--light-color);
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta .btn:hover {
    background: var(--light-color);
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 4rem 0;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.mahakumbh-header {
    background: linear-gradient(135deg, #d4145a, #fbb034);
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-content {
    background: white;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--accent-color);
}

.image-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0;
}

.info-box {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: none;
}

.info-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
}

.highlight-box ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.highlight-box ul li:before {
    content: "⭐";
    position: absolute;
    left: 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.facts-list,
.links-list {
    list-style: none;
}

.facts-list li,
.links-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.facts-list li:last-child,
.links-list li:last-child {
    border-bottom: none;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255,255,255,0.3);
}

.cta-widget .btn {
    background: white;
    color: var(--primary-color);
    margin-top: 1rem;
}

/* Dates Page */
.mela-duration {
    background: var(--light-color);
}

.duration-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.duration-box h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.date-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.date-item {
    text-align: center;
}

.date-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0.5rem;
}

.date-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.date-day {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.date-separator {
    font-size: 2rem;
    color: var(--secondary-color);
}

/* Snan Dates */
.snan-dates {
    padding: 4rem 0;
}

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

.date-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.date-card.featured {
    border: 3px solid var(--accent-color);
}

.date-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.date-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.date-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.date-highlights {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.date-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.date-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
}

.timeline-date {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Planning Tips */
.planning-tips {
    background: var(--light-color);
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Statistics */
.statistics {
    background: var(--light-color);
}

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

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Maha Kumbh Dates */
.mahakumbh-dates {
    padding: 4rem 0;
}

.dates-timeline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.timeline-date-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.date-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}

.date-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.date-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Kumbh Types */
.kumbh-types {
    background: var(--light-color);
}

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

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.type-card.featured {
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
    border: 2px solid var(--accent-color);
}

.type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.type-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.type-frequency {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Locations */
.kumbh-locations {
    padding: 4rem 0;
}

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

.location-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.location-rivers {
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-badge {
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: inline-block;
    margin-top: 1rem;
}

/* Historical Section */
.historical-section {
    background: var(--light-color);
}

.history-content {
    max-width: 900px;
    margin: 0 auto;
}

.history-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* UNESCO Section */
.unesco-section {
    padding: 4rem 0;
}

.unesco-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent-color);
}

.unesco-badge {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.unesco-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Arrangements */
.arrangements-section {
    background: var(--light-color);
}

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

.arrangement-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.arrangement-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Connection Section */
.connection-section {
    padding: 4rem 0;
}

.connection-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.connection-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.connection-cta {
    margin-top: 2rem;
}

/* Parking Page */
.parking-benefits {
    padding: 4rem 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Parking Zones */
.parking-zones {
    background: var(--light-color);
}

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

.zone-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.zone-header {
    padding: 1.5rem;
    color: white;
    text-align: center;
}

.zone-premium {
    background: linear-gradient(135deg, #d4145a, #fbb034);
}

.zone-standard {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.zone-economy {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.zone-header h3 {
    margin-bottom: 0.5rem;
}

.distance {
    font-size: 0.9rem;
    opacity: 0.9;
}

.zone-body {
    padding: 2rem;
}

.vehicle-types {
    margin-bottom: 1.5rem;
}

.vehicle-price {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.vehicle-price:last-child {
    border-bottom: none;
}

.vehicle-price strong {
    color: var(--primary-color);
}

.zone-features {
    list-style: none;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.zone-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.zone-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-note {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

/* Booking Form */
.booking-section {
    padding: 4rem 0;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.booking-container h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.booking-container p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.booking-form {
    margin-top: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.form-price {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}

.price-display strong {
    font-size: 2rem;
    color: var(--primary-color);
}

.form-note {
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Parking Info */
.parking-info {
    background: var(--light-color);
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Parking Contact */
.parking-contact {
    padding: 4rem 0;
}

.contact-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    color: var(--primary-color);
    margin-right: 1rem;
}

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

.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
        box-shadow: var(--shadow);
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem;
    }
    
    /* Hero */
    .hero {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Grid Layouts */
    .cards-grid,
    .features-grid,
    .dates-grid,
    .tips-grid,
    .zones-grid {
        grid-template-columns: 1fr;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Timeline */
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-date {
        left: 20px;
        transform: none;
    }
    
    .timeline-content {
        margin-top: 3.5rem;
    }
    
    /* Date Range */
    .date-range {
        flex-direction: column;
    }
    
    .date-separator {
        transform: rotate(90deg);
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Hero */
    .hero {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    /* Stats */
    .stat-number {
        font-size: 2rem;
    }
    
    /* Booking */
    .booking-container {
        padding: 2rem 1.5rem;
    }
    
    .price-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Logo */
    .logo h1 {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .language-selector,
    .hero-buttons,
    .btn,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .hero {
        height: auto;
        padding: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,107,53,0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Message */
.success-message {
    background: var(--success-color);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    text-align: center;
    animation: slideDown 0.5s ease;
}

/* Error Message */
.error-message {
    background: #dc3545;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin: 1rem 0;
    text-align: center;
    animation: slideDown 0.5s ease;
}

/* Intro Box */
.intro-box {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.intro-box h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* About Page Specific Styles */
.about-gallery {
    background: white;
    padding: 2rem 0;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.main-content-full {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.dual-image-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.dual-image-layout img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.feature-list li:before {
    content: "🕉️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(255,107,53,0.05), rgba(247,147,30,0.05));
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.comparison-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.comparison-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.emphasis-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255,107,53,0.1);
    border-radius: 10px;
}

.info-box-special {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--accent-color);
    margin: 2rem 0;
}

.info-box-special h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.kalpavas-list {
    list-style: none;
}

.kalpavas-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.kalpavas-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.cultural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cultural-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.cultural-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.dates-highlight-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.dates-highlight-list li {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.cta-inline {
    text-align: center;
    margin: 2rem 0;
}

.facilities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.facilities-list li {
    padding: 1rem;
    padding-left: 2.5rem;
    position: relative;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.facilities-list li:before {
    content: "✓";
    position: absolute;
    left: 1rem;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.purpose-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.purpose-item:hover {
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
    transform: translateY(-3px);
}

.purpose-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.message-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 15px;
    color: white;
}

.message-section h2 {
    color: white;
}

.message-box {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.message-box p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

.blessing-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
}

.blessing-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

.welcome-text {
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.cta-box-about {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
}

.cta-box-about h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid img {
        height: 200px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .dual-image-layout {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid,
    .cultural-grid,
    .purpose-grid {
        grid-template-columns: 1fr;
    }
    
    .dates-highlight-list {
        grid-template-columns: 1fr 1fr;
    }
    
    .facilities-list {
        grid-template-columns: 1fr;
    }
    
    .highlight-section {
        padding: 1.5rem;
    }
    
    .message-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .intro-paragraph {
        font-size: 1rem;
    }
    
    .dates-highlight-list {
        grid-template-columns: 1fr;
    }
    
    .comparison-icon,
    .cultural-emoji,
    .purpose-icon {
        font-size: 2rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Styles */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary-color);
}


/* ====================================
   Dates Page Specific Styles
   ==================================== */

/* Dates Hero Section */
.dates-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide:first-child {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-main-title {
    color: white;
    text-align: center;
    font-size: 2.8rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    max-width: 900px;
    padding: 0 20px;
}

/* Dates Introduction */
.dates-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffecd1 100%);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Date Sections */
.date-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.date-section:nth-child(even) {
    background: #f9f9f9;
}

.date-section:nth-child(odd) {
    background: white;
}

.date-header {
    text-align: center;
    margin-bottom: 40px;
}

.date-emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

.date-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.date-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Date Images Grid */
.date-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.date-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Date Content */
.date-content {
    max-width: 900px;
    margin: 0 auto;
}

.date-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
    font-weight: 500;
}

.date-info-box {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.date-section:nth-child(even) .date-info-box {
    background: #f5f5f5;
}

.date-info-box h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.date-list {
    list-style: none;
    padding-left: 0;
}

.date-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.date-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    text-align: center;
}

.warning-box p {
    font-size: 1.1rem;
    color: #856404;
    font-weight: 500;
    margin: 0;
}

/* Why Snan Section */
.why-snan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.why-snan-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.snan-emoji {
    font-size: 5rem;
    display: block;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.snan-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.snan-subtitle {
    font-size: 1.5rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.snan-benefits {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.snan-benefits li {
    background: rgba(255,255,255,0.15);
    padding: 20px 30px;
    margin: 15px 0;
    border-radius: 50px;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.snan-benefits li:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(10px);
}

.snan-conclusion {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
}

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

/* Responsive Design for Dates Page */
@media (max-width: 1024px) {
    .page-main-title {
        font-size: 2.2rem;
    }
    
    .date-title {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .dates-hero {
        height: 350px;
    }
    
    .page-main-title {
        font-size: 1.8rem;
    }
    
    .date-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .date-img {
        height: 220px;
    }
    
    .date-title {
        font-size: 1.6rem;
    }
    
    .date-emoji {
        font-size: 3rem;
    }
    
    .date-info-box {
        padding: 20px;
    }
    
    .snan-title {
        font-size: 2rem;
    }
    
    .snan-emoji {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .dates-hero {
        height: 280px;
    }
    
    .page-main-title {
        font-size: 1.4rem;
    }
    
    .date-images-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .date-img {
        height: 200px;
    }
    
    .date-section {
        padding: 50px 0;
    }
    
    .date-title {
        font-size: 1.3rem;
    }
    
    .date-subtitle {
        font-size: 1rem;
    }
    
    .date-emoji {
        font-size: 2.5rem;
    }
    
    .date-intro {
        font-size: 1rem;
    }
    
    .date-info-box {
        padding: 15px;
    }
    
    .date-info-box h3 {
        font-size: 1.2rem;
    }
    
    .date-list li {
        font-size: 0.95rem;
        padding-left: 30px;
    }
    
    .why-snan-section {
        padding: 50px 0;
    }
    
    .snan-title {
        font-size: 1.6rem;
    }
    
    .snan-subtitle {
        font-size: 1.2rem;
    }
    
    .snan-benefits li {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .snan-conclusion {
        font-size: 1.1rem;
        padding: 20px;
    }
}

/* ====================================
   Logo Styles
   ==================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.5);
}

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 80px;
    width: 80px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.footer-logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

/* Mobile Responsive Logo */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        width: 45px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .footer-logo-img {
        height: 60px;
        width: 60px;
    }
    
    .footer-logo-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        width: 40px;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-logo-text {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* ====================================
   Park Assign Page Styles
   ==================================== */

/* Park Assign Header */
.park-assign-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 80px 0;
}

.park-assign-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Park Assign Intro */
.park-assign-intro {
    padding: 60px 0;
    background: #f9f9f9;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-icon {
    margin-bottom: 20px;
}

.app-icon {
    font-size: 5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Main Features */
.park-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Smart Features */
.smart-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffecd1 100%);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.feature-emoji,
.why-emoji {
    display: inline-block;
    margin-right: 15px;
    font-size: 2.5rem;
}

.smart-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.smart-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.smart-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.smart-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.smart-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-color);
}

/* App Download Section */
.app-download {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    text-align: center;
}

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

.download-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.app-download h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.download-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge-placeholder {
    background: white;
    color: var(--dark-color);
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.badge-placeholder:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.badge-icon {
    font-size: 2.5rem;
}

.badge-text {
    text-align: left;
}

.badge-text small {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-color);
}

.badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.app-search-note {
    margin-top: 30px;
}

.app-search-note p {
    margin: 10px 0;
    font-size: 1.1rem;
}

/* Why Use Section */
.why-use-park-assign {
    padding: 80px 0;
    background: white;
}

.benefits-list {
    max-width: 800px;
    margin: 40px auto 0;
    display: grid;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff5e6;
    transform: translateX(10px);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--success-color);
    font-weight: bold;
}

.benefit-item span:last-child {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c1810 0%, #5a3825 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .park-assign-header h1 {
        font-size: 1.8rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .app-icon {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .smart-features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge-placeholder {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-box h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .park-assign-header {
        padding: 50px 0;
    }
    
    .park-assign-header h1 {
        font-size: 1.5rem;
    }
    
    .intro-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .smart-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-emoji,
    .why-emoji {
        font-size: 2rem;
    }
}

/* ====================================
   Sangam Image Styling - Home Page
   ==================================== */

.sangam-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.sangam-img:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 30px;
        width: 100%;
        height: 300px;
    }
    
    .sangam-img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .about-image {
        height: 250px;
    }
}
