/* =============================================
   PARMAR RESORT - CUSTOM STYLES
   ============================================= */

/* =============================================
   ROOT VARIABLES & FONT SETUP
   ============================================= */
   @import url('https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap');

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f8b400;
    --accent-color: #1a3a6c;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --gray-bg: #e9ecef;
    --border-color: #dee2e6;
    --shadow: 0 2px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

/* =============================================
   GLOBAL STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
   
                        #about .material-symbols-outlined {
                            font-size: 30px;
    color: var(--primary-color);
    vertical-align: middle;
    padding-right: 20px;
                        }
              
body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Gilda Display", serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;

    transition: var(--transition);
}

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

.navbar-brand img {
    max-width: 100%;
    height: auto;
    
}
.navbar-brand img {
    max-width: 100%;
    height: auto;
    width:100px;
}

        .experience-section ul {
            list-style-type: none;
            padding-left: 0.5rem;
        }

        .experience-section ul li::before {
            content: "\ef4a";
            display: inline;
            padding-right: 10px;
            color: green;
            font-family: 'Material Symbols Outlined';
            vertical-align: middle;
        }

        .calender {
            background: #fff url(https://www.eglobe-solutions.com/extras/Content/WebsiteTemplate/L6deluxe/libs/images/calendar-icon.png) 94% no-repeat;
            cursor: pointer;
            border-radius: 0px;
            border: solid 1px #ddd;
            color: #000;
            text-align: left;
            padding-left: 5px;
        }
  
     
                    .middle {
                        transition: .5s ease;
                        opacity: 0;
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        -ms-transform: translate(-50%, -50%);
                        text-align: center;
                        color: #000;
                        z-index: 222;
                    }

                    .glightbox {
                        position: relative
                    }

                    .glightbox:hover .middle {
                        opacity: 1
                    }
                
        .photo_gallery img {
            border-radius: 6px;
            width: 100%;
        }
 
        footer .fa {
            color: #fff
        }
 
        .attraction-content p {
            margin-bottom: 0
        }

                    .hotel-card {
                        position: relative;
                        width: 100%;
                        height: 250px;
                        border-radius: 10px;
                        overflow: hidden;
                        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
                    }

                    /* Image */
                    .hotel-card img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.6s ease;
                    }

                    /* Overlay */
                    .hotel-card .card-overlay {
                        position: absolute;
                        inset: 0;
                        background: linear-gradient(to top,
                                rgba(0, 0, 0, 0.7) 20%,
                                rgba(0, 0, 0, 0.2) 50%,
                                rgba(0, 0, 0, 0) 100%);
                    }

                    /* Text */
                    .hotel-card .card-content {
                        position: absolute;
                        bottom: 20px;
                        left: 20px;
                        color: #fff;
                        font-size: 1.3rem;
                        font-weight: 600;
                        z-index: 2;
                    }

                    .hotel-card .card-content small {
                        font-size: 12px;
                        background-color: #f8b400fc;
                        border-radius: 10px;
                        padding: 0 10px;
                        line-height: 18px;
                    }

                    .hotel-card .card-content p {
                        color: #fff;
                        font-size: 16px;
                        font-weight: normal;
                        margin-bottom: 0;
                    }

                    /* Hover effect */
                    .hotel-card:hover img {
                        transform: scale(1.08);
                    }
            
        footer .material-symbols-outlined {
            vertical-align: middle;
            font-size: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            padding: 5px;
        }
 
footer a{color:#fff}
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 0.58rem 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    line-height: 1.5;
}

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

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

.btn-lg {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}
button:focus:not(:focus-visible) {
  outline: 0;
  background: var(--primary-color);
  color:#fff;
  border:2px solid var(--primary-color)

}

            .photo_gallery, .experience-section {
                background-color: #f8f9fa;
            }
.experience-section .material-symbols-outlined {
            vertical-align: middle;
            font-size: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            
        }
            /* Text Area */
            .content-box {
                padding: 40px 50px;
            }

            .content-box h2 {
                font-size: 38px;
                margin-bottom: 20px;
            }

            .content-box p {
                font-size: 16px;
                line-height: 1.8;
                color: #444;
            }

            /* Image Area */
            .image-box {
                overflow: hidden;
            }

            .image-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            /* Button */
            .btn-outline-success {
                border-radius: 0;
                padding: 0.5rem 1rem;
                margin-top: 15px;
                border:2px solid var(--secondary-color);
                color:var(--secondary-color)
            }
.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
            /* Image Animation */
            .animated-img {
                transform: scale(1.1);
                opacity: 0;
                transition: all 1.2s ease;
            }

            .animated-img.show {
                transform: scale(1);
                opacity: 1;
            }

            /* Reverse spacing fix */
            .experience-item.reverse .content-box {
                padding-left: 60px;
            }

            /* Mobile */
            @media (max-width: 991px) {
                .content-box {
                    padding: 30px 20px;
                }
                .experience-item.reverse .content-box {
    padding-left: 10px;
}
            }
        
/* =============================================
   NAVIGATION BAR
   ============================================= */
#mainNav {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0rem 0;
    transition: var(--transition);
}

#mainNav.navbar-scrolled {
    background: var(--white);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar-brand {
    font-family: "Gilda Display", serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition);
}

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

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

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

.book-now-btn {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}

.book-now-btn:hover {
    background: #e69d00;
    color: var(--white);
    transform: translateY(-2px);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* =============================================
   BOOKING SECTION
   ============================================= */
.booking-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.booking-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.booking-card h3 {
    color: var(--text-dark);
    font-family: "Gilda Display", serif;
}

.booking-section .form-control,
.booking-section .form-select {
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.booking-section .form-control:focus,
.booking-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

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

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

.counter {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

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

.counter-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.counter-text {
    color: var(--text-light);
    margin-bottom: 0;
}

.about-images img {
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.about-images img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

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

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

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

.room-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-content {
    padding: 1.5rem;
}

.room-title {
    font-family: "Gilda Display", serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.room-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.room-features {
    margin-bottom: 1rem;
}

.feature-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-tag i {
    font-size: 1rem;
    vertical-align: middle;
    margin-right: 0.25rem;
}

.room-price {
    margin: 1rem 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* =============================================
   FACILITIES SECTION
   ============================================= */
.facilities-section {
    background: var(--white);
}

.facility-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.facility-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 1rem;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    transform: scale(1.1);
}

.facility-icon span {
    font-size: 2.5rem;
    color: var(--white);
}

.facility-title {
    font-family: "Gilda Display", serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.facility-description {
    color: var(--text-light);
    margin-bottom: 0;
}

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

.gallery-item {
    position: relative;
    display: block;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

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

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

/* =============================================
   ATTRACTIONS SECTION
   ============================================= */
.attractions-section {
    background: var(--white);
}

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

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

.attraction-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.attraction-content {
    padding: 1.5rem;
}

.attraction-title {
   font-family: "Gilda Display", serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.attraction-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.attraction-distance {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
}

.attraction-distance span:first-child {
    margin-right: 0.5rem;
}

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

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-form-wrapper h4,
.contact-info-wrapper h4 {
    font-family: "Gilda Display", serif;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: var(--border-radius);
    border: 2px solid var(--border-color);
    padding: 0.75rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
}

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

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

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

.contact-icon span {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h6 {
    font-family: "Gilda Display", serif;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin-bottom: 0;
    color: var(--text-light);
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #000!important;
    color: var(--white);
}

.footer-title {
    font-family: "Gilda Display", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-text {
    color: #e0e5eb;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.social-link span {
    color: var(--white);
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #e0e5eb;
    transition: var(--transition);
}

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

.newsletter-form .input-group {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 0;
}

.newsletter-form .btn {
    border-radius: 0;
    background: var(--secondary-color);
    border: none;
    font-weight: 500;
}

.newsletter-form .btn:hover {
    background: #e69d00;
}

.footer-divider {
    border-color: #495057;
    margin: 2rem 0;
}

.footer-bottom-text {
    color: #adb5bd;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* =============================================
   SWIPER CUSTOMIZATION
   ============================================= */
.swiper {
    width: 100%;
    padding: 2rem 0;
}

.swiper-slide {
    height: auto;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

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

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

/* =============================================
   OWL CAROUSEL CUSTOMIZATION
   ============================================= */
.owl-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.owl-carousel .owl-nav .owl-prev {
    left: 20px;
}

.owl-carousel .owl-nav .owl-next {
    right: 20px;
}

.owl-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.owl-carousel .owl-dot {
    background: rgba(255,255,255,0.5);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.owl-carousel .owl-dot.active {
    background: var(--white);
    width: 15px;
    height: 15px;
}

/* =============================================
   GLIGHTBOX CUSTOMIZATION
   ============================================= */
.glightbox-clean .gslide-title {
    font-family: "Gilda Display", serif;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.glightbox-clean .gslide-desc {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .book-now-btn {
        margin-top: 1rem;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .hero-slide {
        height: 80vh;
    }
    
    .booking-card {
        padding: 1.5rem;
    }
    
    .counter {
        padding: 1rem;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .facility-card {
        padding: 1.5rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .hero-slide {
        height: 70vh;
    }
    
    .booking-card {
        padding: 1rem;
    }
    
    .about-images .col-6 {
        margin-bottom: 1rem;
    }
    
    .room-content {
        padding: 1rem;
    }
    
    .facility-card {
        padding: 1rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .social-link span {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .booking-section,
    .swiper-button-next,
    .swiper-button-prev,
    .owl-nav,
    .owl-dots {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .hero-section {
        height: auto !important;
        page-break-inside: avoid;
    }
}