/* Custom CSS for Doğa Kampı Website */
:root {
    --primary-color: #F15A24;     /* Turuncu */
    --secondary-color: #4E3B39;   /* Koyu Kahve */
    --accent-color: #2E5532;      /* Doğa Yeşili */
    --light-bg: #FDFBF9;          /* Açık Zemin Rengi */
    --white: #ffffff;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #f8f9fa;
}

/* Photo Gallery Section */
.gallery-section {
    padding: 60px 0;
}

/* 5-column grid for large screens */
@media (min-width: 992px) {
    .col-lg-5c {
        flex: 0 0 auto;
        width: 20%;
        padding: 0 10px;
    }
    
    .gallery-section .row {
        margin-right: -10px;
        margin-left: -10px;
    }
}

.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    aspect-ratio: 1;
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

/* Enhanced Lightbox Styles */
#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .modal-header {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1060;
}

#imageModal .modal-body {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-img {
    max-height: 80vh;
    max-width: 90vw;
    width: auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-nav {
    background-color: rgba(0, 0, 0, 0.7) !important;
    border: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-nav:hover {
    opacity: 1;
    transform: scale(1.1);
}

#imageCounter {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Make modal backdrop darker for better contrast */
.modal-backdrop.show {
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 100px 0 50px;
    background-color: #f8f9fa;
    margin-bottom: 50px;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    padding-top: 76px; /* Height of fixed navbar */
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

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

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

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

.btn-primary:hover, .btn-primary:focus {
    background-color: #e04e1a;
    border-color: #e04e1a;
    box-shadow: 0 5px 15px rgba(241, 90, 36, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
    background-color: var(--white) !important;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: var(--dark);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Slider */
#heroSlider {
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item,
#heroSlider .slider-image-container {
    height: 100%;
    width: 100%;
}

#heroSlider .slider-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Slider Content Styling */
#heroSlider .carousel-caption {
    bottom: 25%;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0 1rem;
}

#heroSlider .carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#heroSlider .carousel-caption p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #heroSlider .carousel-caption h1 {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    #heroSlider .carousel-caption p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    #heroSlider,
    #heroSlider .carousel-inner,
    #heroSlider .carousel-item {
        height: 80vh !important;
        min-height: 400px;
    }
    
    #heroSlider .carousel-caption {
        bottom: 20%;
    }
    
    #heroSlider .carousel-caption h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    #heroSlider .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    #heroSlider .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Hide background image in Doğa Kampı Nedir section on mobile */
    section[aria-labelledby="kamp-nedir-baslik"] {
        background: #fff !important;
        padding: 3rem 0 !important;
    }
    
    /* Reduce spacing between paragraphs in the content */
    #kamp-nedir-baslik + .lead {
        margin-bottom: 1.5rem !important;
    }
    
    /* Adjust content container */
    .col-lg-9.col-xl-8.px-3.px-md-4.p-4 {
        padding: 1.5rem !important;
        background-color: #fff !important;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    /* FAQ Section with Background Image - Mobile styles will go here */
}

/* Reusable Right-Aligned Background Section */
.section-with-bg {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('../img/back.jpg') no-repeat right center/cover;
    opacity: 0.3;
    z-index: 0;
}

.section-with-bg .container {
    position: relative;
    z-index: 1;
}

.section-with-bg .card {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border: none;
}

/* FAQ Section Specific Styles */
section[aria-labelledby="sss-baslik"] {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    padding: 4rem 0;
}

section[aria-labelledby="sss-baslik"] .container {
    position: relative;
    z-index: 1;
}

section[aria-labelledby="sss-baslik"] .card {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slayt2.jpg') no-repeat center center/cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-bottom: 4rem;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Section Styling */
section {
    padding: 1rem 0;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.title-underline {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 0.5rem auto 0;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 0;
}

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

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    top: 15px;
    z-index: 1;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(odd)::after {
    right: -13px;
}

.timeline-item:nth-child(even)::after {
    left: -13px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.timeline-time {
    position: absolute;
    top: 10px;
    right: 20px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(241, 90, 36, 0.1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(241, 90, 36, 0.25);
    border-color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F15A24'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Contact Page */
/* Focus styles for keyboard navigation */
.user-is-tabbing *:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 0.25rem rgba(241, 90, 36, 0.25);
}

/* Skip link styles */
.visually-hidden-focusable {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Contact info box styles */
.contact-info-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

/* Form validation styles */
.is-invalid {
    border-color: #dc3545 !important;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
    display: block;
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
}

.faq-section .section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.faq-section .section-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.faq-question {
    padding: 20px 25px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-answer {
    padding: 0 25px;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-answer.show {
    padding: 20px 25px;
    max-height: 1000px;
    border-top: 1px solid #eee;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Program Page */
.program-day {
    margin-bottom: 3rem;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.program-day-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f37c4c 100%);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.program-day-header h3 {
    margin: 0;
    font-weight: 600;
}

.program-day-header p {
    margin: 0.5rem 0 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.activity {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.activity:last-child {
    border-bottom: none;
}

.activity-time {
    flex: 0 0 100px;
    background: var(--light-gray);
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
    margin-right: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Transfer Page */
#map, #map2 {
    height: 500px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.transfer-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-point:hover {
    background-color: rgba(241, 90, 36, 0.1) !important;
}

.transfer-point.active {
    border-left: 4px solid var(--primary-color) !important;
    background-color: rgba(241, 90, 36, 0.05) !important;
}

.point-details {
    display: none;
}

.point-details.active {
    display: block;
}

.nav-pills .nav-link {
    color: var(--secondary-color);
    font-weight: 500;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}

/* Hero Slider */
#heroSlider {
    width: 100%;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

#heroSlider .carousel-inner,
#heroSlider .carousel-item {
    height: 100vh;
}

#heroSlider .carousel-item {
    height: 100%;
}

#heroSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#heroSlider .carousel-item.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/slayt2.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    align-items: center;
}

#heroSlider .carousel-caption {
    bottom: auto;
    left: 0;
    right: 0;
    padding: 0 15px;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 5%;
    opacity: 1;
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 100% 100%;
}

#heroSlider .carousel-indicators {
    margin-bottom: 2rem;
}

#heroSlider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    opacity: 0.5;
}

#heroSlider .carousel-indicators .active {
    opacity: 1;
    background-color: var(--primary-color);
}

.slider-image-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* First Slide Image - Stretched to fill container */
#heroSlider .carousel-item:first-child .slider-image-container {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

#heroSlider .carousel-item:first-child .slider-image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next {
        width: 10%;
    }
    
    .slider-image-container {
        height: 100vh;
    }
}

/* Footer */
.footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer a {
    color: var(--light-gray);
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    text-decoration: none;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-right: 0.75rem;
}

.social-links a:last-child {
    margin-right: 0;
}

.social-links a:hover {
    background-color: #e04e1a; /* Slightly darker orange on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    z-index: 999;
    display: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px !important;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
    
    .timeline-time {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 10px;
        display: block;
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Utility Classes */
.bg-light {
    background-color: var(--light-bg) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.badge {
    font-weight: 500;
    padding: 0.4em 0.8em;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

/* Program Page */
.activity-details {
    flex: 1;
}

.activity-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.activity-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.program-nav {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.program-nav .nav-link {
    color: #4E3B39;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.program-nav .nav-link.active, 
.program-nav .nav-link:hover {
    background: var(--primary-color);
    color: white;
}

.highlight-activity {
    background-color: rgba(241, 90, 36, 0.05);
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .activity {
        flex-direction: column;
    }
    
    .activity-time {
        margin-right: 0;
        margin-bottom: 0.75rem;
        align-self: flex-start;
    }
    
    .program-nav {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        padding-bottom: 0.5rem;
    }
    
    .program-nav .nav {
        flex-wrap: nowrap;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* FAQ Page Styles */
.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 1000px;
    border-top-color: #eee;
}

.faq-item.active .faq-question {
    color: #F15A24;
}

.faq-icon {
    transition: transform 0.3s ease;
}

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

.search-box {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #F15A24;
    box-shadow: 0 0 0 0.25rem rgba(241, 90, 36, 0.15);
    outline: none;
}

.search-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.category-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.category-btn {
    padding: 8px 20px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* Contact Form Styles */
.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* FAQ Page Additional Styles */
.category-btn:hover,
.category-btn.active {
    background: #F15A24;
    color: #fff;
    border-color: #F15A24;
}

.no-results {
    text-align: center;
    padding: 50px 20px;
    display: none;
}

.no-results i {
    font-size: 50px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results h4 {
    color: #555;
    margin-bottom: 10px;
}

.no-results p {
    color: #888;
}

/* Contact Page */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}

.map-container .ratio {
    border-radius: 8px;
}

.map-container iframe {
    border: none;
    display: block;
}

.contact-info-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info-box i {
    font-size: 2.5rem;
    color: #F15A24;
    margin-bottom: 1rem;
}

.contact-info-box h4 {
    color: #4E3B39;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form .form-control:focus {
    border-color: #F15A24;
    box-shadow: 0 0 0 0.25rem rgba(241, 90, 36, 0.15);
}

.contact-page .btn-primary {
    background-color: #F15A24;
    border-color: #F15A24;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.contact-page .btn-primary:hover {
    background-color: #e04e1a;
    border-color: #e04e1a;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #d45317;
    border-radius: 50%;
    margin-right: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #F15A24;
    color: #fff;
    transform: translateY(-3px);
}

.contact-method {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-method i {
    font-size: 1.5rem;
    color: #F15A24;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-method div h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #4E3B39;
}

.contact-method div p {
    margin-bottom: 0;
    color: #6c757d;
}

.contact-page .section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2.5rem;
}

.contact-page .section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #F15A24;
    border-radius: 3px;
}

/* Contact Form Validation */
.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
    display: block;
}

/* Image Slider */
#imageSlider {
    max-height: 900px;
    overflow: hidden;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
}

#imageSlider .carousel-inner {
    width: 100%;
}

#imageSlider .carousel-item {
    max-height: 900px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#imageSlider .carousel-item {
    max-height: 100vh;
}

#imageSlider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider Controls */
#imageSlider .carousel-control-prev,
#imageSlider .carousel-control-next {
    width: 5%;
    opacity: 0.7;
    transition: opacity 0.3s;
}

#imageSlider .carousel-control-prev:hover,
#imageSlider .carousel-control-next:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #imageSlider,
    #imageSlider .carousel-item img {
        max-height: 600px;
        height: 600px;
    }
}

@media (max-width: 576px) {
    #imageSlider,
    #imageSlider .carousel-item img {
        max-height: 600px;
        height: 600px;
    }
}