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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ===== CSS VARIABLES - Choice Hotels MainStay Brand Colors ===== */
:root {
    /* Choice Hotels MainStay Brand Colors */
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --secondary-color: #ff7700;
    --secondary-dark: #e55100;
    --accent-color: #00aa44;
    --accent-light: #4caf50;
    
    /* Neutral Colors */
    --text-dark: #2c3e50;
    --text-light: #5d6d7e;
    --text-muted: #95a5a6;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    
    /* Choice Hotels Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    --gradient-secondary: linear-gradient(135deg, #ff7700 0%, #e55100 100%);
    --gradient-accent: linear-gradient(135deg, #00aa44 0%, #4caf50 100%);
    --gradient-hero: linear-gradient(135deg, #0066cc 0%, #004499 50%, #ff7700 100%);
    
    /* Professional Extended Stay Colors */
    --business-blue: #1e3a8a;
    --corporate-gray: #374151;
    --warm-white: #fefefe;
    --success-green: #059669;
    --warning-orange: #f59e0b;
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: var(--spacing-md) auto 0;
    border-radius: 3px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ===== BUTTON SYSTEM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 25px var(--shadow-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

.nav-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: -3px;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-phone {
    background: var(--gradient-primary);
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav-phone::after {
    display: none;
}

.nav-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    align-items: center;
    gap: var(--spacing-3xl);
    padding: var(--spacing-3xl) var(--spacing-md);
    margin-top: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.75rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.image-placeholder {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    border-radius: 20px;
    padding: var(--spacing-xl);
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
    transition: var(--transition);
    line-height: 1.5;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e8eaed 0%, #d2d7db 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.about-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px var(--shadow-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px var(--shadow-dark);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.about-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SUITES SECTION ===== */
.suites {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.suites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.suite-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px var(--shadow-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
}

.suite-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-dark);
}

.suite-card.featured {
    border: 3px solid var(--secondary-color);
    transform: scale(1.02);
}

.suite-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.suite-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-secondary);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.suite-image .image-placeholder {
    height: 250px;
    margin: 0;
    border-radius: 0;
    border: none;
}

.suite-content {
    padding: var(--spacing-xl);
}

.suite-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.suite-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.suite-features span {
    background: var(--background-light);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.suite-features i {
    color: var(--primary-color);
    margin-right: 5px;
}

.suite-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.suite-amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xs);
    margin: var(--spacing-md) 0;
}

.amenity-item {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.amenity-item::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: var(--spacing-xs);
}

.suite-pricing {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md);
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

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

.price-weekly,
.price-monthly {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-note {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
    margin-top: var(--spacing-xl);
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: var(--spacing-xs);
}

/* ===== AMENITIES SECTION ===== */
.amenities {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.amenity-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 20px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-dark);
}

.amenity-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 1.7rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 170, 68, 0.3);
}

.amenity-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.amenity-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== LOCATION SECTION ===== */
.location {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.address-card {
    background: var(--background-light);
    padding: var(--spacing-xl);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 20px var(--shadow-color);
}

.address-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-weight: 600;
}

.address-card i {
    color: var(--primary-color);
}

.location-highlights h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px var(--shadow-color);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2px;
}

.highlight-item h4 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

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

.attractions-list h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.attraction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.attraction-name {
    font-weight: 500;
    color: var(--text-dark);
}

.attraction-distance {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.location-map .image-placeholder {
    height: 500px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-3xl);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.contact-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 3px 20px var(--shadow-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px var(--shadow-dark);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.3rem;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.contact-card h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.contact-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-card span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 25px var(--shadow-color);
}

.contact-form h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    font-weight: 600;
    font-size: 1.4rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.footer-logo p {
    color: #94a3b8;
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.choice-logo {
    margin-top: var(--spacing-md);
}

.choice-logo p {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.footer-section h4 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    background: var(--primary-dark);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: #94a3b8;
}

.footer-contact i {
    color: var(--primary-color);
    width: 18px;
}

.footer-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.star-rating {
    margin-top: var(--spacing-md);
}

.stars {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-right: var(--spacing-xs);
}

.rating-text {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: var(--spacing-md);
    text-align: center;
    color: #94a3b8;
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

/* ===== NOTIFICATION SYSTEM ===== */
.notification {
    position: fixed;
    top: 100px;
    right: var(--spacing-md);
    background: var(--gradient-accent);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 5px 25px var(--shadow-dark);
    transform: translateX(400px);
    transition: transform 0.4s ease;
    z-index: 1001;
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
}

.notification.error {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        padding: var(--spacing-xl) var(--spacing-sm);
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .location-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .suite-amenities {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: var(--spacing-lg) 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .about-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .suites-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .suite-features {
        justify-content: center;
    }
    
    .nav-container {
        padding: var(--spacing-sm);
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .nav-subtitle {
        font-size: 0.75rem;
    }
    
    .contact-form,
    .about-card,
    .amenity-card,
    .suite-content {
        padding: var(--spacing-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .notification {
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .location-map .image-placeholder {
        height: 300px;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-light: #000000;
        --border-color: #000000;
        --shadow-color: rgba(0, 0, 0, 0.3);
    }
}