/* ==========================================================================
   Design System & Global Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #0d2c54;       /* Deep Navy Ocean */
    --color-primary-light: #1b497e; /* Royal Blue Accent */
    --color-primary-dark: #07172c;  /* Midnight Navy */
    --color-accent: #c89d66;       /* Warm Sandy Gold */
    --color-accent-light: #dfc19c; /* Soft Sandy Cream */
    --color-accent-dark: #a67942;  /* Deep Gold/Amber */
    
    --color-whatsapp: #25d366;     /* Brand WhatsApp Green */
    --color-whatsapp-hover: #128c7e;
    
    --color-text-dark: #1e293b;    /* Charcoal for readable body */
    --color-text-light: #64748b;   /* Slate for secondary text */
    --color-bg-light: #f8fafc;     /* Clean light-gray background */
    --color-bg-white: #ffffff;
    --color-bg-dark: #0f172a;      /* Dark mode footer */
    
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --hover-shadow: 0 20px 40px rgba(13, 44, 84, 0.12);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

select, input {
    font-family: inherit;
    font-size: inherit;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.align-items-center {
    align-items: center;
}

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

.text-white {
    color: var(--color-bg-white) !important;
}

/* ==========================================================================
   Buttons & UI Elements
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 44, 84, 0.25);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.w-100 {
    width: 100%;
}

/* Section Common Layout */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-dark);
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* ==========================================================================
   Header / Navigation Bar
   ========================================================================== */
.header {
    background-color: var(--color-bg-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.shrink {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.header.shrink .nav-container {
    height: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--color-primary);
}

.logo i {
    color: var(--color-accent);
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-light);
    position: relative;
    padding: 8px 0;
}

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

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: var(--color-bg-white);
    padding-top: 140px;
    padding-bottom: 120px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-accent-light);
    display: block;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    color: var(--color-bg-white);
    margin-bottom: 24px;
    font-weight: 800;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.6s;
    animation-fill-mode: both;
}

.hero-buttons .btn-outline {
    border-color: var(--color-bg-white);
    color: var(--color-bg-white);
}

.hero-buttons .btn-outline:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
}

/* ==========================================================================
   Booking Widget
   ========================================================================== */
.booking-widget-section {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.booking-widget {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(13, 44, 84, 0.15);
    overflow: hidden;
    border: 1px solid rgba(200, 157, 102, 0.15);
}

.widget-title-bar {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-bg-white);
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-title-bar h3 {
    color: var(--color-bg-white);
    margin: 0;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-sub {
    font-size: 0.8rem;
    color: var(--color-accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-form-grid {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1fr 1.8fr;
    gap: 24px;
    align-items: flex-end;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent-dark);
    font-size: 1.05rem;
}

.input-with-icon input, .input-with-icon select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    font-weight: 500;
    outline: none;
    transition: var(--transition);
    appearance: none;
}

.input-with-icon select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a67942' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
}

.input-with-icon input:focus, .input-with-icon select:focus {
    border-color: var(--color-primary-light);
    box-shadow: 0 0 0 3px rgba(27, 73, 126, 0.1);
}

.price-display-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background-color: var(--color-bg-white);
}

.about-text {
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    background-color: rgba(200, 157, 102, 0.1);
    color: var(--color-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 85%;
    height: 85%;
    border: 3px solid var(--color-accent);
    border-radius: var(--border-radius);
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    width: 100%;
    object-fit: cover;
    height: 450px;
}

.about-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 16px 28px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(13, 44, 84, 0.3);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ==========================================================================
   Rooms Section
   ========================================================================== */
.rooms {
    background-color: var(--color-bg-light);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.room-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

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

.room-card.highlighted {
    border: 2px solid var(--color-accent);
    position: relative;
}

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

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

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

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.room-price {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: rgba(13, 44, 84, 0.9);
    color: var(--color-bg-white);
    padding: 6px 14px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    font-family: var(--font-heading);
}

.room-price .currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
}

.room-price .amount {
    font-size: 1.25rem;
    font-weight: 700;
}

.room-price .period {
    font-size: 0.75rem;
    opacity: 0.8;
}

.room-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.room-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.room-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.room-specs span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-specs i {
    color: var(--color-accent-dark);
}

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

.room-card-footer .btn {
    width: 100%;
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */
.amenities {
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
}

.amenities .section-title {
    color: var(--color-bg-white);
}

.amenities .section-tag {
    color: var(--color-accent);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.amenity-item {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 32px;
    transition: var(--transition);
}

.amenity-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(200, 157, 102, 0.3);
}

.amenity-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(200, 157, 102, 0.15);
    color: var(--color-accent-light);
    font-size: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 24px;
}

.amenity-item h3 {
    color: var(--color-bg-white);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.amenity-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   Restaurant Section
   ========================================================================== */
.restaurant {
    background-color: var(--color-bg-white);
}

.restaurant-img-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 480px;
}

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

.restaurant-text {
    color: var(--color-text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.restaurant-bullets {
    list-style: none;
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.restaurant-bullets li {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.restaurant-bullets i {
    color: var(--color-accent-dark);
    font-size: 1.1rem;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
    background-color: var(--color-bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--card-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(13, 44, 84, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover class {
    text-decoration: underline;
}

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

.gallery-overlay h4 {
    color: var(--color-bg-white);
    font-size: 1.15rem;
    font-weight: 600;
}

/* ==========================================================================
   Contact & Maps Section
   ========================================================================== */
.contact {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-bg-white);
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.contact-info-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.c-icon {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: rgba(200, 157, 102, 0.15);
    color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-detail-item h5 {
    color: var(--color-accent-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-detail-item p {
    color: var(--color-bg-white);
    font-size: 1rem;
    font-weight: 300;
}

.booking-policy-box {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.booking-policy-box h4 {
    color: var(--color-accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-policy-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-policy-box li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding-left: 16px;
}

.booking-policy-box li::before {
    content: '•';
    color: var(--color-accent);
    position: absolute;
    left: 0;
}

.contact-map-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.map-container {
    flex-grow: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 380px;
    box-shadow: var(--card-shadow);
}

.map-action-box {
    margin-top: 24px;
}

.map-action-box .btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-bg-white);
}

.map-action-box .btn:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

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

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-bg-white);
    font-size: 1.05rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
    border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.footer-whatsapp-badge:hover {
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
    border-color: var(--color-whatsapp);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Media Queries & Responsive Styling
   ========================================================================== */

/* Laptop & Tablet Landscape */
@media (max-width: 1024px) {
    .booking-form-grid {
        grid-template-columns: 1fr 1fr;
        padding: 24px;
    }
    
    .form-btn-group {
        grid-column: span 2;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 2;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid-wrapper {
        padding: 40px;
        gap: 32px;
    }
}

/* Tablet Portrait & Mobile */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .booking-widget-section {
        margin-top: -40px;
    }
    
    .booking-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-btn-group {
        grid-column: span 1;
        margin-top: 12px;
    }
    
    .about-img-wrapper {
        padding: 0;
        margin-top: 24px;
    }
    
    .about-img-wrapper::before {
        display: none;
    }
    
    .about-img {
        height: 300px;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .rooms-grid .room-card:last-child {
        grid-column: span 1;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-img-wrapper {
        height: 300px;
        order: 2;
    }
    
    .restaurant-bullets {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .map-container {
        min-height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Navigation Menu Toggle */
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        gap: 28px;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
    
    .header.shrink .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-btn {
        display: none; /* Hide top bar button on mobile */
    }
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: var(--transition);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    color: var(--color-bg-white);
}

/* Tooltip text */
.float-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--color-primary-dark);
    color: var(--color-bg-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.float-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent var(--color-primary-dark);
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

