/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* ADDED: Prevent body scroll when mobile nav is open (toggle this class with JS when nav opens) */
body.nav-open {
    overflow: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Luxury Hospitality Theme */
    --primary-navy: #1a237e;
    --primary-gold: #ff8f00;
    --secondary-navy: #283593;
    --secondary-gold: #ffb74d;
    --accent-cream: #fafafa;
    --light-gray: #f5f5f5;
    --medium-gray: #616161;
    --dark-gray: #212121;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Legacy color mappings for compatibility */
    --primary-red: var(--primary-gold);
    --primary-blue: var(--primary-navy);
    --secondary-red: var(--secondary-gold);
    --secondary-blue: var(--secondary-navy);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-blue);
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    line-height: 1.5;
    position: relative;   /* ADDED for enhanced hover effect */
    overflow: hidden;     /* ADDED for enhanced hover effect */
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--secondary-gold);
    border-color: var(--secondary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.btn-secondary:hover {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Button shimmer (added) */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s;
}
.btn:hover::before { left: 100%; }

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo-link {
    text-decoration: none;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Fallback for logo if image doesn't load */
.logo-img:not([src]),
.logo-img[src=""] {
    display: none;
}

.logo-text {
    display: block;
    font-size: 1.5rem;
    margin: 0;
    color: var(--white);
    font-weight: 600;
    line-height: 1.2;
}

/* Attribute selector fallback (works in all modern browsers) */
.logo-img:not([src]) ~ .logo-text,
.logo-img[src=""] ~ .logo-text {
    display: block;
}

/* :has() selector fallback (where supported) */
.logo-link:has(.logo-img:not([src])) .logo-text,
.logo-link:has(.logo-img[src=""]) .logo-text {
    display: block;
}

/* nav menu */
.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition);
    opacity: 0.9;
}

/* ===== ADDED: animated underline effect (works in all browsers) ===== */
.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -0.5rem;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.28s ease, left 0.28s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    opacity: 1;
}

/* hamburger toggle (mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e3f2fd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Keep fadeInRight, and ADD float animation as a secondary animation (non-destructive) */
.hero-image {
    position: relative;
    /* no change here */
}

/* Combine entry animation (fadeInRight) AND a slow floating loop */
.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    animation: fadeInRight 0.8s ease-out 0.2s both, float 6s ease-in-out 6s infinite;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 80px 0;
    background-color: var(--primary-navy);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Newsletter form messages - consolidated */
.newsletter-form .form-success,
.newsletter-form .error-message {
    margin-top: 0.5rem;
    text-align: left;
    width: 100%;
    display: block;
}

/* Newsletter form specific styling */
.newsletter-form-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-form .input-container {
    flex: 1;
    position: relative;
    min-width: 250px; /* Ensure container can accommodate the input width */
}

/* Newsletter form input - larger size for better UX */
.newsletter-form .form-input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    height: auto;
    min-height: 3rem;
    border-radius: 8px;
    width: 100%; /* Ensure input takes full width of its container */
    min-width: 250px; /* Minimum width for the input field itself */
}

.newsletter-form .input-container .error-message {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

.newsletter-form .btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    min-height: 3rem;
    border-radius: 8px;
}

/* Base form group styles - consolidated */
.form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
}

/* Base form input styles */
.form-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
}

/* ===== PROMOTIONS HIGHLIGHT SECTION ===== */
.promotions-highlight {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.promotion-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promotion-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.promotion-content {
    padding: 1.5rem;
}

.promotion-title {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.promotion-description {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.promotion-link {
    color: var(--primary-gold);
    font-weight: 500;
    transition: var(--transition);
}

.promotion-link:hover {
    color: var(--secondary-gold);
}

/* ===== HOTELS TEASER SECTION ===== */
.hotels-teaser {
    padding: 80px 0;
    background-color: var(--white);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hotel-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.hotel-image {
    height: 200px;
    overflow: hidden;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.05);
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-name {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.hotel-location {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-text {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.hotel-link {
    color: var(--primary-navy);
    font-weight: 500;
    transition: var(--transition);
}

.hotel-link:hover {
    color: var(--secondary-navy);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    background-color: var(--light-gray);
}

.author-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Fallback for missing avataaars images */
.avatar-img:not([src]),
.avatar-img[src=""] {
    display: none;
}

/* Fallback & initials: :has() where supported, otherwise ensure CSS still works because avatar-img is hidden above */
.author-avatar:has(.avatar-img:not([src])),
.author-avatar:has(.avatar-img[src=""]) {
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-gold));
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

/* For browsers that don't support :has(), you can also add a helper class via JS such as .avatar--noimg */
/* Example: <div class="author-avatar avatar--noimg" data-initials="HJ"> and CSS to style .avatar--noimg */

/* Pseudo-element for initials when no image */
.author-avatar:has(.avatar-img:not([src]))::after,
.author-avatar:has(.avatar-img[src=""])::after {
    content: attr(data-initials);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.author-name {
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-title {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease-out;
}

.footer-section:first-child {
    max-width: 400px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-title h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-subtitle {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    display: inline-block;
    opacity: 0.9;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0.25rem;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.28s ease, left 0.28s ease;
    transform: translateX(-50%);
}

.footer-links a:hover::after {
    width: 100%;
    left: 0;
    transform: translateX(0);
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.contact-info p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
}

.contact-info p:first-of-type::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6b35' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.contact-info p:nth-of-type(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6b35' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.contact-info p:nth-of-type(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ff6b35' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.contact-info a {
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    /* ADDED: initial translate for smooth rise */
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

/* Visible state */
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover */
.back-to-top:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* ADDED: subtle pulse to attract attention (low-impact) */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 143, 0, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(255, 143, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 143, 0, 0); }
}
.back-to-top { animation: pulse 2.8s infinite; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ADDED: small floating animation for hero imagery */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
        box-shadow: var(--shadow);
        padding: 2rem;
        transform: translateY(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1002;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
        padding: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        transition: var(--transition);
    }

    .nav-link:hover {
        padding-left: 1rem;
        background-color: rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .nav-link {
        font-size: 1.15rem;
        padding: 1.125rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Logo responsive adjustments */
    .logo-img {
        height: 30px;
        max-width: 120px;
        padding: 4px 8px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-group {
        flex-direction: column;
    }

    .promotions-grid,
    .hotels-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section:first-child {
        max-width: none;
    }

    .social-links {
        justify-content: center;
    }

    .footer-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.875rem 0;
    }
}

@media (max-width: 360px) {
    .nav-link {
        font-size: 0.95rem;
        padding: 0.75rem 0;
    }
}


/* ===== JQUERY ENHANCED STYLES ===== */

/* Header scroll effect */
.header.scrolled {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(40, 53, 147, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hover effects for cards */
.hover-effect {
    transform: translateY(-8px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Form validation styles */
.form-input.error {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* ADDED: clearer focus for error inputs */
.form-input.error:focus {
    border-color: #f44336;
    background-color: rgba(244, 67, 54, 0.05);
    box-shadow: 0 0 0 4px rgba(244, 67, 54, 0.12);
}

/* Base error message styles - consolidated */
.error-message {
    color: #f44336;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
    text-align: left;
    width: 100%;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
    min-height: 0;
}

/* Show error message with animation */
.error-message:not(:empty),
.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animation classes for jQuery */
.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Smooth transitions for jQuery animations */
.promotion-card,
.hotel-card,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.promotion-card.animate-in,
.hotel-card.animate-in,
.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced button hover effects (already added earlier but kept for compatibility) */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== ABOUT US PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/hero-section.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
    background-color: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text {
    animation: fadeInUp 0.8s ease-out;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.overview-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.overview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-navy));
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.value-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-bio {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Company Stats Section */
.company-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Company History Timeline */
.company-history {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-gold), var(--primary-navy));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 0 2rem;
    position: relative;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 2rem;
    margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 2rem;
    margin-left: 0;
}

.timeline-title {
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.timeline-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e3f2fd 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-description {
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN FOR ABOUT PAGE ===== */
@media (max-width: 768px) {
    .about-hero {
        background-attachment: scroll;
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-img {
        height: 300px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.5rem;
    }
    
    .timeline-content {
        margin: 0 !important;
        margin-top: 1rem !important;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
        min-height: 45vh;
        background-attachment: scroll;
    }
    
    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    .overview-img {
        height: 250px;
    }
    
    .value-card,
    .team-member,
    .timeline-content {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

/* ===== PROMOTIONS PAGE STYLES ===== */

/* Promotions Hero Section */
.promotions-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/hotels/hotel1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.promotions-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.promotions-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.promotions-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.promotions-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.promotions-hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.promotions-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.promotions-hero-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Featured Promotions Section */
.featured-promotions {
    padding: 80px 0;
    background-color: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-promotion-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
}

.featured-promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.featured-promotion-card .promotion-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-promotion-card .promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.promotion-badge.featured {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.promotion-badge.business {
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    color: var(--white);
}

.promotion-badge.seasonal {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: var(--white);
}

.promotion-badge.weekend {
    background: linear-gradient(135deg, #9c27b0, #ba68c8);
    color: var(--white);
}

.promotion-badge.family {
    background: linear-gradient(135deg, #ff5722, #ff7043);
    color: var(--white);
}

.promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.featured-promotion-card:hover .promotion-overlay {
    opacity: 1;
}

.promotion-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

.promotion-content {
    padding: 2rem;
}

.promotion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.promotion-title {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.promotion-discount {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 1rem;
}

.promotion-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.promotion-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-icon {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.detail-text {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.promotion-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.promotion-code {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
    background-color: rgba(255, 143, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 143, 0, 0.3);
}

/* All Promotions Section */
.all-promotions {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.promotion-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-navy);
    background-color: transparent;
    color: var(--primary-navy);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.promotion-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.promotion-card .promotion-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.promotion-card .promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.promotion-card:hover .promotion-image img {
    transform: scale(1.05);
}

.promotion-card .promotion-content {
    padding: 1.5rem;
}

.promotion-card .promotion-title {
    color: var(--dark-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.promotion-card .promotion-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.promotion-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.promotion-savings {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.85rem;
}

.promotion-validity {
    color: var(--medium-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.promotion-link {
    color: var(--primary-navy);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.promotion-link:hover {
    color: var(--secondary-navy);
}

/* Promotion Videos Section */
.promotion-videos {
    padding: 80px 0;
    background-color: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    cursor: pointer;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    color: var(--dark-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.video-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Promotions CTA Section */
.promotions-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e3f2fd 100%);
    text-align: center;
}

.promotions-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.promotions-cta .cta-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.promotions-cta .cta-description {
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.promotions-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN FOR PROMOTIONS PAGE ===== */
@media (max-width: 768px) {
    .promotions-hero {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .promotions-hero-title {
        font-size: 2.5rem;
    }
    
    .promotions-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .promotions-hero-stats {
        gap: 2rem;
    }
    
    .promotions-hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-promotion-card .promotion-image {
        height: 250px;
    }
    
    .promotion-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .promotion-discount {
        margin-left: 0;
        align-self: flex-start;
    }
    
    .promotion-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .promotion-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .promotions-grid {
        grid-template-columns: 1fr;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .promotions-cta .cta-title {
        font-size: 2rem;
    }
    
    .promotions-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .promotions-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .promotions-hero-title {
        font-size: 2rem;
    }
    
    .promotions-hero-subtitle {
        font-size: 1rem;
    }
    
    .promotions-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .featured-promotion-card .promotion-image {
        height: 200px;
    }
    
    .promotion-content {
        padding: 1.5rem;
    }
    
    .promotion-title {
        font-size: 1.3rem;
    }
    
    .promotion-discount {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button svg {
        width: 40px;
        height: 40px;
    }
    
    .promotions-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .promotions-cta .cta-description {
        font-size: 1.1rem;
    }
}

/* ===== GALLERY PAGE STYLES ===== */

/* Gallery Hero Section */
.gallery-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/gallery/dad-hotel-FCSDBKliyTQ-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.gallery-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.gallery-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Gallery Filters Section */
.gallery-filters {
    padding: 40px 0;
    background-color: var(--white);
    border-bottom: 1px solid #e9ecef;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-navy);
    background-color: transparent;
    color: var(--primary-navy);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Gallery Grid Section */
.gallery-grid-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    background-color: var(--white);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    flex-direction: column;
    gap: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.gallery-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-btn:hover {
    background-color: var(--secondary-gold);
    transform: scale(1.1);
    box-shadow: var(--shadow-hover);
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e3f2fd 100%);
    text-align: center;
}

.gallery-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.gallery-cta .cta-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.gallery-cta .cta-description {
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.gallery-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-img {
    max-width: 95%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-info {
    text-align: center;
    color: var(--white);
    margin-top: 1rem;
    max-width: 600px;
}

.lightbox-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.lightbox-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Gallery Filter Animation */
.gallery-item.hidden {
    display: none;
}

.gallery-item.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN FOR GALLERY PAGE ===== */
@media (max-width: 768px) {
    .gallery-hero {
        background-attachment: scroll;
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .gallery-hero-title {
        font-size: 2.5rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-img {
        height: 200px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
    
    .lightbox-close {
        top: -40px;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 75vh;
    }
    
    .gallery-cta .cta-title {
        font-size: 2rem;
    }
    
    .gallery-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-hero {
        padding: 100px 0 60px;
        min-height: 45vh;
    }
    
    .gallery-hero-title {
        font-size: 2rem;
    }
    
    .gallery-hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-img {
        height: 180px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    .gallery-title {
        font-size: 1.1rem;
    }
    
    .gallery-description {
        font-size: 0.85rem;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
    }
    
    .lightbox-img {
        max-width: 95%;
        max-height: 65vh;
    }
    
    .lightbox-title {
        font-size: 1.25rem;
    }
    
    .lightbox-description {
        font-size: 0.9rem;
    }
    
    .gallery-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .gallery-cta .cta-description {
        font-size: 1.1rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .btn::before {
        display: none;
    }
    
    .gallery-item {
        transition: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
    
    .gallery-img {
        transition: none;
    }
    
    .gallery-item:hover .gallery-img {
        transform: none;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/hotels/hotel1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-navy));
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.contact-card-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.form-description {
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0; /* Removed bottom margin */
}

/* Contact form group styles - consolidated */
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0; /* Removed bottom margin */
}

.contact-form .form-label {
    color: var(--dark-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    color: var(--dark-gray);
}

.contact-form .form-input:focus,
.contact-form .form-select:focus,
.contact-form .form-textarea:focus {
    outline: none;
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.contact-form .form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.contact-form .checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-form .form-checkbox {
    display: none;
}

.contact-form .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-form .form-checkbox:checked + .checkbox-custom {
    background-color: var(--primary-navy);
    border-color: var(--primary-navy);
}

.contact-form .form-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

/* Contact form specific error styling */
.contact-form .error-message {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    line-height: 1.2;
    min-height: 1.2em;
    display: block;
}

/* Contact form input spacing - consolidated */
.contact-form .form-input,
.contact-form .form-select,
.contact-form .form-textarea {
    margin-bottom: 0;
}

/* Add error state styling for form inputs */
.contact-form .form-input.error,
.contact-form .form-select.error,
.contact-form .form-textarea.error {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Form errors display area */
.form-errors {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    animation: slideDown 0.3s ease-out;
}

.form-errors .error-summary h4 {
    color: #721c24;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.form-errors .error-summary ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #721c24;
}

.form-errors .error-summary li {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    line-height: 1.4;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 0.75rem;
}

.contact-form .form-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: var(--white);
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-form .success-icon {
    flex-shrink: 0;
}

.contact-form .success-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form .success-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Corporate Team Section */
.corporate-team {
    padding: 80px 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-title {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.member-email,
.member-phone {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.member-email a,
.member-phone a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition);
}

.member-email a:hover,
.member-phone a:hover {
    color: var(--secondary-navy);
    text-decoration: underline;
}

.member-bio {
    color: var(--medium-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    margin-top: 1rem;
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e3f2fd 100%);
    text-align: center;
}

.contact-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta .cta-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-cta .cta-description {
    color: var(--medium-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN FOR CONTACT PAGE ===== */
@media (max-width: 768px) {
    .contact-hero {
        background-attachment: scroll;
        min-height: 50vh;
        padding: 100px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile form improvements */
    .contact-form .form-group {
        margin-bottom: 0; /* Removed bottom margin on mobile */
    }
    
    .contact-form .error-message {
        font-size: 0.75rem;
        margin-top: 0.25rem;
    }
    
    /* Newsletter form mobile responsive */
    .newsletter-form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form .input-container {
        width: 100%;
        min-width: auto; /* Remove min-width on mobile for full width */
    }
    
    .newsletter-form .form-input {
        min-width: auto; /* Remove min-width constraint on mobile */
    }
    
    .newsletter-form .btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        min-height: 3rem;
    }
    
    .newsletter-form .form-input {
        padding: 1rem 1.25rem;
        min-height: 3rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta .cta-title {
        font-size: 2rem;
    }
    
    .contact-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 60px;
        min-height: 45vh;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-form .form-title {
        font-size: 1.5rem;
    }
    
    .contact-form .form-description {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .contact-cta .cta-title {
        font-size: 1.8rem;
    }
    
    .contact-cta .cta-description {
        font-size: 1.1rem;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.form-input:focus,
.filter-btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Navigation links - only show focus outline for keyboard navigation */
.nav-link:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Remove focus outline for mouse clicks on navigation links */
.nav-link:focus:not(:focus-visible) {
    outline: none;
}

/* Additional focus management for navigation */
.nav-link {
    /* Ensure smooth transitions */
    transition: var(--transition);
}

/* Remove focus outline immediately after click */
.nav-link:active {
    outline: none;
}

/* Ensure focus is removed after navigation */
.nav-link:focus {
    transition: outline 0.1s ease;
}

/* Class to remove focus outlines when needed */
.no-focus-outline * {
    outline: none !important;
}

/* Specific handling for navigation links */
.nav-link.no-focus {
    outline: none !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-gold: #ff6f00;
        --primary-navy: #0d47a1;
        --medium-gray: #424242;
    }
}

/* ===== HOTELS PAGE STYLES ===== */

/* Hotels Hero Section */
.hotels-hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/hotels/hotel1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    text-align: center;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hotels-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hotels-hero-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 700;
}

.hotels-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hotels-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hotels-hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
}

.hotels-hero-stats .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hotels-hero-stats .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Featured Hotels Section */
.featured-hotels {
    padding: 80px 0;
    background-color: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.featured-hotel-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    position: relative;
    will-change: box-shadow;
}

.featured-hotel-card:hover {
    box-shadow: var(--shadow-hover);
}

.featured-hotel-card .hotel-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-hotel-card .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.featured-hotel-card:hover .hotel-image img {
    transform: scale(1.02);
}

.hotel-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.hotel-badge.featured {
    background: var(--primary-gold);
    color: var(--white);
}

.hotel-badge.luxury {
    background: var(--primary-navy);
    color: var(--white);
}

.hotel-badge.business {
    background: var(--medium-gray);
    color: var(--white);
}

.hotel-badge.boutique {
    background: var(--secondary-gold);
    color: var(--dark-gray);
}

.hotel-badge.resort {
    background: var(--secondary-navy);
    color: var(--white);
}

.hotel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    will-change: opacity;
}

.featured-hotel-card:hover .hotel-overlay {
    opacity: 1;
}

.hotel-content {
    padding: 2rem;
}

.hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hotel-title {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1rem;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.hotel-location {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.hotel-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hotel-amenities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.amenity-icon {
    font-size: 1rem;
}

.hotel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.hotel-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

/* All Hotels Section */
.all-hotels {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.hotel-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-navy);
    background: transparent;
    color: var(--primary-navy);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-navy);
    color: var(--white);
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hotel-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;
}

.hotel-card:hover {
    box-shadow: var(--shadow-hover);
}

.hotel-card .hotel-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.hotel-card .hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.02);
}

.hotel-card .hotel-content {
    padding: 1.5rem;
}

.hotel-name {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.hotel-card .hotel-location {
    color: var(--medium-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hotel-card .hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hotel-card .hotel-description {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.hotel-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.hotel-card .hotel-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.hotel-rooms {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.hotel-link {
    color: var(--primary-navy);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.hotel-link:hover {
    color: var(--secondary-navy);
}

/* Hotel Amenities Section */
.hotel-amenities {
    padding: 30px 0;
    background-color: var(--white);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.amenity-category {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    transition: box-shadow 0.3s ease;
    will-change: box-shadow;
}

.amenity-category:hover {
    box-shadow: var(--shadow);
}

.amenity-category .amenity-icon {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.amenity-title {
    font-size: 1.25rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.amenity-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Hotels CTA Section */
.hotels-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white);
    text-align: center;
}

.hotels-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.hotels-cta .cta-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.hotels-cta .cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hotels-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .featured-hotel-card,
    .hotel-card,
    .amenity-category {
        transition: none;
    }
    
    .featured-hotel-card .hotel-image img,
    .hotel-card .hotel-image img {
        transition: none;
    }
    
    .featured-hotel-card:hover .hotel-image img,
    .hotel-card:hover .hotel-image img {
        transform: none;
    }
    
    .hotel-overlay {
        transition: none;
    }
}

/* Performance optimizations for mobile devices */
@media (max-width: 768px) {
    .featured-hotel-card,
    .hotel-card,
    .amenity-category {
        transition: box-shadow 0.2s ease;
    }
    
    .featured-hotel-card .hotel-image img,
    .hotel-card .hotel-image img {
        transition: none;
    }
    
    .featured-hotel-card:hover .hotel-image img,
    .hotel-card:hover .hotel-image img {
        transform: none;
    }
}

/* Responsive Design for Hotels Page */
@media (max-width: 768px) {
    .hotels-hero {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .hotels-hero-title {
        font-size: 2.5rem;
    }
    
    .hotels-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hotels-hero-stats {
        gap: 2rem;
    }
    
    .hotels-hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-hotel-card .hotel-image {
        height: 250px;
    }
    
    .hotel-amenities {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hotel-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .hotels-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hotels-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .hotels-hero-title {
        font-size: 2rem;
    }
    
    .hotels-hero-subtitle {
        font-size: 1rem;
    }
    
    .hotels-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .featured-hotel-card .hotel-image {
        height: 200px;
    }
    
    .hotel-content {
        padding: 1.5rem;
    }
    
    .hotel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hotel-amenities {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .amenity-category {
        padding: 1.5rem;
    }
}