/* --- ELEGANT LUXURY HOTEL THEME --- */
:root {
 /* Primary Elegant Colors */
--primary-gold: #BFA66B;        /* #BFA66B Warm Dried Grass (Natural Gold) */
--primary-burgundy: #5C3A2E;    /* Earth Clay Brown */
--primary-navy: #2F4F4F;        /* Deep Moss Green (Dark Slate) */
--accent-cream: #EDE6DA;        /* Morning Fog Cream */
--accent-silver: #A0A59B;       /* Moss-Covered Rock */
--primary-charcoal: #1B365D;  
/* Background & Surface Colors */
--bg-ivory: #FFFFFF;            /* Foggy Morning Mist */
--bg-pearl: #EAEFE7;            /* Soft Pale Leaf */
--bg-charcoal: #3C3C3B;         /* Ashen Rock */
--bg-onyx: #1F1F1C;             /* Wet Soil Black */

/* Text Colors */
--text-charcoal: #1B365D;       /* Natural Shadow Text */
--text-navy: #32610f;           /* Forest Text */
--text-gold: #BFA66B;           /* Dried Grass Text */
--text-silver: #A0A59B;         /* Stone Grey Text */
--text-white: #FFFFFF;          /* Clean White Text */

/* Interactive Colors */
--button-gold: #BFA66B;         /* Warm Natural Gold */
--button-burgundy: #5C3A2E;     /* Clay Earth Button */
--button-navy: #2F4F4F;         /* Moss Slate Button */
--button-cream: #EDE6DA;        /* Fog Cream Button */

/* Hover & Active States */
--hover-gold: #9F8B58;          /* Muted Grass */
--hover-burgundy: #4B2F25;      /* Deeper Clay */
--hover-navy: #253F3F;          /* Dark Moss */
--hover-cream: #DAD2C4;         /* Shaded Mist */

/* Shadows & Borders */
--shadow-elegant: rgba(191, 166, 107, 0.1);     /* Golden Fog Shadow */
--shadow-deep: rgba(47, 79, 79, 0.15);          /* Mossy Depth Shadow */
--shadow-luxury: rgba(92, 58, 46, 0.2);         /* Clay Shadow */
--border-gold: #BFA66B;
--border-silver: #A0A59B;
--border-cream: #EDE6DA;

/* Gradients */
--gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, #ddc387 100%);
--gradient-burgundy: linear-gradient(135deg, var(--primary-burgundy) 0%, #7B5945 100%);
--gradient-navy: linear-gradient(135deg, var(--primary-navy) 0%, #486D6D 100%);
--gradient-luxury: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-burgundy) 50%, var(--primary-navy) 100%);

/* Transitions */
--transition-elegant: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
--transition-luxury: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  /* overflow-x: hidden; */
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 10px;
    height: 60px;
    /* overflow-x: hidden; */
    max-width: 100vw;
  }
  .nav-logo img {
    height: 40px;
    max-width: 110px;
  }
  .navbar, .nav-menu {
    max-width: 100vw;
    /* overflow-x: hidden; */
  }
  .nav-menu, .nav-menu * {
    box-sizing: border-box;
  }
}

body {
    /* font-family: 'Playfair Display', 'Georgia', serif; */
    line-height: 1.8;
    color: var(--text-charcoal);
    background: var(--bg-ivory);
    overflow-x: hidden;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #1B365D;
    backdrop-filter: blur(20px);
    z-index: 1002;
    transition: var(--transition-elegant);
    box-shadow: 0 4px 30px var(--shadow-elegant);
    border-bottom: 1px solid #1B365D;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    background-color:black;
}

.topbar-left {
    padding-left: 10px;
    color:var(--bg-ivory);
    font-weight: 400;

}

.topbar-right {
    padding-right: 30px;
    color:var(--bg-ivory);
    font-weight: 400;

}

.nav-logo img {
    height: 60px;
    width: auto;
    max-width: 210px;
    object-fit: contain;
    /* filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(86deg) brightness(118%) contrast(119%); */
    transition: var(--transition-elegant);
}

.nav-logo img:hover {
    /* filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(86deg) brightness(130%) contrast(119%); */
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    /* gap: 3rem; */
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 400;
    font-size: 1.1rem;
    transition: var(--transition-elegant);
    position: relative;
    padding: 10px 20px;
    border-radius: 25px;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    width: 30px;
    height: 3px;
    background: var(--text-white);
    margin: 4px 0;
    transition: var(--transition-elegant);
    border-radius: 2px;
}

/* Hamburger animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.4) 0%, rgba(139, 38, 53, 0.3) 50%, rgba(212, 175, 55, 0.2) 100%);
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    padding: 0 30px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s ease;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-silver);
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1.2s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.8s both;
}

/* Buttons */
.btn {
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: var(--transition-elegant);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--text-navy);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--primary-gold);
}

.btn-primary:hover {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(139, 38, 53, 0.4);
    border-color: var(--primary-burgundy);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-silver);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--gradient-navy);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 54, 93, 0.4);
    border-color: var(--primary-navy);
}

.btn-small {
    padding: 12px 30px;
    font-size: 1rem;
    background: var(--gradient-gold);
    color: var(--text-navy);
    border: 2px solid var(--primary-gold);
}

.btn-small:hover {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: translateY(-2px);
    border-color: var(--primary-burgundy);
}

/* Offers Section */
.offers {
    padding: 100px 0;
    background: var(--bg-pearl);
    position: relative;
}

.offers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--text-charcoal);
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-charcoal);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.offer-card {
    background: var(--bg-ivory);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-elegant);
    transition: var(--transition-elegant);
    border: 1px solid var(--border-cream);
    position: relative;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-luxury);
}

.offer-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-elegant);
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-content {
    padding: 2.5rem;
}

.offer-content h3 {
    color: var(--text-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.offer-price {
    display: block;
    color: var(--text-gold);
    font-weight: 600;
    font-size: 1.8rem;
    margin: 1.5rem 0;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-ivory);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-burgundy);
    opacity: 0.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-pearl);
    border-radius: 20px;
    transition: var(--transition-elegant);
    border: 1px solid var(--border-cream);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-burgundy);
    transform: scaleX(0);
    transition: var(--transition-elegant);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-deep);
}

.feature-item i {
    font-size: 3.5rem;
    color: var(--text-gold);
    margin-bottom: 1.5rem;
    transition: var(--transition-elegant);
}

.feature-item:hover i {
    color: var(--text-burgundy);
    transform: scale(1.1);
}

.feature-item h3 {
    color: var(--text-navy);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Rooms Preview Section */
.rooms-preview {
    padding: 100px 0;
    background: var(--bg-pearl);
    position: relative;
}

.rooms-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-navy);
    opacity: 0.3;
}

.rooms-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.room-preview-card {
    background: var(--bg-ivory);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-elegant);
    transition: var(--transition-elegant);
    border: 1px solid var(--border-cream);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.room-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-navy);
    z-index: 1;
}

.room-preview-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-luxury);
}

.room-preview-image {
    position: relative;
    height: 280px;
    /* overflow: hidden; */
}

.room-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-elegant);
}

.room-preview-card:hover .room-preview-image img {
    transform: scale(1.1);
}

.room-preview-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--text-navy);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.room-preview-content {
    padding: 2.5rem;
    background: var(--text-white);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-preview-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-navy);
    letter-spacing: 0.5px;
}

.room-preview-content p {
    color: var(--text-charcoal);
    line-height: 1.8;
    /* margin-bottom: 1.5rem; */
    flex-grow: 1;
    font-weight: 300;
}

.room-preview-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.room-preview-amenities span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-pearl);
    color: var(--text-charcoal);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    border: 1px solid var(--border-gold);
}

.room-preview-amenities i {
    color: var(--text-gold);
    font-size: 0.9rem;
}

.room-preview-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

.rooms-preview-button {
    text-align: center;
}

.rooms-preview-button .btn-secondary {
    background:white;
    color: var(--text-navy);
    border: 2px solid var(--text-navy);
    font-size: 1.2rem;
    padding: 18px 45px;
    letter-spacing: 1px;
}

.rooms-preview-button .btn-secondary:hover {
    background: var(--text-navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Rooms Page */
.rooms {
    padding: 80px 0;
    background: #f8f9fa;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.room-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.05);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.room-amenities {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.room-amenities span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.room-features {
    list-style: none;
    margin: 1rem 0;
}

.room-features li {
    padding: 5px 0;
    color: #666;
}

.room-features i {
    color: var(--accent-brown);
    margin-right: 10px;
    width: 20px;
}

/* Activities Page */
.activities {
    padding: 80px 0;
    background: #f8f9fa;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
}

.activity-image {
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-content {
    padding: 2rem;
}

.activity-content h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.activity-details span i {
    margin-bottom: 0rem!important;
}
.activity-features li i {
    margin-bottom: 0rem!important;
}
.activity-details {
    display: flex;
    gap: 1rem;
    /* margin: 1rem 0; */
    flex-wrap: wrap;
}

.activity-details span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #666;
}

.activity-features {
    list-style: none;
    margin: 1rem 0;
}

.activity-features li {
    padding: 5px 0;
    color: #666;
}

/* Calendar Section */
.calendar-section {
    padding: 80px 0;
    background: white;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    background: #3498db;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.calendar-nav {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.calendar-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.calendar-grid {
    padding: 1rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 1rem;
}

.calendar-days div {
    text-align: center;
    font-weight: 600;
    color: #666;
    padding: 10px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    position: relative;
}

.calendar-date:hover {
    background: #f8f9fa;
}

.calendar-date.has-activity {
    background: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.calendar-legend {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-color.spa { background: #e91e63; }
.legend-color.water { background: #2196f3; }
.legend-color.golf { background: #4caf50; }
.legend-color.cooking { background: #ff9800; }

/* Contact Page */
.contact {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

.social-media {
    margin-top: 2rem;
}

.social-media h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }

/* Map Section */
.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

.map-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.transport-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.transport-item i {
    color: #3498db;
    font-size: 1.5rem;
    margin-top: 5px;
}

.transport-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.transport-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    font-size: 1.1rem;
}

.faq-question i {
    color: #3498db;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Enhanced Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Gallery Filters */
.gallery-filters {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #3498db;
    background: transparent;
    color: #3498db;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.filter-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.filter-btn:hover i,
.filter-btn.active i {
    transform: scale(1.2);
}

/* Enhanced Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    transform: scale(0.9);
    opacity: 1;
    animation: galleryItemAppear 0.8s ease-out forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1.0s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }

.gallery-item:hover {
    transform: scale(1.05) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.9);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Enhanced Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(41, 128, 185, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: searchPulse 2s infinite;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Gallery Badge */
.gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(52, 152, 219, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-badge {
    transform: translateX(0);
    opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.lightbox-info {
    text-align: center;
    color: white;
    max-width: 600px;
}

.lightbox-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #3498db;
}

.lightbox-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.lightbox-navigation {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    background: rgba(52, 152, 219, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(52, 152, 219, 1);
    transform: scale(1.1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
    z-index: 4000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: #27ae60;
}

.notification-error {
    background: #e74c3c;
}

.notification-info {
    background: #3498db;
}

/* Enhanced Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid #3498db;
    color: #3498db;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
    .top-container {
        display:none;
    }
  }
  
  /* Small devices (phones landscape, ≥576px) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    .top-container {
        display:none;
    }
  }
  
  /* Medium devices (tablets, ≥768px) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .top-container {
        display:none;
    }
  }

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        gap: 15px;
    }

    .lightbox-info h3 {
        font-size: 1.5rem;
    }

    .lightbox-info p {
        font-size: 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }

    .lightbox-navigation {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .lightbox-info h3 {
        font-size: 1.2rem;
    }

    .lightbox-info p {
        font-size: 0.9rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .lightbox-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* About Page */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background: white;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-text h2 {
    color: #2c3e50;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 3rem;
    color: var(--text-charcoal);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0rem;
    background: var(--bg-pearl);
    border-radius: 18px;
    box-shadow: 0 8px 32px var(--shadow-elegant);
    border: 1.5px solid var(--border-cream);
    margin: 0 0.5rem;
    transition: var(--transition-elegant);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-navy);
    border-radius: 2px 2px 0 0;
    opacity: 0.7;
    transition: var(--transition-elegant);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px var(--shadow-deep);
    border-color: var(--primary-navy);
    background: var(--bg-ivory);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(27, 54, 93, 0.08);
    letter-spacing: 1px;
    transition: color 0.3s;
}

.stat-item:hover .stat-number {
    color: var(--primary-gold);
}

.stat-label {
    color: var(--text-charcoal);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-weight: 400;
    opacity: 0.85;
    transition: color 0.3s;
}

@media (max-width: 768px) {
    .stat-item {
        padding: 1.5rem 1rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.team-info .position {
    color: #3498db;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-info p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    color: #666;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #3498db;
    font-size: 0.9rem;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background: #f8f9fa;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: translateY(-5px);
}

.award-item i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.award-item h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.close:hover {
    color: #333;
}

.modal-content h2 {
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.total-price {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
}

.total-price h3 {
    color: #2c3e50;
    margin: 0;
}

#total-price {
    color: #3498db;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--bg-charcoal);
    color: var(--text-white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-luxury);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
/* Extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
    .footer-content {
      
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
  }
  
  /* Small devices (phones landscape, ≥576px) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    .footer-content {
      
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
  }
  
  /* Medium devices (tablets, ≥768px) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .footer-content {
      
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
    }
  }
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--text-gold);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--text-silver);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-silver);
    text-decoration: none;
    transition: var(--transition-elegant);
    font-weight: 300;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 0;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition-elegant);
    color: var(--text-gold);
}

.footer-section ul li a:hover {
    color: var(--text-gold);
    padding-left: 20px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.footer-section .social-links {
    display: flex;
    gap: 1.5rem;
}

.footer-section .social-links a {
    color: var(--text-silver);
    font-size: 1.8rem;
    transition: var(--transition-elegant);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid transparent;
}

.footer-section .social-links a:hover {
    color: var(--text-gold);
    border-color: var(--text-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.newsletter-form {
    /* display: flex; */
    gap: 15px;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-silver);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition-elegant);
    backdrop-filter: blur(10px);
    width: 100%;
}

.newsletter-form input::placeholder {
    color: var(--text-silver);
    font-weight: 300;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--text-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.newsletter-form button {
    padding: 15px 25px;
    background: none;
    color: var(--text-navy);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-elegant);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 15px;
    width: 100%;
    border: 1px solid var(--text-navy);
}

.newsletter-form button:hover {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 38, 53, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(192, 192, 192, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-silver);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--text-charcoal);
        width: 60%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-item {
        /* margin: 1rem 0; */
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        /* padding: 1rem 2rem; */
        display: block;
        color: var(--text-white);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu .nav-link:hover {
        background-color: rgba(212, 175, 55, 0.1);
        color: var(--primary-gold);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .offers-grid,
    .rooms-grid,
    .activities-grid,
    .rooms-preview-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
       overflow: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .calendar-days div,
    .calendar-date {
        font-size: 0.9rem;
        padding: 5px;
    }
}

/* About Universal Green Hills Section - Modern Design */
.about-universal {
    padding: 20px 0 20px 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 60%, rgba(253, 253, 253, 0.85) 100%),
        url('../images/background/bg10.png') right center/40% no-repeat;
    /* position: relative; */
    overflow: hidden;
}

@media (max-width: 1024px) {
    .about-universal {
        background: 
            linear-gradient(135deg, rgba(248,248,255,0.85) 60%, rgba(255,255,240,0.85) 100%),
            url('../images/background/bg10.png') right center/90% no-repeat;
    }
}
@media (max-width: 768px) {
    .about-universal {
        background: 
            linear-gradient(135deg, rgba(248,248,255,0.85) 60%, rgba(255,255,240,0.85) 100%),
            url('../images/background/bg10.png') right center/120% no-repeat;
    }
}
.about-universal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(212,175,55,0.08) 0%, rgba(139,38,53,0.07) 100%);
    z-index: 1;
    pointer-events: none;
}
.about-universal-header {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}
.about-universal-logo img {
    height: 90px;
    width: auto;
    /* margin-bottom: 2rem; */
    filter: drop-shadow(0 8px 24px rgba(212,175,55,0.15));
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}
.about-universal-logo img:hover {
    transform: scale(1.08) rotate(-4deg);
    filter: drop-shadow(0 16px 32px rgba(139,38,53,0.18));
}
.about-universal-title {
    font-size: 2rem;
    color: var(--text-navy);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(212,175,55,0.08);
}
.about-universal-subtitle {
    font-size: 1.3rem;
    color: var(--text-charcoal);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 4px rgba(139,38,53,0.08);
}
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--text-charcoal);
    color: var(--text-white);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(212,175,55,0.10);
}
.location-badge i {
    color: var(--text-navy);
}
.about-universal-main {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 3rem;
}

.about-universal-image {
    position: absolute;
    left: -120px;
    top: 50px;
    bottom: 0;
    /* width: 180px; */
    /* height: 100%; */
    /* display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0; */
}

.about-universal-image img {
    /* width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: none; */
}

.about-universal-text {
    margin: 0 auto;
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(46, 139, 87, 0.13), 0 1.5px 8px rgba(27, 54, 93, 0.07);
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 700px;
}

@media (max-width: 1024px) {
    .about-universal-main {
        flex-direction: column;
        align-items: center;
    }
    .about-universal-image {
        position: static;
        width: 140px;
        height: auto;
        margin-bottom: 1.5rem;
        display: none;
    }
    .about-universal-image img {
        height: auto;
        max-height: 180px;
    }
    .about-universal-text {
        margin: 0 auto;
        padding: 2rem 1rem;
        max-width: 90%;
    }
}
@media (max-width: 768px) {
    .about-universal-image {
        width: 120px;
        display: none;
    }
    .about-universal-image img {
        max-height: 120px;
    }
    .about-universal-text {
        padding: 1.5rem 0.8rem;
        max-width: 98%;
    }
}
@media (max-width: 480px) {
    .about-universal-image {
        width: 120px;
        display: none;
    }
    .about-universal-image img {
        max-height: 120px;
    }
    .about-universal-text {
        padding: 1rem 0.3rem;
        max-width: 100%;
    }
}

.about-universal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    z-index: 2;
    position: relative;
}
.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.8);
    border-radius: 18px;
    box-shadow: 0 4px 18px rgba(212,175,55,0.08);
    border: 1.5px solid var(--border-cream);
    transition: transform 0.4s, box-shadow 0.4s;
    margin-bottom: 1rem;
    position: relative;
}
.feature-highlight:hover {
    transform: translateY(-8px) scale(1.03) rotate(-2deg);
    box-shadow: 0 12px 32px rgba(139,38,53,0.13);
    border-color: var(--primary-gold);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--text-navy);
    box-shadow: 0 4px 16px rgba(212,175,55,0.10);
    transition: background 0.4s, color 0.4s, transform 0.4s;
}
.feature-highlight:hover .feature-icon {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: scale(1.12) rotate(8deg);
}
.feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-navy);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.feature-content p {
    color: var(--text-charcoal);
    font-weight: 300;
    letter-spacing: 0.3px;
    font-size: 1rem;
}
@media (max-width: 1024px) {
    .about-universal-main {
        flex-direction: column;
        gap: 2rem;
    }
    .about-universal-image-grid {
        height: 300px;
    }
    .about-universal-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .about-universal {
        padding: 70px 0 60px 0;
    }
    .about-universal-header {
        margin-bottom: 2rem;
    }
    .about-universal-main {
        gap: 1.5rem;
    }
    .about-universal-text {
        padding: 1.5rem 1rem;
    }
    .about-universal-image-grid {
        height: 180px;
        gap: 0.5rem;
    }
    .about-universal-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    .feature-highlight {
        padding: 1.2rem 0.8rem;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
@media (max-width: 480px) {
    .about-universal {
        padding: 40px 0 30px 0;
    }
    .about-universal-title {
        font-size: 1.5rem;
    }
    .about-universal-heading {
        font-size: 1.1rem;
    }
    .about-universal-text {
        padding: 1rem 0.5rem;
    }
    .about-universal-image-grid {
        height: 100px;
    }
    .feature-highlight {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Best Services Section */
.best-services {
    padding: 80px 0;
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-charcoal);
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.about-universal-logo {
    /* margin-bottom: 1rem; */
    text-align: center;
    opacity: 0;
    transform: translateY(100vh);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.about-universal-logo.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-universal-logo img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    /* filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(86deg) brightness(118%) contrast(119%); */
    transition: filter 0.3s ease;
    animation: logoFloat 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-content {
        padding: 1.2rem;
    }
    
    .service-content i {
        font-size: 2rem;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content .activity-details {
        gap: 0.5rem;
    }
    
    .service-content .activity-details span {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .service-content .activity-features li {
        font-size: 0.85rem;
        padding: 6px 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-content i {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
    }
    
    .service-content .activity-details {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .service-content .activity-details span {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .service-content .activity-features li {
        font-size: 0.8rem;
        padding: 4px 0;
    }
}

.service-content .activity-details span {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #495057;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.service-content .activity-details span:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e9ecef, #dee2e6);
}

.service-content .activity-details span i {
    font-size: 0.9rem;
    color: var(--primary-green);
    display: inline-block;
    vertical-align: middle;
}

/* Enhanced activity-features for best-services */
.service-content .activity-features {
    list-style: none;
    margin: 1rem 0 0 0;
    padding: 0;
}

.service-content .activity-features li {
    padding: 6px 0;
    color: #555;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.service-content .activity-features li:last-child {
    border-bottom: none;
}

.service-content .activity-features li:hover {
    color: var(--primary-green);
    transform: translateX(3px);
}

.service-content .activity-features li i {
    color: var(--primary-green);
    font-size: 0.75rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

/* --- ENHANCED ROOMS PAGE STYLES --- */

/* Page Header Enhancements */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/background/bg3.png') center/cover;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.page-header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.page-header-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.page-header-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.page-header-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.page-header-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Room Cards */
.rooms {
    padding: 80px 0;
    background: var(--bg-cream);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.8s ease both;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.room-card:nth-child(1) { animation-delay: 0.1s; }
.room-card:nth-child(2) { animation-delay: 0.2s; }
.room-card:nth-child(3) { animation-delay: 0.3s; }
.room-card:nth-child(4) { animation-delay: 0.4s; }
.room-card:nth-child(5) { animation-delay: 0.5s; }

.room-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

.room-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--button-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.room-badge.premium {
    background: linear-gradient(45deg, #FFD700, #FFA500);
}

.room-badge.luxury {
    background: linear-gradient(45deg, #C0C0C0, #FFD700);
}

.room-badge.family {
    background: linear-gradient(45deg, #87CEEB, #98FB98);
}

.room-badge.romantic {
    background: linear-gradient(45deg, #FF69B4, #FFB6C1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46,139,87,0.8), rgba(135,206,235,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.room-content {
    padding: 2rem;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.room-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin: 0;
}

.room-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.room-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.room-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.room-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.room-amenities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.amenity-item {
    background: var(--bg-cream);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.amenity-item i {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.amenity-item:hover i {
    color: white;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.feature-item {
    /* display: flex; */
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--primary-green);
    color: white;
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.feature-item:hover i {
    color: white;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.room-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.room-actions .btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.room-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Room Comparison Section */
.room-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1fr);
    background: var(--primary-green);
    color: white;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1fr);
    border-bottom: 1px solid #eee;
}

.comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.comparison-cell {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.comparison-header .comparison-cell {
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-cell i.fa-check {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.comparison-cell i.fa-times {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .page-header-stats {
        gap: 2rem;
    }
    
    .page-header-stats .stat-item {
        padding: 1rem;
    }
    
    .page-header-stats .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .page-header-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .page-header-stats .stat-item {
        width: 200px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .room-card {
        margin: 0 1rem;
    }
    
    .room-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .room-amenities {
        justify-content: center;
    }
    
    .room-features {
        grid-template-columns: 1fr;
    }
    
    .room-actions {
        flex-direction: column;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-header,
    .comparison-row {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .room-content {
        padding: 1.5rem;
    }
    
    .room-header h3 {
        font-size: 1.5rem;
    }
    
    .room-amenities {
        flex-direction: column;
        align-items: center;
    }
    
    .amenity-item {
        width: 100%;
        justify-content: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .comparison-header,
    .comparison-row {
        min-width: 500px;
    }
    
    .comparison-cell {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Enhanced Modal Styles */
.modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    background: white;
    padding: 2.5rem;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.total-price {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--primary-green);
}

.total-price h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 0;
}

#total-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
}

/* Loading Animation */
.room-card.loading {
    position: relative;
    overflow: hidden;
}

.room-card.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Room Details Modal Styles */
.room-details-content {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.room-details-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-green);
}

.room-details-header h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.room-details-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
}

.room-details-rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

.room-details-rating span {
    color: var(--text-light);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.room-details-gallery {
    margin-bottom: 2rem;
}

.room-details-gallery .main-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.room-details-gallery .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.room-details-gallery .main-image:hover img {
    transform: scale(1.05);
}

.room-details-info {
    display: grid;
    gap: 2rem;
}

.room-details-description {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: var(--bg-cream);
    border-radius: 15px;
    border-left: 4px solid var(--primary-green);
}

.room-details-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.room-details-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.room-details-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary-green);
}

.room-details-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Enhanced Modal Animation */
.modal-content.animate-in {
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design for Room Details Modal */
@media (max-width: 768px) {
    .room-details-content {
        width: 98%;
        padding: 1.5rem;
    }
    
    .room-details-header h2 {
        font-size: 2rem;
    }
    
    .room-details-gallery .main-image {
        height: 250px;
    }
    
    .room-details-features {
        grid-template-columns: 1fr;
    }
    
    .room-details-amenities {
        flex-direction: column;
        align-items: center;
    }
    
    .room-details-actions .btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .room-details-header h2 {
        font-size: 1.8rem;
    }
    
    .room-details-gallery .main-image {
        height: 200px;
    }
    
    .room-details-description {
        font-size: 1rem;
        padding: 1rem;
    }
}

/* --- ROOMS PAGE SPECIFIC STYLES (UNIQUE CLASSES) --- */

/* Rooms Page Header */
.rooms-page-header {
    background: var(--bg-charcoal);
    color: var(--text-white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rooms-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7); /* dark overlay like hero-ultimate-video-mask */
    z-index: 1;
}

.rooms-page-header-content {
    position: relative;
    z-index: 2;
}

.rooms-page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: roomsFadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: var(--text-gold);
}

.rooms-page-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: roomsFadeInUp 1s ease 0.2s both;
    color: var(--text-white);
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

.rooms-page-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: roomsFadeInUp 1s ease 0.4s both;
}

.rooms-page-stats .rooms-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.3s ease;
    color: var(--text-white);
}

.rooms-page-stats .rooms-stat-item:hover {
    transform: translateY(-5px);
    background: rgba(46,139,87,0.13);
    box-shadow: 0 10px 30px var(--shadow-mountain);
}

.rooms-page-stats .rooms-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-gold);
}

.rooms-page-stats .rooms-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-white);
}

/* Enhanced Room Cards */
.rooms-section {
    padding: 80px 0;
    background: var(--bg-mountain);
}

.rooms-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rooms-card {
    background: var(--bg-cream);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-mountain);
    transition: all 0.4s ease;
    position: relative;
    animation: roomsCardFadeIn 0.8s ease both;
    max-width: 450px;
    margin: 0 auto;
}

.rooms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.rooms-card:nth-child(1) { animation-delay: 0.1s; }
.rooms-card:nth-child(2) { animation-delay: 0.2s; }
.rooms-card:nth-child(3) { animation-delay: 0.3s; }
.rooms-card:nth-child(4) { animation-delay: 0.4s; }
.rooms-card:nth-child(5) { animation-delay: 0.5s; }

.rooms-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.rooms-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    max-width: 100%;
    max-height: 100%;
}

.rooms-card:hover .rooms-card-image img {
    transform: scale(1.05);
}

/* Responsive image sizing */
@media (max-width: 1024px) {
    .rooms-card-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .rooms-card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .rooms-card-image {
        height: 180px;
    }
}

.rooms-price-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: roomsPulse 2s infinite;
}

.rooms-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--button-orange);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rooms-badge.premium {
    background: var(--gradient-sunset);
}

.rooms-badge.luxury {
    background: linear-gradient(45deg, var(--border-blue), var(--button-orange));
}

.rooms-badge.family {
    background: linear-gradient(45deg, var(--secondary-blue), #98fb98);
}

.rooms-badge.romantic {
    background: linear-gradient(45deg, var(--accent-pink), #ffb6c1);
}

.rooms-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(46,139,87,0.85), rgba(70,130,180,0.85));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rooms-card:hover .rooms-overlay {
    opacity: 1;
}

.rooms-overlay-content {
    text-align: center;
    color: white;
}

.rooms-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.rooms-overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
}

.rooms-card-content {
    padding: 2rem;
    background-image: url('../images/background/bg3.png'), var(--gradient-mountain);
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
}

.rooms-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.rooms-card-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-charcoal);
    margin: 0;
}

.rooms-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.rooms-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.rooms-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.rooms-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.rooms-amenities-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 1.5rem;
}

.rooms-amenity-item {
    background: #D5F7BF;
    padding: 1px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--text-charcoal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--text-navy);
}

.rooms-amenity-item:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

.rooms-amenity-item i {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.rooms-amenity-item:hover i {
    color: white;
}

.rooms-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.rooms-feature-item {
    background: var(--bg-pearl);
    color: var(--text-navy);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px var(--shadow-elegant);
    border: 1px solid var(--border-gold);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.rooms-feature-item:hover {
    background: var(--gradient-gold);
    color: var(--text-white);
    box-shadow: 0 8px 24px var(--shadow-luxury);
    border-color: var(--primary-gold);
}
.rooms-feature-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    transition: color 0.3s ease;
    min-width: 20px;
}
.rooms-feature-item:hover i {
    color: var(--text-white);
}

.rooms-feature-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

.rooms-actions-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rooms-actions-container .btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 12px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.rooms-actions-container .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Room Comparison Section */
.rooms-comparison-section {
    padding: 80px 0;
    background: white;
}

.rooms-comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.rooms-comparison-header {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1fr);
    background: var(--bg-sky);
    color: var(--bg-charcoal);
}

.rooms-comparison-row {
    display: grid;
    grid-template-columns: 1fr repeat(5, 1fr);
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.rooms-comparison-row:hover {
    background: #f0f8ff;
    transform: scale(1.01);
}

.rooms-comparison-row:nth-child(even) {
    background: #f8f9fa;
}

.rooms-comparison-cell {
    padding: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border: 1px solid var(--border-blue);
}

.rooms-comparison-header .rooms-comparison-cell {
    font-weight: 600;
    font-size: 1.1rem;
}

.rooms-comparison-cell i.fa-check {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.rooms-comparison-cell i.fa-times {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Rooms Page Specific Animations */
@keyframes roomsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes roomsFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes roomsFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes roomsCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Modal Styles for Rooms Page */
.rooms-modal-content {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 20px;
    background: var(--bg-cream);
    border: 1px solid var(--border-green);
    padding: 2.5rem;
    position: relative;
    animation: roomsModalSlideIn 0.3s ease;
}

.rooms-modal-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.rooms-form-group {
    margin-bottom: 1.5rem;
}

.rooms-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-charcoal);
}

.rooms-form-group input,
.rooms-form-group select,
.rooms-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-green);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-sky);
    color: var(--text-mountain);
}

.rooms-form-group input:focus,
.rooms-form-group select:focus,
.rooms-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: white;
    box-shadow: 0 0 0 2px var(--shadow-mountain);
}

.rooms-total-price {
    background: var(--bg-cream);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 2rem 0;
    border: 2px solid var(--primary-green);
}

.rooms-total-price h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 0;
}

#rooms-total-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 2rem;
}

@keyframes roomsModalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile Responsiveness for Rooms Page */
@media (max-width: 1024px) {
    .rooms-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .rooms-page-stats {
        gap: 2rem;
    }
    
    .rooms-page-stats .rooms-stat-item {
        padding: 1rem;
    }
    
    .rooms-page-stats .rooms-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .rooms-page-title {
        font-size: 2.5rem;
    }
    
    .rooms-page-subtitle {
        font-size: 1.1rem;
    }
    
    .rooms-page-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .rooms-page-stats .rooms-stat-item {
        width: 200px;
    }
    
    .rooms-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rooms-card {
        margin: 0 1rem;
    }
    
    .rooms-card-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .rooms-amenities-container {
        justify-content: center;
    }
    
    .rooms-features-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-actions-container {
        flex-direction: column;
    }
    
    .rooms-comparison-table {
        overflow-x: auto;
    }
    
    .rooms-comparison-header,
    .rooms-comparison-row {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .rooms-page-title {
        font-size: 2rem;
    }
    
    .rooms-page-subtitle {
        font-size: 1rem;
    }
    
    .rooms-card-content {
        padding: 1.5rem;
    }
    
    .rooms-card-header h3 {
        font-size: 1.5rem;
    }
    
    .rooms-amenities-container {
        flex-direction: column;
        align-items: center;
    }
    
    .rooms-amenity-item {
        width: 100%;
        justify-content: center;
    }
    
    .rooms-feature-item {
        justify-content: center;
    }
    
    .rooms-comparison-header,
    .rooms-comparison-row {
        min-width: 500px;
    }
    
    .rooms-comparison-cell {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* ===== BEST SERVICES SECTION - NEW DESIGN ===== */
.bservice-section {
    padding: 100px 0;
    background: var(--bg-pearl);
    position: relative;
    overflow: hidden;
}

.bservice-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-burgundy);
    opacity: 0.3;
}

.bservice-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.bservice-title {
    font-size: 3rem;
    color: var(--text-navy);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.bservice-subtitle {
    font-size: 1.3rem;
    color: var(--text-charcoal);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.bservice-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.bservice-line {
    width: 100px;
    height: 2px;
    background: var(--gradient-burgundy);
    border-radius: 1px;
}

.bservice-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-navy);
    margin-bottom: 1.5rem;
    transition: var(--transition-elegant);
}

.bservice-card:hover .bservice-icon {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: scale(1.1);
}

.bservice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.bservice-activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Modern Service Card Styles - Similar to Room Cards */
.modern-service-card {
    background: var(--bg-ivory);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-elegant);
    transition: var(--transition-elegant);
    border: 1px solid var(--border-cream);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.modern-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-navy);
    z-index: 1;
}

.modern-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-luxury);
}

.bservice-card {
    background: var(--bg-ivory);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-elegant);
    transition: var(--transition-elegant);
    border: 1px solid var(--border-cream);
    position: relative;
    transform: translateY(0);
}

.bservice-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px var(--shadow-luxury);
}

.bservice-card:nth-child(1) { animation-delay: 0.1s; }
.bservice-card:nth-child(2) { animation-delay: 0.2s; }
.bservice-card:nth-child(3) { animation-delay: 0.3s; }
.bservice-card:nth-child(4) { animation-delay: 0.4s; }
.bservice-card:nth-child(5) { animation-delay: 0.5s; }
.bservice-card:nth-child(6) { animation-delay: 0.6s; }
.bservice-card:nth-child(7) { animation-delay: 0.7s; }
.bservice-card:nth-child(8) { animation-delay: 0.8s; }

.bservice-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.bservice-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bservice-card:hover .bservice-card-image img {
    transform: scale(1.1);
}

/* Service Badge Styles - Similar to Room Badges */
.bservice-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.bservice-badge.two-col-badge {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    justify-content: stretch;
    top: auto;
}
.bservice-badge.two-col-badge .badge-left,
.bservice-badge.two-col-badge .badge-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    min-width: 0;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: none;
    transition: var(--transition-elegant);
}
.bservice-badge.two-col-badge .badge-left {
    background: var(--gradient-gold);
    color: var(--text-navy);
    /* border-bottom-left-radius: 18px; */
}
.bservice-badge.two-col-badge .badge-right {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    /* border-bottom-right-radius: 18px; */
}

.bservice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.8), rgba(135, 206, 235, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bservice-card:hover .bservice-overlay {
    opacity: 1;
}

.bservice-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.bservice-card:hover .bservice-overlay-content {
    transform: translateY(0);
}

.bservice-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.bservice-overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bservice-card-content {
    padding: 2.5rem;
    position: relative;
    background: var(--bg-ivory);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bservice-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-navy);
    margin-bottom: 1.5rem;
    transition: var(--transition-elegant);
}

.bservice-card:hover .bservice-icon-wrapper {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: scale(1.1);
}

.bservice-card-title {
    font-size: 1.8rem;
    color: var(--text-navy);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bservice-card-description {
    color: var(--text-charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    flex-grow: 1;
}

/* Service Amenities Container - Similar to Room Amenities */
.bservice-amenities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.bservice-amenity-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-pearl);
    color: var(--text-charcoal);
    padding: 1px 6px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    border: 1px solid var(--border-gold);
    transition: var(--transition-elegant);
}

.bservice-amenity-item:hover {
    background: var(--gradient-gold);
    color: var(--text-navy);
    transform: translateY(-2px);
}

.bservice-amenity-item i {
    color: var(--text-gold);
    font-size: 0.9rem;
}

.bservice-amenity-item:hover i {
    color: var(--text-navy);
}

/* Service Feature Item - Container for icon and text */
.bservice-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.bservice-feature-item:hover {
    transform: translateY(-2px);
}

/* Service Feature Icon Box - Similar to Room Feature Icons */
.bservice-feature-icon-box {
    /* display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-pearl);
    border-radius: 50%;
    color: var(--text-charcoal);
    font-size: 1rem;
    transition: var(--transition-elegant);
    border: 1px solid var(--border-cream);
    cursor: pointer; */
}

.bservice-feature-icon-box:hover {
    background: var(--gradient-gold);
    color: var(--text-navy);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Service Feature Text - Label below icon */
.bservice-feature-text {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-charcoal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    max-width: 60px;
    text-align: center;
}

/* Service Actions - Similar to Room Actions */
.bservice-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-cream);
}

.bservice-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-navy);
    color: var(--text-white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-elegant);
    box-shadow: 0 5px 15px rgba(47, 79, 79, 0.3);
}

.bservice-btn:hover {
    background: var(--gradient-gold);
    color: var(--text-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.bservice-btn i {
    font-size: 0.8rem;
    transition: var(--transition-elegant);
}

.bservice-btn:hover i {
    transform: translateX(3px);
}

/* Service Package - Similar to Room Package */
.bservice-package {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.bservice-package span {
    font-size: 0.8rem;
    color: var(--text-charcoal);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.bservice-package-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-navy);
    letter-spacing: 0.5px;
    transition: var(--transition-elegant);
}

.bservice-package-name:hover {
    color: var(--text-gold);
    transform: scale(1.05);
}

.bservice-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bservice-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-charcoal);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.bservice-detail-item i {
    color: var(--text-gold);
    font-size: 1.1rem;
}

.bservice-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.bservice-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-charcoal);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.bservice-feature i {
    color: var(--text-gold);
    font-size: 1.1rem;
}

/* ===== HERO ULTIMATE SECTION ===== */
.hero-ultimate-section {
    height: 110vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
    background: var(--bg-charcoal);
    padding-top: 100px; /* Increased for more space below navbar */
}

@media (max-width: 768px) {
    .hero-ultimate-section {
        padding-top: 70px; /* Slightly less on mobile if navbar is smaller */
    }
}

.hero-ultimate-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-ultimate-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-ultimate-video-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-ultimate-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hero-ultimate-floating-circle {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: heroUltimateFloat 6s ease-in-out infinite;
}

.hero-ultimate-floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-ultimate-floating-circle:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-ultimate-floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.hero-ultimate-floating-square {
    position: absolute;
    border: 2px solid rgba(139, 38, 53, 0.3);
    animation: heroUltimateFloat 8s ease-in-out infinite reverse;
}

.hero-ultimate-floating-square:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 25%;
    transform: rotate(45deg);
    animation-delay: 1s;
}

.hero-ultimate-floating-square:nth-child(5) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 10%;
    transform: rotate(45deg);
    animation-delay: 3s;
}

@keyframes heroUltimateFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-ultimate-content-wrapper {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    padding: 0 30px;
    width: 100%;
}

.hero-ultimate-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-ultimate-main-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10; /* Ensure above video and mask */
}

.hero-ultimate-title-line {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-ultimate-title-word {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-white);
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    transition: var(--transition-elegant);
    position: relative;
    cursor: pointer;
}

.hero-ultimate-title-word::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    transition: width 0.6s ease;
    border-radius: 2px;
}

.hero-ultimate-title-word:hover::before {
    width: 100%;
}

.hero-ultimate-title-line:nth-child(2) .hero-ultimate-title-word:last-child {
    color: var(--text-gold);
    font-weight: 400;
}

@keyframes heroUltimateLogoFadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroUltimateTitleFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ultimate-subtitle-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* margin-bottom: 3rem; */
}

.hero-ultimate-subtitle-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.hero-ultimate-subtitle {
    font-size: 1.8rem;
    color: var(--text-white);
    font-weight: 300;
    letter-spacing: 5px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
    /* max-width: 600px; */
    line-height: 1.6;
    margin-top: 20px;
}

@keyframes heroUltimateSubtitleFadeIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-ultimate-features-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

@keyframes heroUltimateFeaturesFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ultimate-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-elegant);
}

.hero-ultimate-feature:hover {
    transform: translateY(-10px);
}

.hero-ultimate-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--text-charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: var(--transition-elegant);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.hero-ultimate-feature:hover .hero-ultimate-feature-icon {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 38, 53, 0.4);
}

.hero-ultimate-feature-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-ultimate-feature-number {
    font-size: 2rem;
    color: var(--text-gold);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-ultimate-feature-label {
    font-size: 1rem;
    color: var(--text-silver);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-ultimate-action-section {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

@keyframes heroUltimateActionsFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ultimate-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition-elegant);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-ultimate-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.hero-ultimate-btn-primary {
    background: var(--primary-charcoal);
    color: var(--text-white);
    /* box-shadow: 0 10px 30px rgba(55, 212, 76, 0.4); */
    border: 1px solid var(--primary-gold);
}

.hero-ultimate-btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-burgundy);
    opacity: 0;
    transition: var(--transition-elegant);
    border-radius: 50px;
}

.hero-ultimate-btn-primary:hover .hero-ultimate-btn-glow {
    opacity: 1;
}

.hero-ultimate-btn-primary:hover {
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 38, 53, 0.5);
    border-color: var(--primary-burgundy);
}

.hero-ultimate-btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--border-silver);
    backdrop-filter: blur(10px);
}

.hero-ultimate-btn-secondary:hover {
    background: var(--gradient-navy);
    color: var(--text-white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(27, 54, 93, 0.5);
    border-color: var(--primary-navy);
}

.hero-ultimate-btn-icon {
    font-size: 1.2rem;
    transition: var(--transition-elegant);
}

.hero-ultimate-btn:hover .hero-ultimate-btn-icon {
    transform: translateX(5px);
}

.hero-ultimate-btn-secondary:hover .hero-ultimate-btn-icon {
    transform: translateX(5px);
}

.hero-ultimate-scroll-section {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@keyframes heroUltimateScrollFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-ultimate-scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--text-gold), transparent);
    border-radius: 1px;
    animation: heroUltimateScrollLine 2s ease-in-out infinite;
}

@keyframes heroUltimateScrollLine {
    0%, 100% { height: 60px; opacity: 1; }
    50% { height: 80px; opacity: 0.7; }
}

.hero-ultimate-scroll-text {
    font-size: 0.9rem;
    color: var(--text-silver);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-ultimate-scroll-arrow {
    font-size: 1.2rem;
    color: var(--text-gold);
    animation: heroUltimateScrollArrow 2s ease-in-out infinite;
}

@keyframes heroUltimateScrollArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.hero-ultimate-side-decoration {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-ultimate-side-line {
    width: 2px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.hero-ultimate-side-dots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-ultimate-dot {
    width: 8px;
    height: 8px;
    background: var(--text-gold);
    border-radius: 50%;
    animation: heroUltimateDotPulse 2s ease-in-out infinite;
}

.hero-ultimate-dot:nth-child(1) { animation-delay: 0s; }
.hero-ultimate-dot:nth-child(2) { animation-delay: 0.5s; }
.hero-ultimate-dot:nth-child(3) { animation-delay: 1s; }

@keyframes heroUltimateDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.7; }
}

/* Responsive Design for Hero Ultimate Section */
@media (max-width: 1024px) {
    .hero-ultimate-title-word {
        font-size: 3.5rem;
    }
    
    .hero-ultimate-title-line:nth-child(2) .hero-ultimate-title-word:last-child {
        font-size: 3.5rem;
    }
    
    .hero-ultimate-features-grid {
        gap: 2rem;
    }
    
    .hero-ultimate-side-decoration {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .hero-ultimate-title-line {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ultimate-title-word {
        font-size: 3rem;
    }
    
    .hero-ultimate-title-line:nth-child(2) .hero-ultimate-title-word:last-child {
        font-size: 3rem;
    }
    
    .hero-ultimate-subtitle {
        font-size: 1.3rem;
        margin-top: 60px;
    }
    
    .hero-ultimate-features-grid {
        gap: 1.5rem;
    }
    
    .hero-ultimate-action-section {
        gap: 1.5rem;
    }
    
    .hero-ultimate-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .hero-ultimate-side-decoration {
        display: none;
    }
    
    .hero-ultimate-scroll-section {
        bottom: 20px;
    }
    
    .hero-ultimate-content {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-ultimate-title-word {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-ultimate-title-line:nth-child(2) .hero-ultimate-title-word:last-child {
        font-size: 2.5rem;
    }
    
    .hero-ultimate-subtitle {
        font-size: 1.1rem;
        margin-top: 70px;
    }
    
    .hero-ultimate-features-grid {
        gap: 1rem;
    }
    
    .hero-ultimate-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-ultimate-feature-number {
        font-size: 1.5rem;
    }
    
    .hero-ultimate-feature-label {
        font-size: 0.9rem;
    }
    
    .hero-ultimate-action-section {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ultimate-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-ultimate-scroll-section {
        bottom: 15px;
    }
    
    .hero-ultimate-content {
        gap: 1.5rem;
    }
    
    .hero-ultimate-features-grid {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 360px) {
    .hero-ultimate-title-word {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .hero-ultimate-title-line:nth-child(2) .hero-ultimate-title-word:last-child {
        font-size: 2rem;
    }
    
    .hero-ultimate-subtitle {
        font-size: 1rem;
        margin-top: 70px;
    }
    
    .hero-ultimate-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-ultimate-feature-number {
        font-size: 1.3rem;
    }
    
    .hero-ultimate-feature-label {
        font-size: 0.8rem;
    }
    
    .hero-ultimate-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .hero-ultimate-content {
        gap: 1rem;
    }
}

@media (max-width: 320px) {
    .hero-ultimate-title-word {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .hero-ultimate-title-line:nth-child(2) .hero-ultimate-title-word:last-child {
        font-size: 1.8rem;
    }
    
    .hero-ultimate-subtitle {
        font-size: 0.9rem;
        margin-top: 60px;
    }
    
    .hero-ultimate-feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hero-ultimate-feature-number {
        font-size: 1.2rem;
    }
    
    .hero-ultimate-feature-label {
        font-size: 0.7rem;
    }
    
    .hero-ultimate-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .hero-ultimate-content {
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-ultimate-title-line {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-ultimate-title-word {
        font-size: 2.2rem;
    }
    
    .hero-ultimate-subtitle {
        font-size: 1rem;
        margin-top: 50px;
    }
}

/* .about-universal-image {
    position: relative;
    flex: 0 0 auto;
    max-width: 180px;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.about-universal-image img {
    /* width: 100%; */
    height: auto;
    max-height: 460px;
    /* border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    background: transparent;
    object-fit: contain; */
}
@media (max-width: 1024px) {
    .about-universal-image {
        margin: 0 auto 1.5rem auto;
        max-width: 140px;
    }
    .about-universal-image img {
        max-height: 180px;
    }
}
@media (max-width: 768px) {
    .about-universal-main {
        flex-direction: column;
        align-items: center;
    }
    .about-universal-image {
        margin: 0 0 1.5rem 0;
        max-width: 120px;
    }
    .about-universal-image img {
        max-height: 120px;
    }
}

.about-universal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}
@media (max-width: 768px) {
    .about-universal-stats {
        grid-template-columns: 1fr;
    }
}

/* Eye-catching activity card content styles */
.eye-catching-card-content {
  position: relative;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px rgba(27,54,93,0.10);
  /* border: 3px solid; */
  border-image: linear-gradient(120deg, var(--primary-gold), var(--primary-navy)) 1;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s, transform 0.3s;
}
.eye-catching-card-content:hover {
  box-shadow: 0 16px 48px rgba(139,38,53,0.18), 0 2px 8px rgba(212,175,55,0.10);
  transform: translateY(-6px) scale(1.025);
}

/* Floating icon effect */
.floating-icon {
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(212,175,55,0.13);
  animation: floatIcon 3s ease-in-out infinite;
  background: linear-gradient(135deg, var(--primary-gold) 60%, var(--primary-navy) 100%);
  color: var(--text-white) !important;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px) scale(1.08); }
}

/* Optional: add a soft glow on hover */
.eye-catching-card-content:hover .floating-icon {
  box-shadow: 0 0 0 8px rgba(212,175,55,0.08), 0 8px 32px rgba(27,54,93,0.10);
}

/* Eye-catching features grid for activity cards */
.bservice-activity-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.bservice-activity-features .bservice-feature {
  background: linear-gradient(120deg, var(--accent-cream) 60%, var(--bg-pearl) 100%);
  border-radius: 1.2rem;
  box-shadow: 0 2px 12px rgba(212,175,55,0.08);
  padding: 0.7rem 1rem 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.bservice-activity-features .bservice-feature:hover {
  box-shadow: 0 6px 24px rgba(139,38,53,0.13), 0 2px 8px rgba(212,175,55,0.10);
  transform: translateY(-4px) scale(1.04);
}
.bservice-activity-features .bservice-feature i {
  background: linear-gradient(135deg, var(--primary-gold) 60%, var(--primary-navy) 100%);
  color: var(--text-white);
  border-radius: 50%;
  width: 2.3rem;
  height: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(212,175,55,0.13);
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.bservice-activity-features .bservice-feature span {
  font-weight: 500;
  color: var(--text-navy);
  font-size: 1.08rem;
  letter-spacing: 0.2px;
}

/* Eye-catching Features Section */
.eye-catching-features-section {
    background: linear-gradient(120deg, #FBFBFB 60%, #E6E4E1 100%);
    position: relative;
    overflow: hidden;
}
.eye-catching-features-section .container {
  position: relative;
  z-index: 2;
}
.eye-catching-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
  margin-top: 2.5rem;
  margin-bottom: 3.5rem;
}
.eye-catching-features-card {
  position: relative;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px var(--shadow-deep);
  border: 3px solid;
  border-image: linear-gradient(120deg, var(--primary-gold), var(--primary-navy)) 1;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: box-shadow 0.3s, transform 0.3s;
  text-align: center;
  padding: 2.2rem 1.5rem 2.2rem 1.5rem;
}
.eye-catching-features-card:hover {
  box-shadow: 0 16px 48px var(--shadow-luxury), 0 2px 8px var(--shadow-elegant);
  transform: translateY(-6px) scale(1.025);
}
.eye-catching-features-card .fe-index-card-icon {
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px var(--shadow-elegant);
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-navy));
  color: var(--text-white);
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.eye-catching-features-card .fe-index-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-navy);
  margin-bottom: 0.7rem;
}
.eye-catching-features-card .fe-index-card-description {
  color: var(--text-charcoal);
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 1.2rem;
}
.eye-catching-features-card .fe-index-card-badge {
  background: var(--gradient-gold);
  color: var(--text-navy);
  font-weight: 600;
  border-radius: 1rem;
  padding: 0.4rem 1.1rem;
  font-size: 0.95rem;
  display: inline-block;
}
/* CTA Block */
.eye-catching-features-cta .fe-index-cta-content {
  background: var(--gradient-luxury);
  color: var(--text-white);
  border-radius: 2rem;
  box-shadow: 0 8px 32px var(--shadow-elegant);
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem 2rem;
}
.eye-catching-features-cta .fe-index-cta-content::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--primary-gold) 0%, transparent 80%);
  opacity: 0.18;
  z-index: 0;
}
.eye-catching-features-cta .fe-index-cta-content h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}
.eye-catching-features-cta .fe-index-cta-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.modern-room-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(47, 79, 79, 0.10);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid #f0f0f0;
  margin: 0 auto;
  /* max-width: 350px; */
}

.modern-room-card:hover {
  box-shadow: 0 16px 48px rgba(191, 166, 107, 0.18), 0 2px 8px rgba(47, 79, 79, 0.10);
  transform: translateY(-6px) scale(1.025);
}

.room-preview-image {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: unset;
  border-radius: 18px 18px 0 0;
}

.room-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-preview-badge {
    position: absolute;
    /* left: -16px; */
    bottom: -26px;
    background: var(--text-navy);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0px 0px;
    /* border-radius: 2rem; */
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(122, 193, 66, 0.13);
    z-index: 1;
    width: 100%;
}

.room-preview-content {
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  text-align: left;
  margin-top: 1.5rem;
}

.room-preview-description {
  font-size: 1.08rem;
  color: #222;
  /* margin-bottom: 1.2rem; */
  font-weight: 500;
}

.room-preview-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--text-navy);
  padding-top: 15px;
}

.room-preview-btn {
  background: #ffffff;
  color: var(--text-navy);
  font-weight: 600;
  padding: 8px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 5px 8px 18px rgba(4, 4, 4, 0.13);
  border: 1px solid var(--text-navy);
}

.room-preview-btn:hover {
  background: var(--text-navy);
  color: #ffffff;
}

.room-preview-package {
  text-align: right;
}

.room-preview-package span {
  display: block;
  font-size: 0.92rem;
  color: black;
  font-weight: 400;
}

.room-preview-package-name {
  color: var(--text-navy);
  font-size: 1.08rem;
  font-weight: 700;
}

/* Special design for the first room's package name */
.rooms-preview-grid > .room-preview-card .room-preview-package-name {
    /* background: #7ac142; */
    color: var(--text-charcoal);
    font-weight: 700;
    font-size: 1.5rem;
    /* padding: 7px 22px;
    border-radius: 22px;
    box-shadow: 0 2px 8px rgba(191, 166, 107, 0.13);
    display: inline-block;
    letter-spacing: 0.5px;
    margin-left: 0;
    margin-top: 0.5rem;
    border: 2px solid #fffbe6;
    text-shadow: 0 1px 6px rgba(47,79,79,0.08);
    transition: box-shadow 0.2s, transform 0.2s; */
}
.rooms-preview-grid > .room-preview-card .room-preview-package-name:hover {
  box-shadow: 0 6px 18px rgba(191, 166, 107, 0.18);
  transform: scale(1.06);
}

/* Rotated badge for first room card image */
.rooms-preview-grid > .room-preview-card .room-preview-image-badge {
  position: absolute;
  top: 18px;
  left: -32px;
  z-index: 2;
  background: linear-gradient(90deg, #BFA66B 60%, var(--text-navy) 100%);
  color: #fff;
  font-family: 'Rubik', 'Montserrat', 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 8px 32px 8px 18px;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(191, 166, 107, 0.13);
  border: 2px solid #fffbe6;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 6px rgba(47,79,79,0.08);
  transform: rotate(-35deg);
  pointer-events: none;
  white-space: nowrap;
}
.rooms-preview-grid > .room-preview-card .room-preview-image {
  position: relative;
}

/* <div class="room-preview-card modern-room-card">
  ...
</div> */

/* Two-column pill badge for first room card */
.rooms-preview-grid > .room-preview-card .room-preview-badge.two-col-badge {
  /* display: flex;
  align-items: stretch;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(191, 166, 107, 0.13);
  border: 2px solid #fffbe6;
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  min-width: 180px;
  width: calc(100% - 32px);
  font-family: 'Rubik', 'Montserrat', 'Poppins', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700; */
}
.rooms-preview-grid > .room-preview-card .room-preview-badge.two-col-badge .badge-left,
.rooms-preview-grid > .room-preview-card .room-preview-badge.two-col-badge .badge-right {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7px 0;
  min-width: 0;
}
.rooms-preview-grid > .room-preview-card .room-preview-badge.two-col-badge .badge-left {
  background: var(--text-navy);
  color: #fff;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.rooms-preview-grid > .room-preview-card .room-preview-badge.two-col-badge .badge-left i {
  color: #ffffff;
  font-size: 1.08rem;
  padding-left: 5px;
}
.rooms-preview-grid > .room-preview-card .room-preview-badge.two-col-badge .badge-right {
  background: #1B365D;
  color: #fff;
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

.room-preview-feature-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--bg-pearl);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(191, 166, 107, 0.10);
  font-size: 1rem;
  color: var(--primary-gold);
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  border: 1.5px solid var(--border-gold);
  cursor: default;
}
.room-preview-feature-icon-box:hover {
  background: var(--primary-gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(191, 166, 107, 0.18);
}

/* ===== MODERN SERVICE CARD STYLES - SIMILAR TO ROOM CARDS ===== */
.modern-service-card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(47, 79, 79, 0.10);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1.5px solid #f0f0f0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.modern-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-navy);
  z-index: 1;
}

.modern-service-card:hover {
  box-shadow: 0 16px 48px rgba(191, 166, 107, 0.18), 0 2px 8px rgba(47, 79, 79, 0.10);
  transform: translateY(-6px) scale(1.025);
}

/* Service Badge Styles - Similar to Room Badges */
.bservice-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.bservice-badge.two-col-badge {
  display: flex;
  flex-direction: row;
  gap: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  justify-content: stretch;
  top: auto;
}
.bservice-badge.two-col-badge .badge-left,
.bservice-badge.two-col-badge .badge-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 0;
    min-width: 0;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: none;
    transition: var(--transition-elegant);
}
.bservice-badge.two-col-badge .badge-left {
    background: var(--gradient-gold);
    color: var(--text-white);
    /* border-bottom-left-radius: 18px; */
}
.bservice-badge.two-col-badge .badge-right {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    /* border-bottom-right-radius: 18px; */
}

.bservice-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.8), rgba(135, 206, 235, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bservice-card:hover .bservice-overlay {
    opacity: 1;
}

.bservice-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.bservice-card:hover .bservice-overlay-content {
    transform: translateY(0);
}

.bservice-overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.bservice-overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bservice-card-content {
    padding: 2.5rem;
    position: relative;
    background: var(--bg-ivory);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bservice-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-navy);
    margin-bottom: 1.5rem;
    transition: var(--transition-elegant);
}

.bservice-card:hover .bservice-icon-wrapper {
    background: var(--gradient-burgundy);
    color: var(--text-white);
    transform: scale(1.1);
}

.bservice-card-title {
    font-size: 1.8rem;
    color: var(--text-navy);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bservice-card-description {
    color: var(--text-charcoal);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    flex-grow: 1;
}

/* Service Amenities Container - Similar to Room Amenities */
.bservice-amenities-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.bservice-amenity-item {
    /* display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--bg-pearl);
    color: var(--text-charcoal);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    border: 1px solid var(--border-gold);
    transition: var(--transition-elegant); */
}

.bservice-amenity-item:hover {
    background: var(--gradient-gold);
    color: var(--text-navy);
    transform: translateY(-2px);
}

.bservice-amenity-item i {
    color: var(--text-gold);
    font-size: 0.9rem;
}

.bservice-amenity-item:hover i {
    color: var(--text-navy);
}

/* Service Feature Icon Box - Similar to Room Feature Icons */
.bservice-feature-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-pearl);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(191, 166, 107, 0.10);
    font-size: 1rem;
    color: var(--primary-gold);
    transition: box-shadow 0.2s, background 0.2s, color 0.2s;
    border: 1.5px solid var(--border-gold);
    cursor: default;
}

.bservice-feature-icon-box:hover {
    background: var(--primary-gold);
    color: #fff;
    box-shadow: 0 4px 16px rgba(191, 166, 107, 0.18);
}

/* Service Actions - Similar to Room Actions */
.bservice-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-cream);
}

.bservice-btn {
    background: #ffffff;
    color: var(--text-navy);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 7px;
    box-shadow: 5px 8px 18px rgba(4, 4, 4, 0.13);
    border: 1px solid var(--text-navy);
}

.bservice-btn:hover {
    background: var(--text-navy);
    color: #ffffff;
}

/* Service Package - Similar to Room Package */
.bservice-package {
    text-align: right;
}

.bservice-package span {
    display: block;
    font-size: 0.92rem;
    color: #888;
    font-weight: 400;
}

.bservice-package-name {
    color: var(--text-navy);
    font-size: 1.08rem;
    font-weight: 700;
}

/* Service Card Content - Updated for modern design */
.bservice-card-content {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bservice-card-title {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--text-navy);
    letter-spacing: 0.5px;
}

.bservice-card-description {
    font-size: 1.08rem;
    color: #222;
    font-weight: 500;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments for service cards */
@media (max-width: 768px) {
  .bservice-card-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
  
  .bservice-card-title {
    font-size: 1.3rem;
  }
  
  .bservice-card-description {
    font-size: 1rem;
  }
  
  .bservice-amenities-container {
    gap: 0.8rem;
  }
  
  .bservice-feature-icon-box {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
  }
  
  .bservice-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .bservice-btn {
    justify-content: center;
  }
  
  .bservice-package {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bservice-card-content {
    padding: 1rem 0.8rem 0.8rem 0.8rem;
  }
  
  .bservice-card-title {
    font-size: 1.2rem;
  }
  
  .bservice-card-description {
    font-size: 0.95rem;
  }
  
  .bservice-amenities-container {
    gap: 0.6rem;
  }
  
  .bservice-amenity-item {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
  
  .bservice-feature-icon-box {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}

.bservice-cta {
  text-align: center;
}

.bservice-cta-button {
  background: #fff;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
  font-size: 1.2rem;
  padding: 18px 45px;
  letter-spacing: 1px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  margin: 0 auto;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 5px 15px rgba(191, 166, 107, 0.08);
  text-decoration: none;
  margin-top: 20px;
}

.bservice-cta-button:hover {
  background: var(--primary-charcoal);
  color: #fff;
  box-shadow: 0 10px 25px rgba(191, 166, 107, 0.18);
  transform: translateY(-3px);
}

@media (max-width: 480px) {
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        box-sizing: border-box;
    }
}

html {
  scroll-behavior: smooth;
}

/* Preloader styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#preloader .dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 6px;
  background: var(--text-navy);
  border-radius: 50%;
  opacity: 0.3;
  animation: blink 1.4s infinite both;
}
#preloader .dot:nth-child(2) {
  animation-delay: 0.2s;
}
#preloader .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  0%, 80%, 100% { opacity: 0.3; }
  40% { opacity: 1; }
}

