/* ============================================
   CASTLE REDNOCK TREKKING - STYLES
   Modern outdoor adventure website design
   ============================================ */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    --primary-color: #2d5016;
    --primary-dark: #1a3009;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

a {
    text-decoration: none;
    transition: var(--transition);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: var(--primary-dark);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    background-image: 
        linear-gradient(135deg, rgba(45, 80, 22, 0.8), rgba(139, 69, 19, 0.7)),
        url('../images/banjpgner.');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero-section h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-section .lead {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
    font-size: 1.5rem;
}

.hero-buttons {
    animation: fadeInUp 1.4s ease;
}

.hero-section .btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-section .btn-primary {
    background: var(--accent-color);
    border: none;
}

.hero-section .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-section .btn-outline-light:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    transition: var(--transition);
}

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

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(45, 80, 22, 0.9);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.experience-badge i {
    font-size: 2rem;
    color: var(--accent-color);
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.activities-section {
    background: var(--bg-light);
}

.activity-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

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

.activity-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.activity-icon i {
    font-size: 2.5rem;
    color: var(--bg-white);
}

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

.activity-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.activity-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.feature-box h4 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    background: var(--bg-white);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.location-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.location-item p {
    margin: 0;
    color: var(--text-light);
}

.map-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 15px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom;
    background-size: cover;
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-link {
    color: var(--bg-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
}

.footer h5 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}
/* ============================================
   ACTIVITIES PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    position: relative;
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    background-image: 
        linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(139, 69, 19, 0.75)),
        url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-header .lead {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.page-header-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Activity Detail Sections */
.activity-detail-section {
    position: relative;
}

.activity-detail-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.activity-detail-image img {
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.activity-detail-image:hover img {
    transform: scale(1.05);
}

.activity-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.activity-badge.badge-eco {
    background: #10b981;
}

.activity-badge.badge-family {
    background: #f59e0b;
}

.activity-badge.badge-unique {
    background: #8b5cf6;
}

.activity-badge.badge-adventure {
    background: #ef4444;
}

.activity-header {
    margin-bottom: 1.5rem;
}

.activity-label {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.activity-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.activity-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Activity Features Grid */
.activity-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity-features-grid .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.activity-features-grid .feature-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.activity-features-grid .feature-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.activity-features-grid .feature-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.activity-features-grid .feature-item p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Activity Highlights */
.activity-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.highlight-item:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.highlight-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.highlight-item:hover i {
    color: var(--bg-white);
}

/* Activity Requirements */
.activity-requirements {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.activity-requirements h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activity-requirements ul {
    margin: 0;
    padding-left: 1.5rem;
}

.activity-requirements li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Info Cards */
.info-card {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}

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

.info-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-card-header i {
    font-size: 2rem;
}

.info-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.info-card-body {
    padding: 1.5rem;
}

.info-card-body p {
    margin-bottom: 1rem;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

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

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.95;
}

.cta-box .btn {
    white-space: nowrap;
}

/* Gift Voucher Box */
.gift-voucher-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.voucher-feature {
    background: var(--bg-light);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.voucher-feature:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.voucher-feature i {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.voucher-feature:hover i {
    color: var(--bg-white);
}

.voucher-feature span {
    font-weight: 600;
}

/* Gallery Preview */
.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 80, 22, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--bg-white);
}

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

.gallery-preview-item:hover .gallery-overlay {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design for Activities Page */
@media (max-width: 991px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .activity-title {
        font-size: 2rem;
    }
    
    .activity-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gift-voucher-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .activity-title {
        font-size: 1.75rem;
    }
    
    .activity-features-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-highlights {
        flex-direction: column;
    }
    
    .highlight-item {
        width: 100%;
        justify-content: center;
    }
    
    .cta-box {
        padding: 1.5rem;
        text-align: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
/* ============================================
   LIGHTBOX MODAL
   ============================================ */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 3rem;
    color: var(--bg-white);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ============================================
   PRICES PAGE STYLES
   ============================================ */

/* Booking Information Card */
.booking-info-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-header i {
    color: var(--primary-color);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
}

.contact-method:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.contact-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-link {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Price Cards */
.price-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

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

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

.price-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.price-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.price-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.price-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--bg-white);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-body {
    padding: 2rem;
    flex-grow: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.price-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.price-item.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
}

.price-item.highlight .price-details span {
    color: var(--bg-white);
}

.price-details {
    display: flex;
    flex-direction: column;
}

.price-details .duration {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.price-item.highlight .price-details .duration {
    color: var(--bg-white);
}

.price-details .description {
    font-size: 0.875rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-item.highlight .price-amount {
    color: var(--bg-white);
}

.price-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-note i {
    color: #ffc107;
    font-size: 1.2rem;
}

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

.price-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

.price-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.price-footer {
    padding: 0 2rem 2rem;
}

/* Special Price Card for Pony Club */
.price-card.special {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.price-header-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.price-header-horizontal i {
    font-size: 2rem;
    margin-right: 1rem;
}

.price-header-horizontal h3 {
    color: var(--bg-white);
    margin: 0;
    font-size: 1.75rem;
}

.price-header-horizontal p {
    opacity: 0.9;
    margin: 0.5rem 0 0 0;
}

.price-amount-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-white);
}

/* Info Boxes */
.info-box {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border-left: 5px solid var(--primary-color);
}

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

.info-box.medical {
    border-left-color: #dc3545;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-box.medical .info-icon {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.info-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

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

.info-list li strong {
    color: var(--primary-color);
    min-width: 120px;
}

.info-list li i {
    color: #dc3545;
    margin-top: 3px;
}

/* Gift Voucher Banner */
.gift-voucher-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gift-voucher-banner {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.gift-voucher-banner i.display-1 {
    color: var(--accent-color);
}

.gift-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gift-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.gift-feature-item:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(10px);
}

.gift-feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.gift-feature-item:hover i {
    color: var(--bg-white);
}

.gift-feature-item span {
    font-weight: 600;
}

/* Accordion Customization */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1.25rem 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--bg-light);
    line-height: 1.8;
}

/* Responsive Design for Prices Page */
@media (max-width: 991px) {
    .booking-info-card {
        padding: 2rem 1.5rem;
    }
    
    .price-header-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .price-amount-large {
        font-size: 2.5rem;
    }
    
    .gift-voucher-banner {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .price-card {
        margin-bottom: 2rem;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .info-box {
        margin-bottom: 1.5rem;
    }
    
    .gift-feature-item {
        justify-content: center;
    }
}

/* Print Styles for Prices Page */
@media print {
    .navbar,
    .back-to-top,
    .cta-section,
    .footer {
        display: none;
    }
    
    .price-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .page-header {
        background: #f8f9fa;
        color: #000;
    }
}
/* ============================================
   SEGWAY PAGE STYLES
   ============================================ */

/* Segway Hero Section */
.segway-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    background-image: 
        linear-gradient(135deg, rgba(16, 185, 129, 0.85), rgba(45, 80, 22, 0.75)),
        url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Quick Info Bar */
.quick-info-bar {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.quick-info-item {
    padding: 1.5rem;
    transition: var(--transition);
}

.quick-info-item:hover {
    transform: translateY(-5px);
}

.quick-info-item i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.quick-info-item h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quick-info-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.875rem;
}

/* Segway Image Wrapper */
.segway-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.segway-image-wrapper img {
    transition: var(--transition);
}

.segway-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Experience Content */
.section-label {
    display: inline-block;
    background: #d1fae5;
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.experience-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--bg-white);
}

.feature-content h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

/* Step Cards */
.step-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid #10b981;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: #10b981;
}

.step-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* Benefit Cards */
.benefit-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: #10b981;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

/* Requirements Box */
.requirements-box {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.requirement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.requirement-item:hover {
    background: #d1fae5;
    transform: translateX(5px);
}

.requirement-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.requirement-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.requirement-item p {
    margin: 0;
    color: var(--text-light);
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6rem;
    color: #d1fae5;
    font-family: Georgia, serif;
    line-height: 1;
}

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

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Booking Card */
.booking-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.booking-option {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.booking-option:hover {
    background: #d1fae5;
    transform: translateY(-5px);
}

.booking-option i {
    font-size: 2.5rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.booking-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-link {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.booking-link:hover {
    color: #10b981;
}

.booking-info {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    padding: 2rem;
    border-radius: 10px;
}

.booking-info h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-info ul {
    margin: 0;
    padding-left: 1.5rem;
}

.booking-info li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Related Activity Cards */
.related-activity-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.related-activity-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.related-activity-card .activity-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.related-activity-card .activity-icon i {
    font-size: 3rem;
    color: var(--bg-white);
}

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

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

/* Responsive Design for Segway Page */
@media (max-width: 991px) {
    .segway-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .experience-features {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .segway-hero h1 {
        font-size: 2.5rem;
    }
    
    .quick-info-item {
        padding: 1rem;
    }
    
    .quick-info-item i {
        font-size: 2rem;
    }
    
    .quick-info-item h4 {
        font-size: 1.25rem;
    }
    
    .experience-feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .requirements-box,
    .booking-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card::before {
        font-size: 4rem;
    }
}

/* Animation for Segway Page Elements */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.segway-image-wrapper {
    animation: float 6s ease-in-out infinite;
}
/* ============================================
   WINTER PAGE STYLES
   ============================================ */

/* Winter Header */
.winter-header {
    background-image: 
        linear-gradient(135deg, rgba(45, 80, 22, 0.85), rgba(91, 117, 0, 0.75)),
        url('../images/banner.jpg');
}

.season-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(147, 197, 253, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    font-weight: 600;
}

/* Winter Image Cards */
.winter-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.winter-image-card img {
    transition: var(--transition);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.winter-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(45, 80, 22, 0.95);
    backdrop-filter: blur(10px);
    color: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    font-size: 1.125rem;
}

/* Program Label */
.program-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Program Intro Card */
.program-intro-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--accent-color);
}

.program-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.program-icon-large i {
    font-size: 4rem;
    color: var(--bg-white);
}

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

/* Benefit Boxes */
.benefit-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

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

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

.benefit-box h4 {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.benefit-box p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

/* Program Details Card */
.program-details-card {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.program-details-card h4 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    background: var(--bg-white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.detail-item strong {
    color: var(--primary-color);
    white-space: nowrap;
}

.detail-item span {
    color: var(--text-dark);
    text-align: right;
}

/* Horse Cards */
.horse-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.horse-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.horse-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.horse-info h3 {
    color: var(--bg-white);
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.horse-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.spec-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.experience-level {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.experience-level.beginner {
    background: #10b981;
    color: var(--bg-white);
}

.experience-level.intermediate {
    background: #f59e0b;
    color: var(--bg-white);
}

.experience-level.experienced {
    background: #ef4444;
    color: var(--bg-white);
}

.experience-level.small {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.horse-card-body {
    padding: 2rem;
}

.horse-card-body p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.horse-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.trait-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
}

.trait-tag:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Legend Card */
.legend-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--accent-color);
}

.legend-card h5 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

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

.legend-item p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* Welcome Card */
.welcome-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.participant-type {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
    transition: var(--transition);
}

.participant-type:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

.participant-icon i {
    font-size: 2.5rem;
    color: var(--bg-white);
}

.participant-type h4 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.participant-type > p {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.participant-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.participant-benefits li:last-child {
    border-bottom: none;
}

.participant-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Application Card */
.application-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-option-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-option-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

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

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

.contact-option-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.application-checklist {
    background: #f0fdf4;
    border: 2px solid #10b981;
    padding: 2rem;
    border-radius: 15px;
}

.application-checklist h5 {
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

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

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.checklist i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Responsive Design for Winter Page */
@media (max-width: 991px) {
    .program-intro-card {
        padding: 2rem;
    }
    
    .program-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .program-icon-large i {
        font-size: 3rem;
    }
    
    .horse-card-header {
        flex-direction: column;
    }
    
    .experience-level {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .winter-image-card img {
        height: 300px;
    }
    
    .benefit-box {
        margin-bottom: 1rem;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
    }
    
    .detail-item span {
        text-align: center;
    }
    
    .horse-specs {
        flex-direction: column;
    }
    
    .horse-traits {
        justify-content: center;
    }
    
    .checklist {
        grid-template-columns: 1fr;
    }
    
    .welcome-card,
    .application-card {
        padding: 2rem 1.5rem;
    }
}

/* Print Styles for Winter Page */
@media print {
    .horse-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .winter-image-card {
        break-inside: avoid;
    }
}
/* ============================================
   ATTRACTIONS PAGE STYLES
   ============================================ */

/* Attractions Header */
.attractions-header {
    background-image: 
        linear-gradient(135deg, rgba(16, 124, 16, 0.85), rgba(45, 80, 22, 0.75)),
        url('../images/banner.jpg');
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    font-weight: 600;
}

/* Attraction Filters */
.attraction-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}

.filter-btn {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

/* Attraction Cards */
.attraction-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

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

.attraction-card.featured {
    border-color: var(--accent-color);
}

.attraction-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: var(--bg-white);
    padding: 0.5rem 3rem;
    font-weight: 700;
    font-size: 0.875rem;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.attraction-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.attraction-icon i {
    font-size: 4rem;
    color: var(--bg-white);
}

.attraction-content {
    padding: 2rem;
}

.attraction-category {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge.adventure {
    background: #ef4444;
    color: var(--bg-white);
}

.category-badge.family {
    background: #8b5cf6;
    color: var(--bg-white);
}

.category-badge.nature {
    background: #10b981;
    color: var(--bg-white);
}

.category-badge.leisure {
    background: #3b82f6;
    color: var(--bg-white);
}

.attraction-content h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.attraction-description {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.attraction-highlights li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.attraction-highlights li:last-child {
    border-bottom: none;
}

.attraction-highlights i {
    color: #10b981;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.attraction-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.distance-info {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.distance-info i {
    color: var(--primary-color);
}

/* Extra Attraction Cards */
.extra-attraction-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.extra-attraction-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.extra-attraction-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.extra-attraction-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.extra-attraction-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Visit Info Card */
.visit-info-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--accent-color);
}

.visit-info-card h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-section {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}

.info-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-section p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-section ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-section li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.info-section strong {
    color: var(--primary-color);
}

/* Filter Animation */
.attraction-card.hide {
    display: none;
}

.attraction-card.show {
    animation: fadeInUp 0.6s ease;
}

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

/* Responsive Design for Attractions Page */
@media (max-width: 991px) {
    .attraction-filters {
        padding: 1rem;
    }
    
    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .attraction-icon {
        padding: 2rem;
    }
    
    .attraction-icon i {
        font-size: 3rem;
    }
    
    .attraction-content {
        padding: 1.5rem;
    }
    
    .visit-info-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .attraction-filters {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .attraction-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .attraction-footer .btn {
        width: 100%;
    }
    
    .distance-info {
        justify-content: center;
    }
    
    .info-section {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .visit-info-card {
        padding: 1.5rem;
    }
}

/* Print Styles for Attractions Page */
@media print {
    .attraction-filters,
    .back-to-top,
    .cta-section {
        display: none;
    }
    
    .attraction-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
