/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C9A961;
    --secondary-color: #1a1a1a;
    --accent-color: #D4AF37;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.logo-box {
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-image {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.nav-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-book-stay {
    padding: 12px 28px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1.5px;
    transition: var(--transition);
    text-transform: uppercase;
    border: none;
}

.btn-book-stay:hover {
    background: linear-gradient(135deg, #d4af37, #c9a961);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1.2s ease;
    padding-top: 100px;
}

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

.hero-title {
    font-size: 90px;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-hero {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.btn-hero:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 169, 97, 0.4);
}

/* Our History Section */
.our-history-section {
    background: #ffffff;
    padding: 100px 0 80px;
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    margin-bottom: 80px;
}

.history-text-content {
    padding-right: 20px;
}

.history-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.heading-line {
    width: 70px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 25px;
    flex-shrink: 0;
}

.history-heading h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.history-description p {
    font-size: 15px;
    line-height: 2;
    color: #333333;
    text-align: left;
    margin: 0;
}

.history-image-wrapper {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}

.history-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.history-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item-box {
    text-align: center;
}

.stat-item-box h3 {
    font-size: 90px;
    font-weight: 700;
    color: #7A8B92;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-item-box p {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* The Grand Regions Section */
.grand-regions-section {
    background: linear-gradient(135deg, #0a0e27, #161b42);
    padding: 100px 0;
    color: var(--white);
}

.regions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.regions-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 50px;
}

.regions-line {
    width: 70px;
    height: 4px;
    background: var(--white);
    margin-top: 25px;
    flex-shrink: 0;
}

.regions-heading h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.regions-images {
    position: relative;
    width: 100%;
    height: 550px;
}

.region-main-image {
    width: 75%;
    height: 450px;
    position: relative;
    z-index: 1;
}

.region-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.region-overlay-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 250px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.region-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.regions-content {
    padding-left: 20px;
}

.regions-content p {
    font-size: 15px;
    line-height: 2;
    color: var(--white);
    margin-bottom: 30px;
    text-align: left;
}

.btn-book-now {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
    margin-top: 20px;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, #d4af37, #c9a961);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

/* The Grand Amenities Section */
.grand-amenities-section {
    background: #f5f5f5;
    padding: 100px 0;
    color: var(--text-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.amenities-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 50px;
}

.amenities-line {
    width: 70px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 25px;
    flex-shrink: 0;
}

.amenities-heading h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.amenities-images {
    position: relative;
    width: 100%;
    height: 550px;
}

.amenity-main-image {
    width: 75%;
    height: 450px;
    position: relative;
    z-index: 1;
}

.amenity-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenity-overlay-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 250px;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.amenity-overlay-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.amenities-content {
    padding-left: 20px;
}

.amenities-content p {
    font-size: 15px;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: left;
}

.amenities-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.amenity-icon-item {
    text-align: center;
}

.amenity-icon {
    font-size: 50px;
    margin-bottom: 15px;
    filter: grayscale(1);
    opacity: 0.8;
}

.amenity-icon-item p {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Our Hotels Section */
.our-hotels-section {
    background: var(--white);
    padding: 100px 0;
}

.hotels-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.hotels-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.hotels-line {
    width: 70px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 25px;
    flex-shrink: 0;
}

.hotels-heading h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.hotels-filter {
    display: flex;
    gap: 0;
}

.filter-btn {
    padding: 14px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.filter-btn:first-child {
    border-radius: 0;
    border-right: 1px solid var(--primary-color);
}

.filter-btn:last-child {
    border-radius: 0;
    border-left: 1px solid var(--primary-color);
}

.filter-btn:hover {
    background: rgba(201, 169, 97, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: var(--white);
    border-color: var(--primary-color);
}

.accessibility-icon {
    text-align: center;
    margin-bottom: 60px;
}

.accessibility-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.accessibility-circle span {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.hotels-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hotel-brand-card {
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hotel-brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hotel-brand-card.hidden {
    display: none;
}

.nivassa-card {
    background: linear-gradient(135deg, #0d1133, #1a1f5c);
}

.surestay-card {
    background: #f0f0f0;
}

.cafe-card {
    background: #2a2a2a;
}

.brand-logo {
    text-align: center;
}

.logo-icon-brand {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.logo-icon-brand span {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.nivassa-card h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin: 0 0 10px;
}

.nivassa-card p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}

.cafe-logo-circle {
    width: 150px;
    height: 150px;
    border: 3px solid #8b9d6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.cafe-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cafe-text em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #8b9d6f;
    font-size: 32px;
    font-weight: 400;
}

.hotel-location {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 20px;
    text-align: center;
}

.hotel-location p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Our Rooms and Suites Section */
.our-rooms-section {
    background: #f5f5f5;
    padding: 100px 0 120px;
    overflow: hidden;
}

.rooms-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.rooms-heading {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.rooms-line {
    width: 70px;
    height: 4px;
    background: var(--secondary-color);
    margin-top: 25px;
    flex-shrink: 0;
}

.rooms-heading h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.btn-view-all-rooms {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-view-all-rooms:hover {
    background: linear-gradient(135deg, #d4af37, #c9a961);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.rooms-slider-container {
    position: relative;
    padding: 0 80px;
}

.rooms-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.rooms-slider::-webkit-scrollbar {
    display: none;
}

.room-slide {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
    background: var(--white);
    transition: var(--transition);
}

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

.room-slide-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.room-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-slide:hover .room-slide-image img {
    transform: scale(1.05);
}

.room-slide-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px;
    background: var(--white);
}

.room-slide-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px;
}

.room-specs {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

.room-slide-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.price-from {
    font-size: 13px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.price-note {
    font-size: 11px;
    color: var(--text-light);
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.3);
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-label {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
}

.section-title {
    font-size: 48px;
    margin: 15px 0 20px;
    color: var(--secondary-color);
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Socials Section */
.socials-section {
    background: var(--white);
    padding: 100px 0 0;
}

.socials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.socials-heading {
    display: flex;
    align-items: center;
    gap: 25px;
}

.socials-line {
    width: 70px;
    height: 4px;
    background: var(--secondary-color);
    flex-shrink: 0;
}

.socials-heading h2 {
    font-size: 52px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

.social-icons {
    display: flex;
    gap: 25px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 22px;
    transition: var(--transition);
    text-decoration: none;
}

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

.socials-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 0;
}

.social-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

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

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.social-overlay i {
    font-size: 40px;
    color: var(--white);
    transform: scale(0.8);
    transition: var(--transition);
}

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

.social-image:hover .social-overlay i {
    transform: scale(1);
}

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

/* Booking Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    max-width: 700px;
    width: 100%;
    position: relative;
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 16px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
}

.booking-summary h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid var(--primary-color);
}

.btn-submit-booking {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

.btn-submit-booking:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0e27, #161b42);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-image {
    height: 110px;
    width: auto;
    object-fit: contain;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-cta {
    padding-left: 20px;
}

.footer-cta h4 {
    font-size: 22px;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 400;
    font-family: 'Playfair Display', serif;
}

.footer-btn-book {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(135deg, #c9a961, #d4af37);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.footer-btn-book:hover {
    background: linear-gradient(135deg, #d4af37, #c9a961);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .navbar {
        flex-wrap: wrap;
    }

    .logo-box {
        min-width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }

    .nav-content {
        position: fixed;
        left: -100%;
        top: 95px;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 30px;
        gap: 30px;
    }

    .nav-content.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav-btn {
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .logo-box {
        padding: 12px 30px;
        min-width: 140px;
    }

    .logo-image {
        height: 75px;
    }

    .section-title {
        font-size: 36px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .history-text-content {
        padding-right: 0;
    }

    .history-heading h2 {
        font-size: 40px;
    }

    .history-image-wrapper {
        height: 450px;
    }

    .history-statistics {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stat-item-box h3 {
        font-size: 70px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .regions-heading h2 {
        font-size: 40px;
    }

    .regions-images {
        height: 450px;
    }

    .region-main-image {
        height: 350px;
    }

    .region-overlay-image {
        height: 220px;
        width: 60%;
    }

    .regions-content {
        padding-left: 0;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .amenities-heading h2 {
        font-size: 40px;
    }

    .amenities-images {
        height: 450px;
    }

    .amenity-main-image {
        height: 350px;
    }

    .amenity-overlay-image {
        height: 220px;
        width: 60%;
    }

    .amenities-content {
        padding-left: 0;
    }

    .amenities-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .hotels-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .hotels-heading h2 {
        font-size: 40px;
    }

    .hotels-filter {
        width: 100%;
    }

    .filter-btn {
        flex: 1;
        padding: 12px 30px;
        font-size: 12px;
    }

    .hotels-brands-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hotel-brand-card {
        height: 300px;
    }

    .rooms-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .rooms-heading h2 {
        font-size: 40px;
    }

    .btn-view-all-rooms {
        width: 100%;
        text-align: center;
    }

    .rooms-slider-container {
        padding: 0 60px;
    }

    .room-slide {
        flex: 0 0 80%;
        min-width: 80%;
    }

    .room-slide-image {
        height: 350px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .socials-header {
        margin-bottom: 60px;
    }

    .socials-heading h2 {
        font-size: 40px;
    }

    .socials-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .modal-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo-box {
        padding: 10px 25px;
        min-width: 110px;
    }

    .logo-image {
        height: 60px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .btn-book-stay {
        padding: 12px 24px;
        font-size: 11px;
    }

    .nav-content {
        top: 80px;
        padding: 20px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-cta {
        padding-left: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }

    .history-heading {
        gap: 15px;
    }

    .heading-line {
        width: 50px;
        height: 3px;
        margin-top: 18px;
    }

    .history-heading h2 {
        font-size: 36px;
    }

    .history-description p {
        font-size: 14px;
        line-height: 1.8;
    }

    .history-image-wrapper {
        height: 400px;
    }

    .stat-item-box h3 {
        font-size: 60px;
    }

    .stat-item-box p {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .regions-heading {
        gap: 15px;
    }

    .regions-line {
        width: 50px;
        height: 3px;
        margin-top: 18px;
    }

    .regions-heading h2 {
        font-size: 36px;
    }

    .regions-images {
        height: 380px;
    }

    .region-main-image {
        height: 300px;
        width: 80%;
    }

    .region-overlay-image {
        height: 180px;
        width: 65%;
    }

    .regions-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .btn-book-now {
        padding: 14px 40px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .amenities-heading {
        gap: 15px;
    }

    .amenities-line {
        width: 50px;
        height: 3px;
        margin-top: 18px;
    }

    .amenities-heading h2 {
        font-size: 36px;
    }

    .amenities-images {
        height: 380px;
    }

    .amenity-main-image {
        height: 300px;
        width: 80%;
    }

    .amenity-overlay-image {
        height: 180px;
        width: 65%;
    }

    .amenities-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .amenities-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 35px;
    }

    .amenity-icon {
        font-size: 40px;
    }

    .amenity-icon-item p {
        font-size: 10px;
    }

    .hotels-heading {
        gap: 15px;
    }

    .hotels-line {
        width: 50px;
        height: 3px;
        margin-top: 18px;
    }

    .hotels-heading h2 {
        font-size: 36px;
    }

    .filter-btn {
        padding: 12px 35px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .accessibility-circle {
        width: 45px;
        height: 45px;
    }

    .accessibility-circle span {
        font-size: 20px;
    }

    .hotel-brand-card {
        height: 280px;
    }

    .logo-icon-brand {
        width: 70px;
        height: 70px;
    }

    .logo-icon-brand span {
        font-size: 35px;
    }

    .nivassa-card h3 {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .nivassa-card p {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .cafe-logo-circle {
        width: 130px;
        height: 130px;
    }

    .cafe-text {
        font-size: 24px;
    }

    .cafe-text em {
        font-size: 28px;
    }

    .rooms-heading {
        gap: 15px;
    }

    .rooms-line {
        width: 50px;
        height: 3px;
        margin-top: 18px;
    }

    .rooms-heading h2 {
        font-size: 36px;
    }

    .btn-view-all-rooms {
        padding: 14px 40px;
        font-size: 12px;
    }

    .rooms-slider-container {
        padding: 0 50px;
    }

    .room-slide {
        flex: 0 0 90%;
        min-width: 90%;
    }

    .room-slide-image {
        height: 300px;
    }

    .room-slide-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .room-slide-info h3 {
        font-size: 24px;
    }

    .room-specs {
        font-size: 13px;
    }

    .room-slide-price {
        align-items: flex-start;
        text-align: left;
    }

    .price-amount {
        font-size: 40px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .prev-slide {
        left: 5px;
    }

    .next-slide {
        right: 5px;
    }

    .socials-header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .socials-heading h2 {
        font-size: 36px;
    }

    .socials-line {
        width: 50px;
        height: 3px;
    }

    .social-icons {
        gap: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .socials-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-cta h4 {
        font-size: 18px;
    }

    .footer-btn-book {
        padding: 14px 40px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .footer-logo-image {
        height: 75px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-links ul li a {
        font-size: 14px;
    }

    .modal-content {
        padding: 30px 20px;
        max-height: 85vh;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .btn-submit-booking {
        padding: 14px 30px;
        font-size: 14px;
    }
}
