﻿/* 
    LUXE Design System
    Color Palette:
    - Deep Navy: #0F172A
    - Soft White: #F8FAFC
    - Luxury Gold: #D4A017
    - Elegant Cyan: #0EA5E9
*/

:root {
    --primary: #0F172A;
    --secondary: #D4A017;
    --accent: #0EA5E9;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #334155;
    --text-muted: #64748b;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(15, 23, 42, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

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

.loader-content h1 {
    color: var(--white);
    font-size: 3rem;
    letter-spacing: 8px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.loader-line {
    width: 0;
    height: 2px;
    background: var(--secondary);
    margin: 0 auto;
    animation: lineGrow 1.5s forwards;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes lineGrow {
    to { width: 100px; }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: var(--secondary);
    color: var(--white);
}

.btn-gold:hover {
    background: #b88a14;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
}

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

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

.btn-link {
    font-weight: 700;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link i {
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.full-width {
    width: 100%;
    display: block !important;
}

/* Header & Navigation */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

#main-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

#main-header.scrolled .logo a, 
#main-header.scrolled .nav-links a {
    color: var(--primary);
}

#main-header.scrolled .nav-links a.active {
    color: var(--secondary);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
}

.logo span {
    color: var(--secondary);
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

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

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

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.2); }
    to { transform: scale(1); }
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.3));
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

.hero-text h1 span {
    color: var(--secondary);
}

.hero-text .subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-text p {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Booking Box */
.booking-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.booking-box .form-group {
    margin-bottom: 20px;
}

.booking-box label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
    opacity: 0.8;
}

.booking-box input,
.booking-box select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.booking-box input:focus,
.booking-box select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

.booking-box select option {
    background: var(--primary);
}

/* Section Common */
.section-subtitle {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* About Section */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-box {
    position: relative;
}

.image-box img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.3);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
}

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

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

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

.price-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--glass-dark);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 700;
}

.price-tag span {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.room-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.room-meta span i {
    color: var(--secondary);
    margin-right: 5px;
}

.room-info p {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.rating i {
    color: var(--secondary);
}

/* Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.facility-item {
    text-align: center;
    padding: 40px;
    border-radius: var(--radius);
    background: var(--light);
    transition: var(--transition);
}

.facility-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.facility-item:hover .icon-box {
    background: var(--secondary);
    color: var(--white);
    transform: rotateY(180deg);
}

.facility-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.facility-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Popular Destinations */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 50px;
}

.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

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

.dest-card.large {
    grid-row: span 2;
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
    transform: translateY(20px);
}

.dest-card:hover .dest-overlay {
    opacity: 1;
    transform: translateY(0);
}

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

.dest-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.dest-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.btn-link-white {
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Testimonials */
.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-slide {
    padding: 40px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.3;
    margin-bottom: 30px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    line-height: 1.4;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 40px;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.user-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
}

.user-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.user-details span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

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

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

/* Room Details Page */
.room-hero {
    padding-top: 150px;
    background: var(--light);
}

.room-hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.room-gallery-main {
    height: 600px;
}

.room-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: opacity 0.3s ease;
}

.room-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 600px;
}

.room-gallery-thumbs .thumb {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

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

.room-gallery-thumbs .thumb:hover img {
    transform: scale(1.1);
    cursor: pointer;
}

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

.details-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.room-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.room-meta-large {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--text-muted);
}

.room-meta-large span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-meta-large i {
    color: var(--secondary);
}

.details-text {
    margin-bottom: 50px;
}

.details-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.details-text p {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    opacity: 0.9;
}

.details-amenities h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.amenity-item i {
    color: var(--secondary);
    font-size: 1.2rem;
    width: 25px;
}

/* Sidebar Booking Card */
.booking-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    position: sticky;
    top: 120px;
    margin-bottom: 30px;
    z-index: 10;
}

.price-header {
    margin-bottom: 30px;
}

.price-header .price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-header .per-night {
    color: var(--text-muted);
}

.booking-card .form-group {
    margin-bottom: 20px;
}

.booking-card label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.booking-card input, 
.booking-card select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
}

.booking-card input:focus, 
.booking-card select:focus {
    border-color: var(--secondary);
}

.booking-summary {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 10px;
}

.no-charge-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

.help-box {
    margin-top: 30px;
    padding: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
}

.help-box h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.help-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.help-box a {
    color: var(--secondary);
    font-weight: 700;
}

/* Booking Page Styles */
.booking-page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 100px;
}

.booking-page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-form-area {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section h3 i {
    color: var(--secondary);
    font-size: 1.2rem;
}

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

.booking-form-area .form-group {
    margin-bottom: 20px;
}

.booking-form-area label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.booking-form-area input[type="text"],
.booking-form-area input[type="email"],
.booking-form-area input[type="tel"],
.booking-form-area select,
.booking-form-area textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #fafafa;
}

.booking-form-area input:focus,
.booking-form-area select:focus,
.booking-form-area textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.booking-form-area textarea {
    resize: vertical;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.payment-option {
    border: 2px solid #eee;
    padding: 20px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.payment-option.active {
    border-color: var(--secondary);
    background: rgba(212, 160, 23, 0.05);
}

.payment-option input {
    display: none;
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary);
}

.card-icons {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
}

.secure-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.secure-text i {
    color: #10b981;
}

/* Booking Summary Sidebar */
.summary-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: sticky;
    top: 120px;
}

.room-preview {
    position: relative;
    height: 200px;
}

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

.room-preview-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.room-preview-info h4 {
    color: var(--white);
    font-size: 1.2rem;
}

.room-preview-info p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.room-preview-info i {
    color: var(--secondary);
}

.booking-details, .price-breakdown, .cancellation-policy {
    padding: 25px;
    border-bottom: 1px solid #eee;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.detail-item .label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-item .value {
    font-weight: 600;
}

.price-breakdown h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.price-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.price-line.total {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
}

.cancellation-policy h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.cancellation-policy p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .form-row, .payment-options {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1024px) {
    .room-hero-grid, .details-grid {
        grid-template-columns: 1fr;
    }
    
    .room-hero-grid {
        height: auto;
    }
    
    .room-gallery-main {
        height: 400px;
    }
    
    .room-gallery-thumbs {
        flex-direction: row;
        height: 150px;
    }
    
    .room-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .amenities-list {
        grid-template-columns: 1fr;
    }
    
    .room-gallery-thumbs {
        display: none;
    }
}
#newsletter {
    background: var(--primary);
    padding: 80px 0;
}

.newsletter-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    width: 100%;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(212, 160, 23, 0.2);
}

/* Footer */
#main-footer {
    background: #0a101d;
    color: var(--white);
    padding: 100px 0 30px;
}

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

.footer-info .logo a {
    color: var(--white);
    margin-bottom: 25px;
    display: inline-block;
}

.footer-info p {
    opacity: 0.7;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
}

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

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.footer-contact ul li i {
    color: var(--secondary);
    margin-top: 5px;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .booking-box {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .rooms-grid, .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 2px;
        background: var(--white);
        margin: 5px 0;
        transition: var(--transition);
    }
    
    #main-header.scrolled .mobile-menu-btn span {
        background: var(--primary);
    }
    
    .newsletter-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .rooms-grid, .facilities-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 20px;
    }
}

 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . f o r m - r o w   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         } 
         
         . b o o k i n g - p a g e - h e a d e r   h 1   { 
                 f o n t - s i z e :   2 . 2 r e m ; 
         } 
 }  
 
 / *   C o n t a c t   P a g e   S t y l e s   * / 
 . c o n t a c t - h e r o   { 
         h e i g h t :   6 0 v h ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         p o s i t i o n :   r e l a t i v e ; 
         o v e r f l o w :   h i d d e n ; 
         c o l o r :   v a r ( - - w h i t e ) ; 
 } 
 
 . c o n t a c t - g r i d   { 
         d i s p l a y :   g r i d ; 
         g r i d - t e m p l a t e - c o l u m n s :   1 . 5 f r   1 f r ; 
         g a p :   8 0 p x ; 
         m a r g i n - b o t t o m :   8 0 p x ; 
 } 
 
 . c o n t a c t - f o r m - b o x   { 
         b a c k g r o u n d :   v a r ( - - w h i t e ) ; 
         p a d d i n g :   5 0 p x ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
 } 
 
 . i n f o - l i s t   { 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   3 5 p x ; 
         m a r g i n - t o p :   4 0 p x ; 
 } 
 
 . i n f o - i t e m   { 
         d i s p l a y :   f l e x ; 
         g a p :   2 0 p x ; 
         a l i g n - i t e m s :   f l e x - s t a r t ; 
 } 
 
 . i n f o - i t e m   i   { 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
         b a c k g r o u n d :   r g b a ( 2 1 2 ,   1 6 0 ,   2 3 ,   0 . 1 ) ; 
         c o l o r :   v a r ( - - s e c o n d a r y ) ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         a l i g n - i t e m s :   c e n t e r ; 
         f o n t - s i z e :   1 . 2 r e m ; 
         f l e x - s h r i n k :   0 ; 
 } 
 
 . i n f o - i t e m   h 4   { 
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ; 
         f o n t - s i z e :   1 . 1 r e m ; 
         m a r g i n - b o t t o m :   8 p x ; 
 } 
 
 . i n f o - i t e m   p   { 
         c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
         f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 
 . s o c i a l - b o x   { 
         m a r g i n - t o p :   5 0 p x ; 
         p a d d i n g - t o p :   4 0 p x ; 
         b o r d e r - t o p :   1 p x   s o l i d   # e e e ; 
 } 
 
 . s o c i a l - b o x   h 4   { 
         m a r g i n - b o t t o m :   2 0 p x ; 
         f o n t - s i z e :   1 . 1 r e m ; 
 } 
 
 . m a p - c o n t a i n e r   { 
         b o x - s h a d o w :   v a r ( - - s h a d o w ) ; 
         b o r d e r - r a d i u s :   v a r ( - - r a d i u s ) ; 
         o v e r f l o w :   h i d d e n ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
         . c o n t a c t - g r i d   { 
                 g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
                 g a p :   5 0 p x ; 
         } 
 }  
 
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-page-header h1 {
        font-size: 2.2rem;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.contact-section {
    background: var(--light);
    position: relative;
    z-index: 10;
}

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

.contact-form-box {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Contact Form Input Styling */
.contact-form-box .form-group {
    margin-bottom: 25px;
}

.contact-form-box label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-form-box input[type='text'],
.contact-form-box input[type='email'],
.contact-form-box textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #fafafa;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

.contact-form-box textarea {
    resize: vertical;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(212, 160, 23, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.social-box {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.social-box h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.map-container {
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
