/* International Summer Camp - Modern Redesign */

:root {
    --camp-primary: #ff6b35;
    /* Vibrant Orange */
    --camp-secondary: #004e89;
    /* Deep Blue */
    --camp-accent: #f7c59f;
    /* Soft Peach */
    --camp-bg: #efefd0;
    /* Off-white/Cream */
    --camp-text: #2b2d42;
    /* Dark Gray */
    --camp-white: #ffffff;
    --camp-success: #2a9d8f;
    --camp-gradient: linear-gradient(135deg, #ff9f1c 0%, #ffbf69 100%);
    --premium-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --premium-hover-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.12);
}

.international-camp-wrapper {
    font-family: 'Raleway', sans-serif;
    color: var(--camp-text);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Typography Enhancements */
.international-camp-wrapper h1,
.international-camp-wrapper h2,
.international-camp-wrapper h3 {
    font-family: 'Hind Guntur', sans-serif;
    font-weight: 700;
    color: var(--camp-secondary);
}

.international-camp-wrapper p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--camp-primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Hero Section */
/* Hero Section */
.camp-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: #333;
    /* Fallback color */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.camp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for readability */
    z-index: 1;
}

.camp-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.camp-hero h1 {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
    margin-bottom: 15px;
}

.camp-breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
}

.camp-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.camp-breadcrumb .active {
    color: var(--camp-accent);
}

/* Introduction Section */
.intro-section {
    padding: 80px 0;
    background: #fff;
}

.intro-text-box {
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--camp-primary);
}

/* Info Cards (Venue, Fee) */
.info-card {
    background: #fff;
    border-radius: 24px;
    /* More rounded */
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Springy feel */
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-hover-shadow);
    border-color: rgba(255, 107, 53, 0.1);
}

.info-card-header {
    background: var(--camp-secondary);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.info-card-header h2 {
    color: #fff;
    margin: 0;
    font-size: 1.5rem;
}

.info-card-body {
    padding: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #444;
}

.feature-list li i {
    color: var(--camp-primary);
    margin-right: 15px;
    margin-top: 5px;
}

.btn-camp-primary {
    background: var(--camp-primary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-camp-primary:hover {
    background: #e55b2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.6);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: #f4f7f6;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Ancient Wisdom Section */
.ancient-wisdom-section {
    padding: 80px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../../assets/images/pattern-bg.png');
    /* Fallback pattern if exists, else gradient */
    position: relative;
    overflow: hidden;
}

.wisdom-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.wisdom-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.facility-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.facility-card:hover {
    box-shadow: var(--premium-hover-shadow);
    transform: translateY(-8px);
    border-color: var(--camp-primary);
}

.facility-icon {
    font-size: 2rem;
    color: var(--camp-secondary);
    margin-bottom: 15px;
}

.facility-title {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--camp-text);
}

/* Media Queries */
@media (max-width: 768px) {
    .camp-hero h1 {
        font-size: 2.2rem;
    }

    .info-card {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* --- New Additions for Phase 2 --- */

/* Activities Section */
.activities-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.activity-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--premium-shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: none;
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-hover-shadow);
}

.activity-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-img {
    transform: scale(1.05);
}

.activity-overlay {
    position: relative;
    width: 100%;
    height: auto;
    background: #fff;
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid #f9f9f9;
}

.activity-card:hover .activity-overlay {
    background: #fff;
}

.activity-title {
    color: var(--camp-secondary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    transform: none;
    transition: color 0.3s ease;
}

.activity-card:hover .activity-title {
    color: var(--camp-primary);
    transform: none;
}

.activity-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 1;
    transform: none;
    max-height: none;
    margin-top: 0;
    overflow: visible;
}

.activity-card:hover .activity-desc {
    opacity: 1;
    transform: none;
    max-height: none;
    margin-top: 0;
}

/* Interactive Discussions & Games */
.discussion-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
}

/* Game Card rule removed - superseded by Redesigned section below */

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--premium-hover-shadow);
    background: linear-gradient(to right, #fff, #fefefe);
}

.discussion-topics-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.topic-chip {
    display: inline-block;
    background: #eef2f5;
    color: var(--camp-text);
    padding: 10px 20px;
    border-radius: 50px;
    margin: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.topic-chip:hover {
    background: var(--camp-secondary);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 78, 137, 0.3);
}

.topic-chip i {
    margin-right: 8px;
    color: var(--camp-primary);
}

.topic-chip:hover i {
    color: #fff;
}

/* Section Separator */
.wave-separator {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-separator .shape-fill {
    fill: #f8f9fa;
}

/* Game/Itinerary Card - Redesigned */
.game-card {
    background: var(--camp-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-right: 5px solid var(--card-border, var(--camp-primary));
    overflow: hidden;
    /* Ensure image doesn't bleed out */
    height: 100%;
}

@media (max-width: 576px) {
    .game-card {
        border-right: none;
        border-bottom: 5px solid var(--card-border, var(--camp-primary));
    }

    .game-card img {
        height: 200px !important;
    }
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.game-card .row {
    height: 100%;
}

.game-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Remove rounded corners on the image side to fit flush */
}

/* Ensure text doesn't overflow */
.game-card .p-3 {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* FAQ Container for 60% width on desktop */
.faq-container {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .faq-container {
        max-width: 70%;
    }
}

/* Utility for hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Facility Card Styles */
.facility-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--camp-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background-color: var(--camp-primary);
    color: #fff;
    transform: scale(1.1);
}

/* Modern Animations & Layout for Ancient Wisdom Section */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.floating-top-right {
    top: -2rem;
    right: -2rem;
    width: 6rem;
    height: 6rem;
    background: var(--camp-secondary);
    animation: float 4s ease-in-out infinite;
}

.floating-bottom-left {
    bottom: -3rem;
    left: -3rem;
    width: 8rem;
    height: 8rem;
    background: var(--camp-primary);
    animation: float-reverse 5s ease-in-out infinite;
}

.about-image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.stats-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

.text-justify {
    text-align: justify;
}

/* Accommodation List Styles (Reference: summer-camp-2025.css) */
.accommodation-feature-card {
    display: flex;
    flex-direction: row;
    /* Force side-by-side */
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.accommodation-feature-card:hover {
    transform: translateX(5px);
}

.accommodation-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--camp-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.accommodation-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--camp-secondary);
    margin-bottom: 0.25rem;
}

/* Footer Modern Redesign */
.footer-modern-wrapper {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #f3f4f6;
    padding-top: 4rem;
    padding-bottom: 2rem;
    font-family: 'Raleway', sans-serif;
}

.footer-modern-wrapper h3 {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-modern-wrapper h4 {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-modern-wrapper p {
    color: #9ca3af;
    /* text-gray-400 */
    line-height: 1.625;
}

.footer-link-item {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link-item:hover {
    color: #ffffff;
    text-decoration: underline;
}

.social-icon-box {
    width: 2.5rem;
    /* w-10 */
    height: 2.5rem;
    /* h-10 */
    background-color: #1f2937;
    /* bg-gray-800 */
    border-radius: 0.75rem;
    /* rounded-xl */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-icon-box:hover {
    background-color: var(--camp-primary);
    transform: scale(1.1);
    color: white;
}

.contact-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1f2937;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #9ca3af;
}

.contact-item-group:hover .contact-icon-box {
    background-color: var(--camp-primary);
    color: white;
}

.contact-item-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}

.contact-label {
    font-size: 0.75rem;
    /* text-xs */
    color: #6b7280;
    /* text-gray-500 */
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact-value {
    font-weight: 500;
    color: #f3f4f6;
}

.cert-icon-box {
    width: 2rem;
    /* w-8 */
    height: 2rem;
    /* h-8 */
    background-color: #eab308;
    /* yellow-500/saffron */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111827;
}

.rating-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.75rem;
    text-align: center;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    /* amber-400 */
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* =========================================
   Items to Carry Section
   ========================================= */
.items-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-top: 4px solid var(--camp-primary);
    /* Default color */
}

.items-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.items-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--camp-primary);
    font-size: 1.5rem;
}

.items-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.items-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-size: 0.95rem;
}

.items-list li i {
    color: var(--saffron);
    margin-top: 0.25rem;
}

/* =========================================
   Daily Routine (Timeline)
   ========================================= */
.routine-section {
    background: #f9fafb;
    padding: 4rem 0;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--camp-primary);
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px #e5e7eb;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-time {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

/* Mobile Timeline Adjustment */
@media (max-width: 768px) {
    .timeline-wrapper::before {
        left: 1rem;
    }

    .timeline-dot {
        left: 1rem;
    }

    .timeline-content {
        width: calc(100% - 3rem);
        margin-left: 3rem !important;
    }
}

/* =========================================
   Rules Section
   ========================================= */
.rules-section {
    padding: 4rem 0;
    background: #fff;
}

.rules-card {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
}

.rules-header {
    background: #f3f4f6;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    font-weight: 700;
    color: #1f2937;
}

.rules-body {
    padding: 1.5rem;
}

/* =========================================
   Venue & Pricing Section
   ========================================= */
.venue-pricing-section {
    padding: 5rem 0;
    background: #111827;
    /* Dark background for contrast */
    color: white;
}

.venue-card {
    background: #1f2937;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    border: 1px solid #374151;
}

.venue-title {
    color: var(--saffron);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.venue-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
}

.venue-list li i {
    color: var(--camp-primary);
    margin-top: 0.3rem;
}

.pricing-card {
    background: linear-gradient(135deg, var(--camp-primary) 0%, #d97706 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15rem;
    height: 15rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
}

.price-sub {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pricing {
    background: white;
    color: var(--camp-primary);
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-pricing:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    color: var(--camp-primary);
}

/* =========================================
   Safety Section
   ========================================= */
.safety-section {
    padding: 4rem 0;
    background: white;
}

.safety-badge {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: #f9fafb;
    transition: all 0.3s ease;
    height: 100%;
}

.safety-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.safety-icon {
    font-size: 2.5rem;
    color: var(--camp-primary);
    margin-bottom: 1rem;
}

.safety-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-size: 1.25rem;
}

.safety-desc {
    color: #6b7280;
    font-size: 0.95rem;
}

/* =========================================
   Premium Accordion
   ========================================= */
.premium-accordion .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.premium-accordion .accordion-button {
    background-color: #fff;
    color: #1f2937;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    transition: all 0.2s ease;
}

.premium-accordion .accordion-button:not(.collapsed) {
    background-color: #f3f4f6;
    color: var(--camp-primary);
    box-shadow: none;
}

.premium-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.premium-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.2s ease;
}

.premium-accordion .accordion-body {
    padding: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.premium-accordion .accordion-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.premium-accordion .accordion-body li {
    margin-bottom: 0.5rem;
}

.premium-accordion .section-icon {
    width: 2rem;
    text-align: center;
    color: var(--camp-primary);
    margin-right: 0.75rem;
}

/* =========================================
   Section Backgrounds for Visual Separation
   ========================================= */
.section-light {
    background-color: #f9fafb;
    /* Cool Gray 50 */
    position: relative;
    padding: 5rem 0;
}

.section-white {
    background-color: #ffffff;
    position: relative;
    padding: 5rem 0;
}

/* Ensure override ifbg-white is used */
.bg-white {
    background-color: #ffffff !important;
}

/* =========================================
   Premium Schedule Cards (Day Camp)
   ========================================= */
.schedule-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    /* Soft, deep shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: none;
}

.schedule-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
}

.schedule-header {
    padding: 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background Gradients for Headers */
.schedule-morning .schedule-header {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Amber */
.schedule-midday .schedule-header {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

/* Sky Blue */
.schedule-evening .schedule-header {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Emerald */
.schedule-premium .schedule-header {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Violet */

.schedule-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.schedule-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

.schedule-time {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    backdrop-filter: blur(4px);
}

.schedule-body {
    padding: 1.5rem;
}

.schedule-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #4b5563;
    font-size: 1rem;
}

.schedule-list li i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Icon Colors matching headers */
.schedule-morning .schedule-list li i {
    color: #d97706;
}

.schedule-midday .schedule-list li i {
    color: #0284c7;
}

.schedule-evening .schedule-list li i {
    color: #059669;
}

.schedule-premium .schedule-list li i {
    color: #7c3aed;
}


/* =========================================
   Premium Safety Feature Box
   ========================================= */
.feature-box {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--camp-primary);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    /* Primary light */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-box {
    background: var(--camp-primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-box:hover .feature-icon-box i {
    color: #fff;
}

.feature-icon-box i {
    font-size: 2rem;
    color: var(--camp-primary);
    transition: color 0.3s ease;
}

.feature-title {
    font-weight: 700;
    color: var(--camp-secondary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

/* =========================================
   Vedic Topics Section (Glassmorphism)
   ========================================= */
.vedic-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    text-align: left;
}

.vedic-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.vedic-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.vedic-card:hover .vedic-icon {
    background: #ffc107;
    transform: rotate(15deg);
}

.vedic-icon i {
    font-size: 1.25rem;
    color: #ffc107;
    transition: color 0.3s ease;
}

.vedic-card:hover .vedic-icon i {
    color: #000;
}

.vedic-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}