/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #0000b3;
    --primary-dark: #001f7d;
    --secondary-color: #3c00b3;
    --accent-color: #00b3b3;
    --accent-dark: #007d7d;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #2c3e50;
    
    /* Fonts */
    --font-primary: 'Libre Baskerville', serif;
    --font-heading: 'Rakkas', cursive;
    --font-body: 'Karma', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 20px;
    
    /* Shadows */
    --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 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    opacity: 0.8;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ANIMATED BACKGROUNDS ===== */
@keyframes waveAnimation {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color), var(--primary-dark));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.1;
}

.animated-waves::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C83.772 12.808 89.828 14 100 14v-2c-8.44 0-13.718-1.21-22.272-4.402l-1.768-.661C66.36 3.347 60.353 2 50 2 39.647 2 33.64 3.347 24.04 6.937l-1.768.661C13.718 10.79 8.44 12 0 12v2z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E") repeat-x;
    animation: waveAnimation 20s linear infinite;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 179, 0.95);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(0, 0, 179, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(0, 0, 179, 0.98);
    padding: 10px 0;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 50px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-title .highlight {
    color: var(--accent-color);
    background: linear-gradient(45deg, var(--accent-color), var(--accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-price {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-text {
    font-size: 1rem;
    opacity: 0.8;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 10px;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.price-included {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-medium);
}

.hero-image img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 179, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 600;
    transition: var(--transition-fast);
}

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

/* ===== FLEET SECTION ===== */
.fleet-section {
    padding: var(--section-padding);
    background: var(--light-gray);
    position: relative;
}

.fleet-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 179, 179, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(60, 0, 179, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

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

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

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

.yacht-card:hover .yacht-overlay {
    opacity: 1;
}

.yacht-content {
    padding: 25px;
}

.yacht-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.yacht-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 15px;
}

.yacht-price {
    margin-bottom: 15px;
}

.yacht-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.yacht-price .period {
    font-size: 1rem;
    opacity: 0.7;
}

.yacht-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.feature i {
    color: var(--accent-color);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    padding: var(--section-padding);
    background: var(--white);
}

.feature-card {
    padding: 40px 20px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
    height: 100%;
    border: 1px solid rgba(0, 179, 179, 0.1);
}

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

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

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

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0, 179, 179, 0.05) 100%);
}

.testimonials-slider {
    padding: 20px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    height: 100%;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.author-name {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-location {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== ROUTES MAP SECTION ===== */
.routes-map {
    padding: var(--section-padding);
    background: var(--white);
}

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

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

.map-point {
    position: absolute;
    cursor: pointer;
}

.point-marker {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-light);
    animation: floatAnimation 3s ease-in-out infinite;
    transition: var(--transition-fast);
}

.map-point:hover .point-marker {
    transform: scale(1.2);
    background: var(--primary-color);
}

.point-tooltip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 179, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.map-point:hover .point-tooltip {
    opacity: 1;
}

.routes-info {
    padding-left: 30px;
}

.route-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.route-item.active {
    display: block;
}

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

.route-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.route-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.route-highlights {
    list-style: none;
    padding: 0;
}

.route-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.route-highlights i {
    color: var(--accent-color);
    width: 20px;
}

/* ===== LUXURY MOMENTS VIDEO SECTION ===== */
.luxury-moments {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.luxury-moments .section-title {
    color: var(--white);
}

.luxury-moments .section-subtitle {
    color: var(--white);
    opacity: 0.8;
}

.video-slider {
    margin-top: 50px;
}

.video-slide {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.video-container {
    width: 100%;
    height: 100%;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: var(--white);
}

.video-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-description {
    opacity: 0.9;
    margin: 0;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(0, 179, 179, 0.1) 100%);
}

.booking-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--shadow-heavy);
    border: 1px solid rgba(0, 179, 179, 0.1);
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 15px;
    border: 2px solid rgba(0, 179, 179, 0.2);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 179, 179, 0.25);
}

.booking-form .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.footer-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

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

.footer-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 20px;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.copyright {
    margin: 0;
    opacity: 0.7;
}

.footer-extra-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-extra-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.footer-extra-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.separator {
    opacity: 0.5;
}

/* ===== SWIPER CUSTOMIZATION ===== */
.swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .yacht-card {
        margin-bottom: 30px;
    }
    
    .routes-info {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
    
    .footer-extra-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-price {
        padding: 15px 20px;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .video-slide {
        height: 300px;
    }
    
    .booking-card {
        padding: 25px 15px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 179, 179, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(60, 0, 179, 0.1) 0%, transparent 50%);
}

.hover-lift {
    transition: transform var(--transition-fast);
}

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

.rounded-custom {
    border-radius: 20px;
}

.shadow-custom {
    box-shadow: var(--shadow-medium);
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.slide-in-up {
    animation: slideInUp 0.6s ease-out;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rotate-slow {
    animation: rotate 20s linear infinite;
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    color: transparent;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--accent-color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: rotate 1s linear infinite;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== FOCUS STYLES ===== */
*:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 179, 179, 0.25);
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .cookie-consent,
    .video-slider,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        page-break-after: always;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}
    

.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}