/* =========================================
   VARIABLES & PREMIUM DESIGN SYSTEM
========================================= */
:root {
    /* Color Palette */
    --primary-color: #f7ecec;
    /* Slightly brighter soft pink */
    --secondary-color: #11111f;
    /* Deeper, richer navy/charcoal */
    --accent-color: #d4af37;
    /* Premium gold */
    --accent-hover: #b5952f;
    /* Darker gold for hovers */
    --text-light: #ffffff;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --bg-offwhite: #fafafa;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Animation & Transitions */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);

    /* Layout */
    --border-radius: 12px;
    --border-radius-lg: 24px;

    /* Shadows - Soft, premium feel */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(17, 17, 31, 0.12);

    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--secondary-color);
    background-color: var(--bg-offwhite);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--primary-color);
}

/* Premium Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    letter-spacing: 2px;
    font-weight: 700;
    background: linear-gradient(135deg, #2b2b2b 0%, #8e8e8e 30%, #4a4a4a 70%, #b5b5b5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 15px auto 0;
    opacity: 0.8;
}

.section-title[style*="text-align: left"]::after {
    margin: 15px 0 0;
    background: linear-gradient(to right, var(--accent-color), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    /* Pill shape for premium feel */
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: #fff;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    color: #fff;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

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

/* =========================================
   FOOTER SECTION SEPARATOR (SVG)
========================================= */
.footer-separator {
    width: 100%;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
}

.footer-separator svg {
    width: 100%;
    height: 80px;
}

/* =========================================
   SCROLL ANIMATIONS (Reveal)
========================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* =========================================
   HEADER & NAVIGATION (Glassmorphism)
========================================= */
.header {
    background-color: transparent;
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar-wrapper {
    padding: 30px 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 0;
    background-color: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.header.scrolled .navbar-wrapper {
    padding: 15px 0;
}

/* =========================================
   TOP BAR
========================================= */
.top-bar {
    background-color: rgba(17, 17, 31, 0.95);
    color: #e0e0e0;
    padding: 12px 0;
    font-size: 0.8rem;
    font-family: var(--font-body);
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled .top-bar {
    display: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: #e0e0e0;
    margin-right: 18px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.top-bar-left a:hover {
    color: #fff;
}

.top-bar-right {
    display: flex;
    gap: 30px;
}

.top-bar-right span {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
}

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

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all var(--transition-normal);
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo a .v-accent {
    color: var(--accent-color);
    font-size: 2.2rem;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
    line-height: 1.1;
}

.logo a .v-accent .crown-icon {
    font-size: 0.8rem;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.tagline {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-top: 8px;
    font-weight: 600;
}

.header.scrolled .logo a {
    transform: scale(0.9);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    color: var(--accent-color);
}

/* Animated underline for nav */
.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000000;
    transition: width var(--transition-normal);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background-color: var(--secondary-color);
    color: var(--text-muted);
    padding: 80px 0 30px;
    position: relative;
}

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

.footer-col h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE BASE
========================================= */
/* =========================================
   HOME ACCOMMODATIONS ALTERNATING GRID
========================================= */
.home-accommodations {
    padding-bottom: 0;
    background: #fff;
}

.accomm-grid {
    width: 100%;
    overflow: hidden;
}

.accomm-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.accomm-row.reverse {
    flex-direction: row-reverse;
}

.accomm-content {
    flex: 1;
    min-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #fff;
}

.accomm-text {
    max-width: 500px;
    margin: 0 auto;
}

.accomm-text h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 20px;
}

.accomm-meta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 35px;
    letter-spacing: 0;
}

.accomm-meta span {
    color: #666;
}

.accomm-gap {
    display: inline-block;
    width: 30px;
}

.accomm-text p {
    color: #777;
    font-size: 0.85rem;
    line-height: 2;
    margin-bottom: 45px;
    max-width: 480px;
}

.btn-square {
    display: inline-block;
    background-color: #5d7599;
    color: #fff;
    padding: 15px 30px;
    font-size: 0.70rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-square:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.accomm-image {
    flex: 1;
    min-width: 50%;
    height: 500px;
}

.accomm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* =========================================
   ABOUT PAGE SLIDER & AMENITIES
========================================= */
.about-slider-section {
    padding: 0;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.swiper-container.about-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.about-swiper .swiper-slide {
    width: 65%;
    transition: all 0.5s ease;
    opacity: 0.4;
    transform: scale(0.92);
}

.about-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.about-swiper .swiper-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

/* Custom Navigation */
.swiper-button-next.custom-nav,
.swiper-button-prev.custom-nav {
    background-color: rgba(181, 149, 47, 0.8);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.swiper-button-next.custom-nav::after,
.swiper-button-prev.custom-nav::after {
    font-size: 1.2rem;
}

.swiper-button-next.custom-nav:hover,
.swiper-button-prev.custom-nav:hover {
    background-color: var(--accent-hover);
}

/* Amenities Grid */
.amenities-grid-section {
    padding: 60px 0 100px;
    background: var(--bg-light);
}

.amenities-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.amenity-item i {
    font-size: 1.5rem;
    color: var(--accent-hover);
    width: 30px;
    text-align: center;
}

/* =========================================
   FACILITIES CARDS (Lobby, Reception, Restaurant)
========================================= */
.fac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fac-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.fac-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.fac-card:hover .fac-image img {
    transform: scale(1.08);
}

.fac-content {
    padding: 30px;
    text-align: center;
}

.fac-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.fac-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .room-card {
        flex-direction: column;
    }

    .room-image {
        height: 300px;
    }

    .accomm-row,
    .accomm-row.reverse {
        flex-direction: column;
    }

    .accomm-content,
    .accomm-image {
        min-width: 100%;
    }

    .accomm-image {
        height: 350px;
    }

    .about-swiper .swiper-slide {
        width: 85%;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        box-shadow: var(--shadow-md);
        border-bottom: var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-swiper .swiper-slide {
        width: 95%;
    }

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

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

/* =========================================
   HOME: HERO SECTION
========================================= */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    transform: scale(1.05);
    /* initial scale */
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 60px 50px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.3rem;
    margin: 0 auto 40px;
    color: var(--secondary-color);
    font-weight: 300;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* =========================================
   FEATURES SECTION
========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

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

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card .icon {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    transition: transform var(--transition-normal);
}

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

.feature-card h3 {
    font-size: 1.5rem;
}

/* =========================================
   PAGE BANNER (About, Tariff, Contact)
========================================= */
.page-banner {
    position: relative;
    padding: 160px 0 30px;
    text-align: center;
    color: var(--secondary-color);
    z-index: 1;
}

.page-banner+.section {
    padding-top: 60px;
}

.page-banner h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #2b2b2b 0%, #8e8e8e 30%, #4a4a4a 70%, #b5b5b5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    margin-top: 20px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.page-banner h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 15px auto 0;
    opacity: 0.8;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(243, 228, 228, 0.5), var(--bg-offwhite));
    z-index: -1;
}

/* =========================================
   ABOUT US PAGE
========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.intro-image .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(45deg, var(--primary-color), #fff);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
}

.stat-item {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

/* =========================================
   TARIFF PAGE
========================================= */
.room-card {
    display: flex;
    background-color: var(--bg-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.room-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    border-radius: 0;
}

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

.room-details {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-size: 2.2rem;
}

.room-price {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.room-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.room-description {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.room-amenities {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.room-amenities span {
    background-color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.room-amenities span i {
    color: var(--accent-color);
}

/* =========================================
   CONTACT PAGE
========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-box {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-info-box::after {
    content: '\f594';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    right: -20px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.4);
}

.contact-info-box h3 {
    color: var(--secondary-color);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 25px;
    margin-top: 5px;
    background: #fff;
    width: 50px;
    height: 50px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-item .detail h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-form-box {
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
    background-color: var(--bg-offwhite);
}

.form-control:focus {
    border-color: var(--accent-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.map-container {
    margin-top: 80px;
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.alert {
    padding: 18px 20px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    display: none;
    font-weight: 600;
}

.alert-success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 991px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

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

    .room-card {
        flex-direction: column;
    }

    .room-image {
        height: 300px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}