/* Installing the font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner styling */
.banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('./images/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Header styles */
.banner_header {
    width: 100%;
    height: 80px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: rgb(86, 154, 194,0.7);
}

.banner_header.scrolled {
    background: rgba(109, 109, 109, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.banner_logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.banner_logo_text {
    color: rgb(253, 249, 242);
    background-color: black;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 3px;
}

.banner_nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav_links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav_link {
    position: relative;
}

.nav_link a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav_link a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.auth-link a {
    border: 2px solid white;
    padding: 8px 20px;
}

.auth-link:hover a {
    background-color: white;
    color: black;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu {
    background: white;
    width: 300px;
    height: 100%;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-logo p {
    background: black;
    color: white;
    padding: 4px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: #007bff;
}

/* Banner details */
.banner_detailse {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 140px 5% 50px;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    flex: 1;
}

.banner_detailse_badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.banner_detailse_badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.banner-detalies-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.banner-detailse-btn {
    font-size: 18px;
    padding: 18px 40px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-detailse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
    background: linear-gradient(45deg, #0056b3, #004085);
}

/* Booking form */
.banner-detalies-booking {
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.booking-inp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-inp label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.booking-inp input {
    height: 45px;
    padding: 0 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.booking-inp input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.booking-inp-button {
    height: 45px;
    padding: 0 25px;
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-inp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    background: linear-gradient(45deg, #20c997, #17a2b8);
}

/* About Us section */
.aboutUs {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.aboutUs_icon {
    color: #007bff;
    font-size: 4rem;
    margin-bottom: 30px;
}

.aboutUs h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.aboutUs p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

#aboutUs_lorem {
    color: #007bff;
    font-weight: 700;
    font-size: 1.3em;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-item h3 {
    font-size: 3rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Featured Destinations */
.featured-destinations {
    padding: 100px 5%;
    background: white;
}

.featured-destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.featured-destinations p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destination-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.destination-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.destination-overlay p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ffd700;
    font-weight: 600;
}

.explore-btn {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.explore-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-2px);
}

/* Rooms section */
.rooms {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.roomsTitle {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.rooms > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.rooms_area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.one_room {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.one_room:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

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

.one_room:hover .r_image {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-detalis {
    padding: 25px;
}

.room-detalis h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

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

.rating-text {
    color: #666;
    font-size: 0.9rem;
}

.room-detalis h3 {
    color: #007bff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.room-detalis p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
}

.room-features i {
    color: #007bff;
}

.room-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-btn:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: translateY(-2px);
}

.rooms-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: linear-gradient(45deg, #0056b3, #004085);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.3);
}

/* Services Section */
.services {
    padding: 100px 5%;
    background: white;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.services p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Newsletter Subscription */
.subscrip {
    padding: 100px 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.sub-text {
    flex: 1;
    color: white;
}

.sub_logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 25px;
}

.sub_logo_text {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-align: center;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.sub-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.sub-area {
    flex: 1;
    color: white;
}

.sub-area > p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.sub-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sub-input {
    height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.sub-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.sub-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.sub-btn:hover {
    background: linear-gradient(45deg, #20c997, #17a2b8);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(32, 201, 151, 0.3);
}

.sub-benefits {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

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

/* Food section */
.food {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(./images/restaurant.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 5%;
}

.food-detaile {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.food-title-heading {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.food-detaile p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.food-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.food-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #333;
    font-weight: 500;
}

.food-feature i {
    color: #007bff;
    font-size: 1.3rem;
    width: 25px;
}

/* Premium section */
.premium {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.premium h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.premium > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pre-rooms {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.prem-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.pre-vimg {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prem-img:hover .pre-vimg {
    transform: scale(1.05);
}

.prem-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.proom-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.proom-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.prbox-head {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.premium-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.proom-box h3 {
    color: #007bff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.proom-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.premium-amenities {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.premium-amenities span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
}

.premium-amenities i {
    color: #007bff;
}

/* Gallery section */
.gallery {
    padding: 100px 5%;
    background: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.gallery-header p {
    font-size: 1.2rem;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gal-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
    padding: 40px 30px;
}

.rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 1.1rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

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

/* Footer section */
.footer {
    background: #1a1a1a;
    color: white;
}

.footer-content {
    padding: 80px 5% 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 25px;
}

.footer-info h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;
}

.footer-info p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 30px;
}

.plane-logo {
    font-size: 3rem;
    color: #007bff;
}

.footer-links h2,
.footer-services h2,
.footer-contact h2 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: #fff;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-services a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: #007bff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.pcontact {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.logo-1 {
    color: #007bff;
    font-size: 1.2rem;
    margin-top: 2px;
    min-width: 20px;
}

.pcontact div h3 {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 1rem;
}

.pcontact div span {
    color: #ccc;
    font-size: 0.9rem;
}

.social-media h3 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.media-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.logo-2 {
    color: #ccc;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.logo-2:hover {
    color: #007bff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 5%;
    text-align: center;
    color: #ccc;
}

.footer-bottom a {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .banner_header {
        padding: 0 3%;
    }
    
    .banner_detailse {
        padding: 140px 3% 50px;
    }
    
    .banner-detalies-booking {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pre-rooms {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        /* grid-template-columns: 1fr 1fr; */
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .banner_nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .banner-detalies-heading {
        font-size: 2.5rem;
    }
    
    .banner-detalies-booking {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .rooms_area {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .subscrip {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .sub-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .food {
        justify-content: center;
        text-align: center;
    }
    
    .food-detaile {
        max-width: 90%;
        padding: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .pcontact {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .banner-detalies-heading {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    .banner-detailse-btn {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .aboutUs {
        padding: 60px 3%;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .rooms {
        padding: 60px 3%;
    }
    
    .services {
        padding: 60px 3%;
    }
    
    .premium {
        padding: 60px 3%;
    }
    
    .gallery {
        padding: 60px 3%;
    }
    
    .testimonials {
        padding: 60px 3%;
    }
    
    .footer-content {
        padding: 60px 3% 30px;
    }
    
    .service-item {
        padding: 30px 20px;
    }
    
    .proom-box {
        padding: 25px;
    }
    
    .food-title-heading {
        font-size: 1.8rem;
    }
}

/* Utility classes */
.btn {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: "Poppins", sans-serif;
}

.btn:hover {
    transform: translateY(-2px);
}

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

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .banner_header,
    .mobile-menu-overlay,
    .banner-detalies-booking,
    .footer {
        display: none;
    }
    
    .banner {
        height: auto;
        background: none;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}