/* Prasanthi Dham - Updated Theme Styles */
/* Based on Prasanthi Nilayam inspiration with specified colors */
/* Updated: FAQ styling fix */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Traditional Prasanthi Nilayam Colors */
    --primary-color: #FF6B35;
    /* Traditional saffron/orange */
    --secondary-color: #4A90E2;
    /* Traditional blue */
    --accent-color: #FFD700;
    /* Keep gold accent */

    --primary-saffron: #FF6B35;
    --light-saffron: #FF8A5B;
    --pastel-orange: #FFE0B3;
    --cream-orange: #FFF2E6;

    --primary-blue: #4A90E2;
    --deep-blue: #357ABD;
    --light-blue: #B3D9FF;
    --pastel-blue: #E6F3FF;

    --golden-yellow: #FFD700;
    --pastel-yellow: #FFF0B3;
    --cream-yellow: #FFF8E6;
    --warm-yellow: #FFEB99;

    --soft-pink: #FFB3D9;
    --rose-pink: #FFCCEB;
    --blush-pink: #FFE6F5;
    --warm-pink: #FF99CC;

    /* Neutral Colors - Updated for better readability */
    --text-primary: #2C3E50;
    --text-secondary: #34495E;
    --text-dark: #2C3E50;
    /* New variable for better contrast */
    --text-light: #85929E;
    --text-muted: #BDC3C7;

    --bg-white: #FFFFFF;
    --bg-off-white: #FAFAFA;
    --bg-light: #F8F9FA;
    --bg-section: #F4F6F8;

    --border-light: #E5E8EB;
    --border-medium: #D5DBDB;
    --border-dark: #BDC3C7;

    /* Accent Colors */
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --error-color: #E74C3C;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50%;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Calibri', 'Roboto', 'Tahoma', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 19px;
    overflow-x: hidden;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Calibri', 'Roboto', 'Tahoma', 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(35px, 5vw, 59px);
}

h2 {
    font-size: clamp(31px, 4vw, 45px);
}

h3 {
    font-size: clamp(27px, 3vw, 35px);
}

h4 {
    font-size: clamp(23px, 2.5vw, 27px);
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Calibri', 'Roboto', 'Tahoma', sans-serif;
}

.btn-primary {
    background: var(--primary-saffron);
    color: white;
    border-color: var(--primary-saffron);
}

.btn-primary:hover {
    background: var(--light-saffron);
    border-color: var(--light-saffron);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo h2 {
    font-size: 27px;
    color: var(--primary-saffron);
    margin: 0;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2xl);
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 18px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-saffron);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-saffron);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-saffron);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 100px 0 60px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    min-height: 80vh;
}

.hero-carousel {
    position: relative;
    height: 600px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 179, 102, 0.3),
            rgba(135, 206, 235, 0.2));
}

.hero-content {
    text-align: left;
    color: var(--text-primary);
}

.slideshow-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.indicator::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: transparent;
}

.indicator.active,
.indicator:hover {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive Design for Hero */
@media (max-width: 968px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-carousel {
        height: 400px;
        order: 1;
    }

    .hero-content {
        order: 2;
        text-align: center;
        padding: var(--space-lg) 0;
    }

    .nav-container {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .nav-menu {
        gap: var(--space-sm) !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-carousel {
        height: 300px;
    }

    .slideshow-indicators {
        bottom: 16px;
        gap: 8px;
    }

    .indicator {
        width: 12px;
        height: 12px;
        border-width: 1px;
    }

    .indicator::before {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

.hero-title {
    font-size: clamp(43px, 6vw, 67px);
    margin-bottom: var(--space-lg);
    font-weight: 800;
    color: var(--primary-saffron);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(23px, 3vw, 31px);
    margin-bottom: var(--space-md);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--primary-blue);
}

.hero-description {
    font-size: clamp(19px, 2vw, 23px);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Announcement Banner */
.announcement-banner {
    background: var(--primary-color);
    color: white !important;
    padding: var(--space-lg) 0;
    border-top: 3px solid var(--golden-yellow);
    border-bottom: 3px solid var(--golden-yellow);
}

.announcement-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.announcement-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
}

.announcement-col-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    color: var(--golden-yellow);
}

.announcement-icon {
    font-size: 22px;
}

.announcement-col p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bg-white) !important;
}

.announcement-btn {
    display: inline-block;
    margin-top: auto;
    padding: 10px 24px;
    background: var(--golden-yellow);
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: center;
}

.announcement-btn:hover {
    background: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .announcement-two-col {
        grid-template-columns: 1fr;
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background: var(--bg-section);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-block;
    color: #6c757d;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: #e9ecef;
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

.section-title {
    margin-bottom: var(--space-lg);
    color: var(--primary-saffron);
    font-weight: 700;
}

.section-description {
    font-size: 21px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Vision Section */
.vision-section {
    background: #f8f9fa;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: 60px;
}

.vision-card {
    background: var(--bg-white);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--golden-yellow);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Vision icons removed as requested */

.vision-card h3 {
    font-size: 27px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
    font-weight: 700;
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 19px;
}

.mission-statement {
    background: var(--bg-white);
    padding: var(--space-2xl) var(--space-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--primary-blue);
    border-top: 1px solid var(--border-light);
}

.mission-statement p {
    font-size: 21px;
    line-height: 1.8;
    color: var(--text-primary);
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Pillars Section */
.pillars-section {
    background: var(--bg-white);
}

.pillars-section .section-title {
    font-size: 36px;
    line-height: 1.4;
}

.pillars-grid {
    display: grid;
    gap: var(--space-2xl);
}

.pillar-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    background: var(--pastel-blue);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.pillar-card:nth-child(even) {
    direction: rtl;
}

.pillar-card:nth-child(even) .pillar-content {
    direction: ltr;
}

.pillar-image {
    height: 100%;
    overflow: hidden;
}

.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.pillar-card:hover .pillar-image img {
    transform: scale(1.05);
}

.pillar-content {
    padding: var(--space-2xl);
}

.pillar-content h3 {
    font-size: 31px;
    margin-bottom: var(--space-md);
    color: var(--primary-blue);
    font-weight: 700;
}

.pillar-content p {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    background: var(--soft-pink);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto 40px;
}

.faq-category {
    margin: var(--space-2xl) 0 var(--space-lg) 0;
}

.faq-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-saffron);
    text-align: left;
    margin: 0;
}

.faq-category-title::after {
    display: none;
}

.faq-item {
    background: var(--bg-white);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    /* Updated for better readability */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: 'Calibri', 'Roboto', 'Tahoma', sans-serif;
}

.faq-question:hover {
    color: #6c757d;
    background: #e9ecef;
}

.faq-icon {
    font-size: 27px;
    color: var(--primary-saffron);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 1500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-md);
    color: var(--text-dark);
    /* Updated for better readability */
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: var(--space-md);
}

.faq-answer ul {
    padding: 0 var(--space-xl) var(--space-lg);
    margin: 0;
    padding-left: calc(var(--space-xl) + 20px);
}

.faq-answer li {
    color: var(--text-dark);
    /* Updated for better readability */
    line-height: 1.6;
    margin-bottom: var(--space-sm);
}

.highlight-amount {
    background-color: var(--accent-gold);
    color: var(--primary-saffron);
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.faq-cta {
    text-align: center;
    padding: var(--space-2xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

/* Activities Section */
.activities-section {
    background: var(--pastel-yellow);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.activity-card {
    background: var(--bg-white);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--golden-yellow);
    border: 1px solid var(--border-light);
}

.activity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-saffron);
}

.activity-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    color: #6c757d;
    /* Grey color for all activity icons */
}

.activity-card h3 {
    font-size: 22px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.activity-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 18px;
}

/* Forms Section */
.forms-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}


/* Contact Form Row Layout */
.contact-form-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-sm);
    align-items: start;
    margin-bottom: var(--space-4xl);
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-xs);
    min-height: 400px;
}

.forms-section .section-header {
    max-width: 1200px;
    margin: 0 auto var(--space-2xl) auto;
    padding: 0 var(--space-lg);
}

.form-image-left,
.form-image-right {
    width: 100%;
    transition: all 0.3s ease;
    justify-self: center;
    max-width: 200px;
}

.form-image-left:hover,
.form-image-right:hover {
    transform: translateY(-5px);
}

.form-image-left img,
.form-image-right img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid #fff;
}

.form-image-left img:hover,
.form-image-right img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.contact-form-container {
    width: 100%;
    height: fit-content;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    justify-self: stretch;
    align-self: start;
    min-width: 0;
    grid-column: 2;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--golden-yellow), var(--primary-color));
    z-index: -1;
    border-radius: var(--radius-xl);
}

.contact-form-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.form-content-wrapper {
    padding: var(--space-2xl);
    background: #fff;
    border-radius: var(--radius-xl);
    width: 100%;
    box-sizing: border-box;
}

/* Yatra Section Header */
.yatra-section-header {
    margin-top: var(--space-5xl);
    margin-bottom: var(--space-2xl);
}

/* Yatra Form Row Layout */
.yatra-form-row {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-lg);
}

.yatra-form-row .form-container {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.yatra-form-row .form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--golden-yellow), #ff6b35, var(--golden-yellow));
    z-index: -1;
    border-radius: var(--radius-xl);
}

.yatra-form-row .form-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.yatra-info {
    padding: var(--space-2xl);
    background: #fff;
    border-radius: var(--radius-xl);
}

.yatra-info h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.yatra-info h4::before {
    content: '🕉️';
    font-size: 1.2em;
}

.yatra-info ul {
    list-style: none;
    padding: 0;
    margin: var(--space-lg) 0;
}

.yatra-info ul li {
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--golden-yellow);
    transition: all 0.3s ease;
}

.yatra-info ul li:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.yatra-info ul li i {
    color: var(--primary-color);
    margin-right: var(--space-sm);
    font-size: 1.1em;
}

.coming-soon-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid var(--golden-yellow);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.coming-soon-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: slideIn 2s infinite;
}

@keyframes slideIn {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.coming-soon-notice i {
    color: #e67e22;
    font-size: 1.2em;
    margin-right: var(--space-sm);
}

.contact-button-container {
    text-align: center;
    margin-top: var(--space-xl);
}

.contact-button-container .btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e74c3c 100%);
    border: none;
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-button-container .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.3s ease;
}

.contact-button-container .btn:hover::before {
    left: 100%;
}

.contact-button-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Keep existing forms-grid for backward compatibility */
.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
    justify-items: center;
}

.form-container {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    background: var(--primary-color);
    color: white;
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    border-bottom: 4px solid var(--golden-yellow);
}

.form-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
}

.form-header h3 {
    font-size: 26px;
    margin-bottom: var(--space-sm);
    color: white;
    font-weight: 700;
}

.form-header p {
    font-size: 18px;
    color: var(--bg-white);
    margin: 0;
    line-height: 1.6;
}



.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.interest-form button[type="submit"] .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
    font-size: 16px;
    font-family: 'Calibri', 'Roboto', 'Tahoma', sans-serif;
}

.required {
    color: var(--error-color);
}

.form-group {
    margin-bottom: var(--space-xl);
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--golden-yellow));
    transition: width 0.3s ease;
}

.form-group:focus-within label::after {
    width: 100%;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px var(--space-lg);
    border: 2px solid #e1e8ed;
    border-radius: var(--radius-lg);
    font-size: 16px;
    font-family: 'Calibri', 'Roboto', 'Tahoma', sans-serif;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    background: #ffffff;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--golden-yellow);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input.error,
.form-group select.error {
    border-color: var(--error-color);
    background: #fff5f5;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.form-group input.success,
.form-group select.success {
    border-color: var(--success-color);
    background: #f0fff4;
}

.form-group input.success::after,
.form-group select.success::after {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success-color);
    font-weight: bold;
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 13px;
    margin-top: var(--space-sm);
    min-height: 18px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
    padding: var(--space-lg);
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #dee2e6;
}

/* Medium screens - 2 columns */
@media (max-width: 1024px) {
    .checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Tablet screens - 2 columns */
@media (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--space-sm);
        padding: var(--space-md);
    }
}

/* Mobile screens - 1 column */
@media (max-width: 480px) {
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    min-height: 40px;
    min-width: 0;
    width: 100%;
}

.checkbox-label:hover {
    background: rgba(231, 76, 60, 0.05);
    transform: translateX(3px);
}

.checkbox-label:active {
    background: rgba(231, 76, 60, 0.1);
    transform: translateX(1px);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-medium);
    border-radius: 4px;
    appearance: none;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--golden-yellow) 100%);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.checkbox-label span {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    flex: 1;
    min-width: 0;
}

.required {
    color: var(--error-color);
    font-weight: bold;
}

.contact-button-container .btn-large {
    width: auto;
    display: inline-block;
}

.btn-large {
    background: linear-gradient(135deg, var(--primary-color) 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    width: 100%;
    margin-top: var(--space-xl);
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.btn-large:hover::before {
    left: 100%;
}

.btn-large:active {
    transform: translateY(-1px);
}

.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid var(--success-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-xl);
    text-align: center;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success i {
    color: var(--success-color);
    font-size: 1.5em;
    margin-right: var(--space-sm);
}

.volunteer-fields {
    background: linear-gradient(145deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid var(--golden-yellow);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
    animation: expandIn 0.5s ease;
}

@keyframes expandIn {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    to {
        opacity: 1;
        max-height: 1000px;
        padding-top: var(--space-xl);
        padding-bottom: var(--space-xl);
    }
}

.volunteer-fields-header h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.volunteer-fields-header h4::before {
    content: '🤝';
    font-size: 1.2em;
}

.vip-checkbox {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border: 2px solid var(--golden-yellow);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.vip-checkbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.2), transparent);
    animation: slideIn 2s infinite;
}

.vip-checkbox span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.vip-checkbox i {
    color: var(--golden-yellow);
    margin-right: var(--space-sm);
}

.checkbox-description {
    font-style: italic;
    color: #666;
    margin-top: var(--space-sm);
    font-size: 0.9rem;
}

.form-group label i {
    color: var(--primary-color);
    margin-right: var(--space-sm);
    width: 16px;
    text-align: center;
}

.checkbox-label span i {
    color: var(--golden-yellow);
    margin-right: var(--space-xs);
    font-size: 0.9em;
}

.char-count {
    font-size: 0.8rem;
    color: #666;
    text-align: right;
    margin-top: var(--space-xs);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: 1px solid transparent;
}

.checkbox-label:hover {
    background: #e9ecef;
    border-color: var(--border-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 14px;
    margin-right: var(--space-sm);
    cursor: pointer;
    margin-top: 0px;
    accent-color: var(--primary-saffron);
}

.checkbox-label span {
    font-size: 16px;
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }

    .pillar-card {
        grid-template-columns: 1fr;
    }

    .pillar-card:nth-child(even) {
        direction: ltr;
    }
}

/* Large screen adjustments */
@media (min-width: 1200px) {
    .contact-form-row {
        grid-template-columns: 220px 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-md);
    }

    .form-image-left,
    .form-image-right {
        max-width: 220px;
    }
}

@media (min-width: 1400px) {
    .contact-form-row {
        grid-template-columns: 240px 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-lg);
    }

    .form-image-left,
    .form-image-right {
        max-width: 240px;
    }
}

@media (min-width: 1600px) {
    .contact-form-row {
        grid-template-columns: 260px 1fr;
        gap: var(--space-xl);
        padding: 0 var(--space-xl);
    }

    .form-image-left,
    .form-image-right {
        max-width: 260px;
    }
}

/* Tablet breakpoint for forms */
@media (max-width: 1024px) and (min-width: 769px) {
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: 0 var(--space-xl);
    }

    .form-image-left,
    .form-image-right {
        width: 200px;
        margin: 0 auto;
    }

    .contact-form-container {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .yatra-section-header {
        margin-top: var(--space-3xl);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-2xl) 0;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px var(--space-lg);
        font-size: 16px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
        margin-bottom: var(--space-md);
    }

    .hero-description {
        font-size: 18px;
        line-height: 1.5;
    }

    /* Forms Mobile */
    .forms-section {
        padding: var(--space-2xl) 0 var(--space-3xl) 0;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
        margin-bottom: var(--space-2xl);
        padding: 0 var(--space-md);
    }

    .form-image-left,
    .form-image-right {
        width: 180px;
        margin: 0 auto;
    }

    .contact-form-container {
        width: 100%;
        margin: 0;
    }

    .form-content-wrapper {
        padding: var(--space-lg);
    }

    .yatra-section-header {
        margin-top: var(--space-2xl);
        margin-bottom: var(--space-lg);
    }

    .yatra-form-row {
        margin: 0 var(--space-sm);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .checkbox-group {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .checkbox-label {
        padding: var(--space-lg);
        margin-bottom: var(--space-sm);
        border-radius: var(--radius-md);
        font-size: 18px;
        min-height: 48px;
        align-items: center;
    }

    .checkbox-label input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-right: var(--space-md);
        flex-shrink: 0;
    }

    .checkbox-label span {
        font-size: 18px;
        line-height: 1.4;
    }

    .checkbox-label span i {
        font-size: 20px;
        margin-right: var(--space-sm);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px var(--space-md);
        font-size: 16px;
    }

    .form-group label {
        font-size: 16px;
    }

    .btn-large {
        padding: 16px var(--space-lg);
        font-size: 1rem;
    }

    .contact-button-container .btn-large {
        width: auto;
    }

    .vip-checkbox {
        padding: var(--space-md);
        margin: var(--space-md) 0;
    }

    .volunteer-fields {
        padding: var(--space-lg);
    }

    .form-header h3 {
        font-size: 1.4rem;
    }

    .form-header p {
        font-size: 16px;
    }

    /* Form inputs mobile optimization */
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
        padding: 14px var(--space-md);
        font-size: 18px;
        /* Prevents zoom on iOS */
        border-radius: var(--radius-md);
    }

    .form-group label {
        font-size: 16px;
        margin-bottom: var(--space-sm);
    }

    .btn-large {
        padding: 16px var(--space-xl);
        font-size: 18px;
        width: 100%;
    }

    .contact-button-container .btn-large {
        width: auto;
    }

    /* Checkbox styling for mobile */
    .checkbox-label {
        padding: var(--space-lg);
        margin-bottom: var(--space-sm);
        border-radius: var(--radius-md);
        font-size: 18px;
        min-height: 48px;
        align-items: center;
    }

    .checkbox-label input[type="checkbox"] {
        width: 24px;
        height: 24px;
        margin-right: var(--space-md);
        flex-shrink: 0;
    }

    .checkbox-label span {
        font-size: 18px;
        line-height: 1.4;
    }

    .checkbox-label span i {
        font-size: 20px;
        margin-right: var(--space-sm);
    }

    /* Section spacing mobile */
    .section-header {
        text-align: center;
        margin-bottom: var(--space-xl);
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: var(--space-md);
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* FAQ mobile improvements */
    .faq-question {
        padding: var(--space-lg);
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0px;
        font-size: 16px;
        line-height: 1.6;
    }

    .faq-category-title {
        font-size: 1.2rem;
    }

    /* Timeline mobile */
    .roadmap-items {
        padding: 40px 0;
    }

    .roadmap-items::before {
        left: 40px;
        transform: none;
        top: 20px;
        bottom: 20px;
    }

    .roadmap-item {
        justify-content: flex-start !important;
        padding: 0 0 0 90px !important;
        margin-bottom: 40px;
    }

    .roadmap-item.completed i {
        left: 40px;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .roadmap-content {
        padding: 25px;
        max-width: none;
        text-align: left !important;
    }

    .roadmap-content::after {
        display: none;
    }

    .roadmap-content h4 {
        font-size: 20px;
    }

    .roadmap-content p {
        font-size: 15px;
    }

    .timeline-item {
        padding-left: var(--space-xl);
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .timeline-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: 50px 0;
    }

    /* Grid layouts mobile */
    .activities-grid,
    .vision-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Card spacing mobile */
    .vision-card,
    .activity-card,
    .pillar-card {
        padding: var(--space-lg);
        margin-bottom: var(--space-md);
    }

    .vision-card h3,
    .activity-card h3,
    .pillar-card h3 {
        font-size: 1.3rem;
        margin-bottom: var(--space-md);
    }

    .vision-card p,
    .activity-card p,
    .pillar-card p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Hero mobile adjustments */
    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: var(--space-md);
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--space-md);
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: var(--space-xl);
    }

    .mission-statement {
        padding: 20px;
    }

    .mission-statement p {
        font-size: 16px;
    }

    .pillars-section .section-title {
        font-size: 1.6rem !important;
    }

    .pillar-content {
        padding: 20px;
    }

    /* Location section mobile */
    .location-details {
        gap: var(--space-lg);
    }

    .location-item {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
        background: var(--bg-light);
        border-radius: var(--radius-lg);
    }

    .location-icon {
        margin-right: 0;
        margin-bottom: var(--space-md);
        font-size: 28px;
    }

    /* Map actions mobile */
    .map-actions {
        flex-direction: row;
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .map-actions .btn {
        flex: 1;
        font-size: 16px;
        padding: 10px 12px;
        min-width: 140px;
        justify-content: center;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: var(--space-md);
    }

    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--space-md);
    }

    .footer-section ul li {
        margin: 0;
    }

    /* Facility stats mobile */
    .residential-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .stat-card {
        padding: var(--space-lg);
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile keyboard handling */
.keyboard-open {
    height: 100vh;
    overflow: hidden;
}

.keyboard-open .forms-section {
    padding-bottom: 0;
}

.keyboard-open .form-container {
    max-height: 70vh;
    overflow-y: auto;
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {

    .btn:hover,
    .nav-link:hover,
    .faq-question:hover,
    .gallery-item:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }

    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .gallery-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    /* Larger touch targets */
    .mobile-menu-toggle {
        padding: var(--space-md);
        min-width: 44px;
        min-height: 44px;
    }

    .indicator {
        width: 14px;
        height: 14px;
        border-width: 1px;
    }

    .indicator::before {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }

    .faq-question {
        min-height: 60px;
        display: flex;
        align-items: center;
    }

    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }
}

/* Accessibility improvements for mobile */
@media (max-width: 768px) {
    .skip-link:focus {
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        padding: var(--space-md);
        font-size: 18px;
    }

    /* Focus indicators for mobile */
    .btn:focus,
    .nav-link:focus,
    input:focus,
    select:focus,
    textarea:focus {
        outline: 3px solid var(--primary-blue);
        outline-offset: 2px;
    }

    /* Ensure text is readable on mobile */
    .hero-description,
    .section-description,
    .vision-card p,
    .activity-card p,
    .faq-answer p {
        font-size: 16px;
        line-height: 1.6;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .hero-buttons,
    .mobile-menu-toggle {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }

}

/* Icon Styles for Font Awesome replacements */
.announcement-icon {
    font-size: 27px;
    color: white;
    margin-right: var(--space-md);
}

.location-icon {
    font-size: 32px;
    flex-shrink: 0;
    color: var(--primary-saffron);
    margin-right: var(--space-lg);
}

.activity-icon {
    font-size: 48px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
}

.activity-icon i {
    display: block;
}

.sustainability-features li i {
    margin-right: var(--space-sm);
    color: var(--primary-blue);
    width: 20px;
}

/* Form success icons */
.form-success i {
    margin-right: var(--space-sm);
    color: var(--success-color);
}

/* Yatra detail icons */
.yatra-info li i {
    margin-right: var(--space-sm);
    color: var(--primary-saffron);
    width: 20px;
}

/* Button icons */
.btn i {
    margin-right: var(--space-sm);
}

/* Contact Button Container */
.contact-button-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.contact-button-container .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* L
ocation Section */
.location-section {
    background: var(--bg-light);
    padding: var(--space-3xl) 0;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.location-content .section-tag {
    display: inline-block;
    color: var(--primary-saffron);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-md);
    border-bottom: 2px solid var(--golden-yellow);
    padding-bottom: var(--space-sm);
}

.location-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: var(--space-xl);
    color: var(--primary-saffron);
    font-weight: 700;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.location-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--golden-yellow);
    transition: var(--transition);
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-saffron);
}

.location-icon {
    font-size: 32px;
    flex-shrink: 0;
    color: var(--primary-saffron);
}

.location-item div h4 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
    color: var(--primary-saffron);
    font-weight: 600;
}

.location-item div p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 18px;
}

.location-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.location-map:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.map-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: var(--transition);
}

.map-actions {
    background: var(--bg-white);
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: nowrap;
    border-top: 1px solid var(--border-light);
}

.map-actions .btn {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    min-width: 160px;
    flex: 1;
    max-width: 250px;
    justify-content: center;
    white-space: nowrap;
}

.map-actions .btn span {
    font-size: 18px;
}

/* Responsive Location Section */
@media (max-width: 968px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .location-content {
        text-align: center;
    }

    .location-details {
        gap: var(--space-lg);
    }

    .location-item {
        flex-direction: row;
        text-align: left;
        gap: var(--space-md);
    }

    .map-actions {
        flex-direction: row;
        align-items: center;
        gap: var(--space-sm);
    }

    .section-tag {
        font-size: 16px;
    }

    .map-actions .btn {
        flex: 1;
        max-width: 180px;
        font-size: 15px;
        padding: 8px 10px;
    }
}

@media (max-width: 640px) {
    .location-section {
        padding: var(--space-2xl) 0;
    }

    .location-item {
        padding: var(--space-md);
    }

    .location-icon {
        font-size: 28px;
    }

    .map-container {
        height: 300px;
    }

    .map-actions {
        padding: var(--space-sm);
        gap: var(--space-xs);
    }

    .map-actions .btn {
        font-size: 14px;
        padding: 8px 6px;
        min-width: 120px;
    }

    .map-actions .btn i {
        font-size: 14px;
    }
}

/* F
acilities Section */
.facilities-section {
    background: var(--bg-white);
}

.facilities-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.facility-main h3 {
    font-size: 32px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
    font-weight: 700;
}

.facility-highlight {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: var(--space-2xl);
}

.facility-wings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.wing-card {
    background: var(--pastel-blue);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.wing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.wing-card h4 {
    font-size: 22px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
    font-weight: 600;
}

.wing-card ul {
    list-style: none;
    padding: 0;
}

.wing-card li {
    padding: var(--space-sm) 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 18px;
}

.wing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.facility-gallery {
    margin: var(--space-2xl) 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.facility-residential {
    background: var(--cream-yellow);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.facility-residential h3 {
    font-size: 32px;
    margin-bottom: var(--space-xl);
    color: var(--primary-saffron);
    text-align: center;
    font-weight: 700;
}

.residential-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.stat-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--golden-yellow);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.facility-residential p {
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Sustainability Section */
.sustainability-section {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    color: #ffffff;
    border-top: 4px solid var(--golden-yellow);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.sustainability-text .section-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    border: 1px solid rgba(255, 255, 255, 1);
    font-weight: 700;
}

.sustainability-text h2 {
    font-size: 41px;
    margin-bottom: var(--space-lg);
    color: var(--light-saffron);
    font-weight: 700;
}

.sustainability-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
    opacity: 1;
    color: var(--text-primary);
    /* Fixed for better contrast on dark background */
}

.sustainability-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.sustainability-features li {
    font-size: 18px;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    color: #1e3a8a;
    font-weight: 600;
}

.sustainability-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline Section */
.timeline-section {
    background: var(--bg-white);
}

/* Project Roadmap Styles */
.project-roadmap {
    margin-bottom: 80px;
}

.roadmap-items {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 60px 0;
}

/* Timeline line */
.roadmap-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 40px;
    bottom: 40px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.3);
}

.roadmap-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    width: 100%;
}

.roadmap-item:last-child {
    margin-bottom: 0;
}

.roadmap-item:nth-child(odd) {
    justify-content: flex-end;
    padding-right: 80px;
}

.roadmap-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 80px;
}

.roadmap-item.completed i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    background: var(--primary-blue);
    border: 4px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
    transition: all 0.3s ease;
}

.roadmap-item.completed:hover i {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.roadmap-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 420px;
    width: 100%;
    border: 1px solid var(--border-light);
    position: relative;
}

/* Arrow pointing to timeline */
.roadmap-item:nth-child(odd) .roadmap-content::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.roadmap-item:nth-child(even) .roadmap-content::after {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid white;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    text-align: right;
}

.roadmap-item:nth-child(even) .roadmap-content {
    text-align: left;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.roadmap-content h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.roadmap-content p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-medium);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 40px;
}

.timeline-marker {
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 4px var(--primary-blue);
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -8px;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-blue);
}

.timeline-item.upcoming .timeline-marker {
    background: var(--border-medium);
    box-shadow: 0 0 0 4px var(--border-medium);
}

.timeline-content {
    background: var(--pastel-blue);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.timeline-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-saffron);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--cream-orange);
    padding: var(--space-xs) var(--space-sm);
    border-radius: 12px;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
    color: var(--primary-saffron);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-dark);
    /* Updated for better readability */
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.construction-phases {
    background: var(--cream-yellow);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.construction-phases h3 {
    font-size: 32px;
    text-align: center;
    margin-bottom: var(--space-2xl);
    color: var(--primary-saffron);
    font-weight: 700;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.phase-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--golden-yellow);
    transition: var(--transition);
}

.phase-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.phase-card h4 {
    font-size: 18px;
    color: var(--primary-saffron);
    margin-bottom: var(--space-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phase-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--space-md);
}

.phase-cost {
    font-size: 24px;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: var(--space-md);
}

.phase-card p:last-child {
    color: var(--text-dark);
    /* Updated for better readability */
    line-height: 1.6;
    font-size: 18px;
    margin: 0;
}

.total-cost {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-top: var(--space-xl);
}

.total-cost p {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
}

.total-cost strong {
    color: var(--primary-blue);
    font-size: 24px;
}

/* Gallery Section */
.gallery-section {
    background: var(--bg-white);
    padding: var(--space-3xl) 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--golden-yellow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* 3x3 Gallery Grid */
.gallery-grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
}

/* Facilities Gallery Grid - 2 rows of 4 images */
.gallery-grid-facilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.gallery-grid-facilities img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-sm);
}

.gallery-grid-facilities img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Residential Contact Button */
.residential-contact {
    margin: var(--space-lg) 0;
    text-align: center;
}

.gallery-grid-3x3 .gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.gallery-grid-3x3 .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-grid-3x3 .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--golden-yellow);
}

.gallery-grid-3x3 .gallery-item:hover img {
    transform: scale(1.08);
}

/* Special styling for center Paduka image */
.gallery-center {
    position: relative;
    border: 3px solid var(--golden-yellow) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3) !important;
}

.gallery-center::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-saffron), var(--golden-yellow), var(--primary-blue));
    border-radius: var(--radius-lg);
    z-index: -1;
    animation: paduka-glow 3s ease-in-out infinite alternate;
}

@keyframes paduka-glow {
    0% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
    }

    100% {
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.7);
    }
}

.paduka-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--golden-yellow);
    text-align: center;
    padding: var(--space-md);
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid-3x3 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .gallery-grid-3x3 .gallery-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .gallery-grid-facilities {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .gallery-grid-3x3 {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .gallery-grid-3x3 .gallery-item:nth-child(5) {
        grid-column: 1;
        max-width: 280px;
    }

    .gallery-grid-facilities {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    /* Very small mobile optimizations */
    .container {
        padding: 0 var(--space-sm);
    }

    .section {
        padding: 40px 0;
    }

    .hero {
        padding: 100px 0 30px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.4;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 16px;
    }

    .wing-card li {
        font-size: 16px;
    }

    /* Form optimizations for very small screens */
    .form-container {
        margin: 0;
        border-radius: var(--radius-lg);
    }

    .form-header {
        padding: var(--space-md);
        margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-md) calc(-1 * var(--space-md));
    }

    .form-header h3 {
        font-size: 1.2rem;
    }

    .form-header p {
        font-size: 16px;
    }

    .form-group {
        margin-bottom: var(--space-md);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px var(--space-sm);
        font-size: 18px;
    }

    .checkbox-label {
        padding: var(--space-md);
        font-size: 17px;
        min-height: 44px;
    }

    .checkbox-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    .checkbox-label span i {
        font-size: 18px;
    }

    .btn-large {
        padding: 14px var(--space-lg);
        font-size: 15px;
    }

    .contact-button-container .btn-large {
        width: auto;
    }

    /* FAQ mobile very small */
    .faq-question {
        padding: var(--space-md);
        font-size: 16px;
    }

    .faq-answer {
        padding: 0px;
        font-size: 16px;
    }

    .faq-category-title {
        font-size: 1.1rem;
    }

    /* Cards very small mobile */
    .vision-card,
    .activity-card,
    .pillar-card {
        padding: var(--space-md);
    }

    .vision-card h3,
    .activity-card h3 {
        font-size: 1.2rem;
    }

    .activity-icon {
        font-size: 40px;
    }

    /* Location items very small */
    .location-item {
        padding: var(--space-md);
    }

    .location-icon {
        font-size: 24px;
    }

    /* Timeline very small */
    .roadmap-items::before {
        left: 30px;
    }

    .roadmap-item {
        padding-left: 70px !important;
    }

    .roadmap-item.completed i {
        left: 30px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .roadmap-content {
        padding: 20px;
    }

    .roadmap-content h4 {
        font-size: 18px;
    }

    .roadmap-content p {
        font-size: 14px;
    }

    .timeline-item {
        padding-left: var(--space-lg);
    }

    .timeline-marker {
        width: 12px;
        height: 12px;
        left: 6px;
    }

    .timeline-content {
        margin-left: var(--space-lg);
    }

    /* Navigation very small */
    .navbar {
        padding: var(--space-xs) 0;
    }

    .logo h2 {
        font-size: 1.3rem;
    }

    .nav-menu {
        padding: var(--space-lg) 0;
    }

    .nav-link {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
}

/* CTA Section */
.cta-section {
    background: var(--pastel-yellow);
    color: white;
    text-align: center;
    border-top: 4px solid var(--golden-yellow);
    border-bottom: 4px solid var(--golden-yellow);
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: var(--space-xl);
    color: var(--primary-saffron);
    /* Fixed for better contrast on saffron background */
    font-weight: 700;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
    opacity: 0.95;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.involvement-card {
    background: var(--bg-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition);
    border-top: 4px solid var(--golden-yellow);
}

.involvement-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    border-color: var(--golden-yellow);
}

.involvement-card h3 {
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
    /* Fixed spacing and kept saffron for white card backgrounds */
    font-weight: 700;
}

.involvement-card p {
    font-size: 18px;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.cta-footer {
    font-size: 18px;
    font-style: italic;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 60px 0 30px;
    border-top: 4px solid var(--golden-yellow);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: var(--space-md);
    color: white;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: var(--space-md);
    color: var(--golden-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    font-size: 18px;
}

.footer-address {
    margin-top: var(--space-md);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-sm);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 18px;
}

.footer-section ul li a:hover {
    color: var(--golden-yellow);
    padding-left: var(--space-sm);
}

.footer-org {
    font-size: 14px;
    margin-top: var(--space-md);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-sm);
    font-size: 18px;
}

.footer-signature {
    font-style: italic;
    color: var(--golden-yellow);
    font-size: 18px;
}

.footer-copyright {
    font-size: 14px;
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.7);
}

/* Additional Form Styles */
.checkbox-single {
    margin-top: var(--space-md);
}

.checkbox-single .checkbox-label {
    padding: var(--space-md);
    background: var(--cream-orange);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
}

.checkbox-single .checkbox-label:hover {
    border-color: var(--primary-saffron);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--text-light);
    margin-top: var(--space-xs);
}

.yatra-info {
    background: var(--pastel-blue);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
    border-left: 5px solid var(--primary-blue);
    border-top: 1px solid var(--border-light);
}

.yatra-info h4 {
    font-size: 22px;
    margin-bottom: var(--space-md);
    color: var(--primary-saffron);
    font-weight: 700;
}

.yatra-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
    font-size: 18px;
}

.yatra-info ul {
    list-style: none;
    padding: 0;
}

.yatra-info ul li {
    color: var(--text-primary);
    font-size: 18px;
}

.interest-form button[type="submit"] {
    margin-top: var(--space-md);
    cursor: pointer;
    border: none;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: var(--space-md) var(--space-xl);
    font-size: 16px;
    font-weight: 600;
}

.text-center {
    width: 100%;
    text-align: center;
}

.interest-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.interest-form button[type="submit"]:not(:disabled):hover {
    transform: translateY(-2px);
}

.form-success {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: #d4edda;
    border: 2px solid var(--success-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.form-success p {
    color: #155724;
    font-weight: 600;
    margin: 0;
    font-size: 18px;
}

/* Form Loading State */
.interest-form.loading button[type="submit"] {
    pointer-events: none;
}

.interest-form.loading button[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Indicator - Removed Animation */
.scroll-indicator {
    display: none;
}

/* Animations - Removed for smoother experience */

/* Additional Responsive Styles */
@media (max-width: 968px) {

    .sustainability-content,
    .timeline::before {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }

    .timeline-marker {
        left: 22px !important;
    }

    .sustainability-features {
        grid-template-columns: 1fr;
    }

    .residential-stats {
        grid-template-columns: 1fr;
    }

    .involvement-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Fo
rm Loading States and Enhanced Styling */
.interest-form.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.interest-form.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    border-radius: var(--radius-lg);
}

.interest-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Enhanced Form Styling */
.form-group {
    margin-bottom: 0px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-dark);
    font-size: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 18px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.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);
}

/* Success and Error States */
.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success-color);
    background-color: rgba(39, 174, 96, 0.05);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error-color);
    background-color: rgba(231, 76, 60, 0.05);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.error-message {
    display: block;
    color: var(--error-color);
    font-size: 14px;
    margin-top: var(--space-xs);
    min-height: 20px;
    font-weight: 500;
}

/* Checkbox Styling */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label:hover {
    background-color: var(--bg-light);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: var(--space-sm);
    accent-color: var(--primary-color);
}

.checkbox-single .checkbox-label {
    justify-content: flex-start;
    padding: 10px !important;
}

/* Character Counter */
.char-count {
    font-size: 12px;
    color: var(--text-light);
    text-align: right;
    margin-top: var(--space-xs);
}

/* Form Success Messages */
.form-success {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1), rgba(39, 174, 96, 0.05));
    border: 2px solid var(--success-color);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    margin-top: var(--space-lg);
}

.form-success p {
    color: var(--success-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.form-success i {
    font-size: 24px;
    margin-right: var(--space-sm);
    vertical-align: middle;
}

/* Form Error Messages */
.form-error-message {
    margin: var(--space-md) 0;
}

.form-error-message>div {
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Required Field Indicator */
.required {
    color: var(--error-color);
    font-weight: bold;
}

/* Form Row Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}




/* Yatra Info Section */
.yatra-info {
    background: linear-gradient(135deg, var(--pastel-blue), var(--cream-yellow));
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    border-left: 4px solid var(--primary-blue);
}

.yatra-info h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-sm);
    font-size: 18px;
}

.yatra-info p {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.yatra-info ul {
    list-style: none;
    padding: 0;
}

.yatra-info li {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.yatra-info li i {
    color: var(--primary-blue);
    margin-right: var(--space-sm);
    width: 20px;
}

/* Coming Soon Notice */
.coming-soon-notice {
    background: linear-gradient(135deg, var(--cream-yellow), var(--pastel-orange));
    border: 2px solid var(--primary-saffron);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-lg) 0;
    text-align: center;
}

.coming-soon-notice p {
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.coming-soon-notice p:first-child {
    font-weight: 600;
    color: var(--primary-saffron);
    font-size: 1.1em;
}

.coming-soon-notice i {
    color: var(--primary-saffron);
    margin-right: var(--space-xs);
}

/* Volunteer Fields Section */
.volunteer-fields {
    border-top: 2px solid var(--border-light);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    transition: all 0.3s ease;
}

.volunteer-fields-header {
    margin-bottom: var(--space-lg);
}

.volunteer-fields-header h4 {
    color: var(--primary-blue);
    margin-bottom: var(--space-xs);
    font-size: 1.2em;
}

.volunteer-fields-header p {
    color: var(--text-secondary);
    font-size: 0.9em;
}

.checkbox-description {
    font-size: 0.85em;
    color: var(--text-light);
    margin-top: var(--space-xs);
    margin-bottom: 0;
    font-style: italic;
}

/* Accessibility Improvements */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.checkbox-label:focus-within {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Print Styles */
@media print {
    .form-container {
        box-shadow: none;
        border: 1px solid #000;
    }

    .btn {
        display: none;
    }

    .form-success,
    .form-error-message {
        border: 1px solid #000;
    }
}

.seperator-form {
    border-top: 4px solid var(--golden-yellow);
}

@media only screen and (max-width:900px) {
    .facility-gallery {
        margin-top: 0px;
    }

    .facility-residential,
    .construction-phases {
        padding: 30px;
    }

    .sustainability-text p {
        font-size: 16px;
    }

    .contact-form-row {
        display: block;
    }

    .form-image-left,
    .form-image-right {
        width: 100%;
        margin-left: 0px;
        max-width: 100%;
    }

    .interest-form {
        padding-top: 20px;
    }

    .form-group label {
        text-align: left;
        font-size: 16px;
    }

    .faq-cta {
        padding: 30px;
    }

    .checkbox-group {
        grid-template-columns: auto;
        padding: 10px;
    }

}

.checkbox-label {
    display: flex !important;
}

/* Events Two-Column Layout */
.events-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.event-col {
    display: flex;
    flex-direction: column;
}

.event-col .section-header {
    margin-bottom: var(--space-md);
}

.event-col .form-container {
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-col .form-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
}

.event-col .yatra-announcement {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 20px;
}

.event-col .yatra-cta {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .events-two-col {
        grid-template-columns: 1fr;
    }
}

/* Yatra Announcement Section */
.yatra-announcement {
    padding: 45px 35px;
    text-align: center;
}

.yatra-announcement .yatra-greeting {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-family: 'Lora', serif;
}

.yatra-announcement>p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 30px;
}

.yatra-announcement .yatra-info {
    text-align: left;
    max-width: 650px;
    margin: 0 auto 35px;
}

.yatra-cta {
    margin-top: 30px;
}

.yatra-cta .btn {
    font-size: 17px;
    padding: 18px 50px;
    margin-top: 0px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .checkbox-group {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .event-col .form-content-wrapper {
        padding: 18px !important;
    }

    .yatra-announcement .yatra-info {
        margin: 0 auto;
    }

    .yatra-info {
        padding: 18px;
    }

    .yatra-cta .btn {
        font-size: 13px;
        padding: 12px;
        margin-top: 0px;
    }

    .announcement-col-header {
        justify-content: left;
        text-align: left;
    }

}