
/* Additional styles for legal pages */
.cookie-table table,
.corporate-info-table table,
.ownership-structure table,
.financial-summary table,
.keyboard-shortcuts table,
.refund-table table,
.change-policy table {
    margin: 1.5rem 0;
}

.cookie-table th,
.corporate-info-table th,
.ownership-structure th,
.financial-summary th,
.keyboard-shortcuts th,
.refund-table th,
.change-policy th {
    background-color: var(--primary-gold);
    color: var(--white);
    font-weight: 600;
    border: none;
}

.cookie-table tbody tr:hover,
.ownership-structure tbody tr:hover,
.keyboard-shortcuts tbody tr:hover,
.refund-table tbody tr:hover,
.change-policy tbody tr:hover {
    background-color: rgba(255, 193, 77, 0.1);
}

/* Cookie preferences panel */
.cookie-preferences-panel {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.cookie-category {
    background: var(--white);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-gold);
}

.cookie-category h5 {
    color: var(--gray-dark);
    font-family: var(--font-tenor);
    margin-bottom: 0.5rem;
}

.cookie-category p {
    color: #666;
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Browser instructions */
.browser-instructions {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.browser-instructions h4 {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    font-family: var(--font-tenor);
}

.browser-instructions ul {
    margin: 0;
}

.browser-instructions li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

/* Accessibility tools */
.accessibility-tools {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.accessibility-tools h3 {
    color: var(--gray-dark);
    font-family: var(--font-tenor);
    margin-bottom: 1rem;
}

/* Contact accessibility section */
.contact-accessibility {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.contact-accessibility h3 {
    color: var(--primary-gold);
    font-family: var(--font-tenor);
    margin-bottom: 1rem;
}

/* Corporate info styling */
.corporate-info-table td:first-child {
    font-weight: 600;
    background-color: rgba(255, 193, 77, 0.1);
    width: 35%;
}

.financial-summary {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.financial-summary td:first-child {
    font-weight: 600;
    color: var(--gray-dark);
}

.financial-summary td:last-child {
    font-weight: bold;
    color: var(--primary-gold);
}

/* Refund policy specific styles */
.refund-table .table th {
    font-size: 0.9rem;
    text-align: center;
}

.refund-table .table td {
    text-align: center;
    vertical-align: middle;
}

.refund-table .table td:first-child {
    text-align: left;
    font-weight: 500;
}

.refund-table .table td:last-child {
    text-align: left;
    font-style: italic;
    color: #666;
    font-size: 0.85rem;
}

.change-policy .table th,
.change-policy .table td {
    text-align: center;
    vertical-align: middle;
}

.change-policy .table td:first-child {
    text-align: left;
}

/* Contact refunds section */
.contact-refunds {
    background: var(--gray-light);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-refunds ul {
    margin: 0;
}

.contact-refunds li {
    margin-bottom: 0.8rem;
}

.contact-refunds a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.contact-refunds a:hover {
    text-decoration: underline;
}

/* Skip link styling */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-gold);
    color: var(--white) !important;
    padding: 8px 12px;
    z-index: 1060;
    text-decoration: none;
    border-radius: 4px;
    transition: top 0.3s ease;
    font-weight: 500;
}

.skip-link:focus {
    top: 6px;
    color: var(--white) !important;
}

/* High contrast improvements */
@media (prefers-contrast: high) {
    .legal-section a {
        text-decoration: underline;
    }
    
    .table-bordered th,
    .table-bordered td {
        border-width: 2px;
    }
    
    .btn-outline-primary {
        border-width: 2px;
    }
    
    .form-control:focus,
    .form-select:focus {
        border-width: 3px;
    }
}

/* Print styles for legal pages */
@media print {
    .legal-page {
        padding-top: 0;
    }
    
    .navbar,
    .footer,
    .legal-navigation,
    .scroll-to-top {
        display: none !important;
    }
    
    .legal-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .page-title {
        color: #000 !important;
        font-size: 24pt;
    }
    
    .legal-section h2 {
        color: #000 !important;
        font-size: 18pt;
        page-break-after: avoid;
    }
    
    .legal-section h3 {
        color: #000 !important;
        font-size: 14pt;
        page-break-after: avoid;
    }
    
    .table {
        page-break-inside: avoid;
    }
    
    .table th {
        background-color: #f0f0f0 !important;
        color: #000 !important;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
    
    a[href^="mailto:"]:after,
    a[href^="tel:"]:after,
    a[href^="#"]:after {
        content: "";
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .timeline-wrapper .timeline-item {
        transition: none;
    }
    
    .team-member {
        transition: none;
    }
    
    .value-card,
    .award-card,
    .testimonial-card {
        transition: none;
    }
    
    .value-card:hover,
    .award-card:hover,
    .testimonial-card:hover,
    .team-member:hover {
        transform: none;
    }
}

/* Focus management for accessibility */
.navbar-nav .nav-link:focus,
.footer-links a:focus,
.btn:focus {
    outline: 3px solid var(--primary-gold);
    outline-offset: 2px;
}

/* Enhanced mobile styles for legal pages */
@media (max-width: 576px) {
    .cookie-table,
    .corporate-info-table,
    .ownership-structure,
    .financial-summary,
    .refund-table,
    .change-policy {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cookie-table table,
    .corporate-info-table table,
    .ownership-structure table,
    .financial-summary table,
    .refund-table table,
    .change-policy table {
        min-width: 500px;
        font-size: 0.85rem;
    }
    
    .cookie-preferences-panel,
    .browser-instructions,
    .accessibility-tools,
    .contact-accessibility,
    .financial-summary,
    .contact-refunds {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .legal-section h2 {
        font-size: 1.4rem;
    }
    
    .legal-section h3 {
        font-size: 1.1rem;
    }
}/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* Legal Pages Styles */
.legal-page {
    padding-top: 100px;
    background: var(--gray-light);
    min-height: 100vh;
}

.legal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

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

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-gold);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-tenor);
    font-size: 1.8rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.legal-section h3 {
    font-family: var(--font-tenor);
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: justify;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    color: var(--dark-gold);
    text-decoration: underline;
}

.legal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-gold);
    margin-top: 3rem;
}

.legal-navigation .btn {
    padding: 0.75rem 1.5rem;
}

/* About Page Specific Styles */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero .hero-background,
.about-hero .hero-overlay,
.about-hero .hero-title,
.about-hero .hero-subtitle,
.contact-hero .hero-background,
.contact-hero .hero-overlay,
.contact-hero .hero-title,
.contact-hero .hero-subtitle {
    /* Inherit styles from main hero */
    width: 100%;
    color: #fff;
    background-size: cover;
}

.about-hero .hero-background img, .contact-hero .hero-background img{
    width: 100%;
}

.history-section {
    background: var(--white);
}

.history-content h2 {
    font-family: var(--font-montaga);
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.history-content .lead {
    font-size: 1.2rem;
    color: var(--primary-gold);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.history-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.history-stats .stat-item {
    text-align: center;
}

.history-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-gold);
    font-family: var(--font-montaga);
}

.history-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.history-image {
    position: relative;
    cursor: pointer;
}

.history-image img {
    transition: var(--transition-medium);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 77, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 15px;
}

.history-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1.1rem;
    margin: 0;
}

/* Timeline Styles */
.timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-gold), var(--orange-gold));
    border-radius: 2px;
}

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

.timeline-wrapper .timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-gold);
    color: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-medium);
}

.timeline-wrapper .timeline-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin: 0 2rem;
    position: relative;
}

.timeline-wrapper .timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-left-color: var(--white);
}

.timeline-wrapper .timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-right-color: var(--white);
}

/* Team Styles */
.team-member {
    text-align: center;
    cursor: pointer;
    transition: var(--transition-medium);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 77, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.member-overlay .social-links a:hover {
    background: var(--gray-dark);
    color: var(--white);
}

.member-info h4 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.member-info p {
    color: var(--primary-gold);
    font-weight: 500;
    margin: 0;
}

/* Values Section */
.values-section {
    background: var(--gray-light);
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-light);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-gold), var(--orange-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: var(--white);
    font-size: 2rem;
}

.value-card h4 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    background: var(--white);
}

.impact-content h2 {
    font-family: var(--font-montaga);
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.impact-stats {
    margin: 2rem 0;
}

.impact-stat {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.impact-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.impact-stat .stat-content h4 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.impact-stat .stat-content p {
    color: #666;
    margin: 0;
}

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

/* Awards Section */
.awards-section {
    background: var(--gray-light);
}

.award-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: var(--transition-medium);
    box-shadow: var(--shadow-light);
}

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

.award-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.award-card h5 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.award-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gold), var(--orange-gold));
    color: var(--white);
}

.cta-section h2 {
    font-family: var(--font-montaga);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

/* Contact Page Specific Styles */
.contact-hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-form-section {
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.contact-form-wrapper h2 {
    font-family: var(--font-montaga);
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.contact-info-wrapper {
    position: sticky;
    top: 120px;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-tenor);
}

.contact-details p {
    margin: 0;
    color: #666;
}

.contact-details a {
    color: var(--primary-gold);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details small {
    color: #999;
    font-size: 0.85rem;
}

.social-contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.social-contact h5 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

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

.contact-cta-card {
    background: linear-gradient(135deg, var(--primary-gold), var(--orange-gold));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-cta-card h4 {
    margin-bottom: 1rem;
}

.contact-cta-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Form Styles */
.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 77, 0.25);
}

.form-control.is-valid, .form-select.is-valid {
    border-color: #28a745;
}

.form-control.is-invalid, .form-select.is-invalid {
    border-color: #dc3545;
}

.form-check-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 77, 0.25);
}

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

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

/* Map Styles */
.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.google-map {
    width: 100%;
    height: 400px;
    border: none;
}

.map-overlay-info {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.map-info-card h5 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-tenor);
}

.map-info-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* FAQ Styles */
.faq-section {
    background: var(--gray-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: var(--white);
    color: var(--gray-dark);
    font-weight: 500;
    padding: 1.5rem;
    border: none;
    font-family: var(--font-tenor);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-gold);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 77, 0.25);
}

.accordion-body {
    padding: 1.5rem;
    background: var(--white);
    color: #666;
    line-height: 1.6;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, var(--gray-dark), #495057);
    color: var(--white);
}

.contact-cta-section h2 {
    font-family: var(--font-montaga);
    margin-bottom: 1rem;
}

.contact-cta-section .lead {
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-options {
    margin-bottom: 2rem;
}

.cta-options .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
}

.contact-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.feature-item i {
    font-size: 1.2rem;
}

/* Responsive Adjustments for Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .legal-navigation .btn {
        width: 100%;
    }
    
    /* Timeline mobile adjustments */
    .timeline-wrapper::before {
        left: 2rem;
    }
    
    .timeline-wrapper .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
    }
    
    .timeline-year {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
        margin-right: 1rem;
        flex-shrink: 0;
    }
    
    .timeline-wrapper .timeline-content {
        margin: 0;
        flex: 1;
    }
    
    .timeline-wrapper .timeline-content::before {
        left: -15px !important;
        border-right-color: var(--white) !important;
        border-left-color: transparent !important;
    }
    
    /* Team mobile adjustments */
    .member-image {
        width: 150px;
        height: 150px;
    }
    
    /* Contact form mobile adjustments */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}/* Bagma - Estilos CSS */

:root {
    --primary-gold: #ffc14d;
    --dark-gold: #b39836;
    --light-gold: #fffd4d;
    --orange-gold: #ffb64d;
    --brown-gold: #b37f36;
    --white: #ffffff;
    --black: #000000;
    --gray-light: #f8f9fa;
    --gray-dark: #343a40;
    
    /* Tipografías */
    --font-questrial: 'Questrial', sans-serif;
    --font-montaga: 'Montaga', serif;
    --font-tenor: 'Tenor Sans', sans-serif;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 50px rgba(0, 0, 0, 0.25);
    
    /* Transiciones */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-questrial);
    line-height: 1.6;
    color: var(--gray-dark);
    overflow-x: hidden;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--white);
    padding: 1rem 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: var(--transition-medium);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: var(--white);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
    padding: 0.5rem 0;
}

.navbar-brand .logo {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link {
    font-family: var(--font-tenor);
    font-weight: 500;
    color: var(--gray-dark);
    margin: 0 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-gold), var(--orange-gold));
    transition: var(--transition-fast);
}

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

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

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(255, 193, 77, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-family: var(--font-montaga);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-cta .btn {
    margin: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--orange-gold));
    border: none;
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--dark-gold), var(--brown-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

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

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

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-montaga);
    font-size: 2.8rem;
    color: var(--gray-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-gold), var(--orange-gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Experiences Section */
.experiences-section {
    background: var(--gray-light);
    position: relative;
}

.experiences-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffc14d' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

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

.experience-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
}

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

.experience-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.experience-content {
    padding: 2rem;
}

.experience-content h3 {
    font-family: var(--font-tenor);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.experience-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.experience-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

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

.experience-features span {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.experience-features i {
    color: var(--primary-gold);
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-info {
    padding: 3rem 2rem;
}

.map-content h2 {
    font-family: var(--font-montaga);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

.map-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.destination-list {
    space-y: 1rem;
}

.destination-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    border-left: 4px solid transparent;
}

.destination-item:hover,
.destination-item.active {
    border-left-color: var(--primary-gold);
    transform: translateX(10px);
    box-shadow: var(--shadow-light);
}

.destination-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 1rem;
}

.destination-item h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gray-dark);
}

.destination-item p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.map-visual {
    padding: 2rem;
}

.interactive-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.map-pins {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-pin:hover {
    transform: scale(1.2);
}

.map-pin.active {
    background: var(--orange-gold);
    animation: pulse 2s infinite;
}

.pin-pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    animation: pinPulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
}

.collage-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-medium);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.medium {
    grid-row: span 1;
}

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

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 77, 0.8), rgba(255, 182, 77, 0.8));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
    font-family: var(--font-tenor);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--gray-light) 0%, var(--white) 100%);
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    text-align: center;
}

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

.testimonial-avatar {
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.testimonial-stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
}

.testimonial-author strong {
    color: var(--gray-dark);
    display: block;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Quotes Section */
.quotes-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.quotes-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.quotes-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quotes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.quotes-slider {
    text-align: center;
    color: var(--white);
}

.quote-item {
    display: none;
}

.quote-item.active {
    display: block;
    animation: fadeInUp 1s ease;
}

.quote-item h3 {
    font-family: var(--font-montaga);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

/* Statistics */
.stats-section {
    background: var(--primary-gold);
    color: var(--white);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    font-family: var(--font-montaga);
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Secret Destinations */
.secret-destinations {
    background: var(--gray-dark);
    color: var(--white);
}

.secret-destinations .section-title {
    color: var(--white);
}

.secret-destinations .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.secret-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-medium);
    backdrop-filter: blur(10px);
}

.secret-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.secret-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.secret-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.secret-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.secret-overlay i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.secret-content {
    padding: 1.5rem;
    position: relative;
}

.secret-content h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.secret-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.secret-badge {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline */
.timeline-section {
    background: var(--gray-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-gold), var(--orange-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    text-align: left;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: var(--white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: var(--white);
}

.timeline-date {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

.timeline-content h4 {
    font-family: var(--font-tenor);
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

/* Featured Service */
.featured-service {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
}

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-content {
    padding: 2rem 0;
}

.featured-tag {
    background: linear-gradient(45deg, var(--primary-gold), var(--orange-gold));
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-family: var(--font-montaga);
    font-size: 2.5rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.featured-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.featured-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.highlight-item h5 {
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-tenor);
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.featured-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.price {
    font-family: var(--font-montaga);
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.price-per {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--gray-dark);
    color: var(--white);
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand img{
    max-width: 200px;
    object-fit: contain;
}
.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.footer h5 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-family: var(--font-tenor);
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-contact {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
    color: var(--primary-gold);
    margin-right: 1rem;
    width: 20px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 193, 77, 0.1);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

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

.scroll-to-top:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn {
        display: block;
        margin: 0.5rem auto;
        width: 80%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .collage-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .timeline::before {
        left: 2rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0 0 0 4rem;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -30px;
        border-right-color: var(--white);
        border-left-color: transparent;
    }
    
    .featured-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .map-section .row {
        flex-direction: column-reverse;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-card,
    .testimonial-card,
    .secret-card {
        margin-bottom: 2rem;
    }
    
    .stats-section .row > div {
        margin-bottom: 2rem;
    }
    
    .cookie-banner .row {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner .col-md-4 {
        margin-top: 1rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-medium);
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
    
    .hero-image {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.3);
        --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.4);
        --shadow-heavy: 0 10px 50px rgba(0, 0, 0, 0.5);
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .quotes-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Print styles */
@media print {
    .navbar,
    .scroll-to-top,
    .cookie-banner {
        display: none !important;
    }
    
    .hero-section {
        height: auto;
        page-break-inside: avoid;
    }
    
    .section-title::after {
        background: #000 !important;
    }
}

/* Splide Custom Styles */
.splide__track {
    border-radius: 15px;
    overflow: hidden;
}

.splide__arrow {
    background: var(--primary-gold);
    opacity: 1;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
}

.splide__arrow:hover {
    background: var(--dark-gold);
}

.splide__arrow svg {
    fill: var(--white);
}

.splide__pagination__page.is-active {
    background: var(--primary-gold);
}

/* AOS Custom Styles */
[data-aos="fade-up"] {
    transform: translate3d(0, 40px, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-40px, 0, 0);
}

[data-aos="fade-left"] {
    transform: translate3d(40px, 0, 0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

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

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}