@media (max-width: 768px) {
    .nav-book-btn {
        height: 28px;
        line-height: 28px;
        font-size: 1em;
        padding: 0 14px;
        border-radius: 20px;
    }
    .navbar,
    .header,
    .nav-container {
        background: #000 !important;
    }
}
@media (max-width: 768px) {
    .logo h1 {
        margin-left: 100px !important;
    }
    .fixed-logo-banner .logo-fixed-image {
        height: 100px !important;
        width: 100px !important;
        max-width: none !important;
    }
}
/* =========================
   CSS Variables
========================= */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* =========================
   Reset & Base Styles
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px; /* Offset for fixed header */
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #000000;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* =========================
   Utility Classes
========================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    font-weight: 700;
}

.section-header p {
    color: #cccccc;
    margin-top: 20px;
}

.divider {
    display: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #5fa9dd;
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #4a8fc4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* =========================
   Header & Navigation
========================= */
.header {
    background: #000000;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 20px;
}

.nav-left {
    order: 2;
    flex: 0 0 auto;
    margin-left: 200px;
}

.logo {
    order: 3;
    flex: 1;
    text-align: center;
}

.btn-primary {
    order: 4;
    flex: 0 0 auto;
    margin-right: 20px;
}

.hamburger {
    order: 5;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-weight: 500;
    position: relative;
    color: white;
    padding: 20px 25px;
    display: block;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-menu a.active {
    border-bottom: 3px solid white;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.dropdown-content a {
    color: white;
    padding: 15px 20px;
    text-transform: none;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #87afeb;
    transition: var(--transition);
}

/* =========================
   Hero Section with Slider
========================= */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Individual background images for each slide */
.slide:nth-child(1) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-3.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(4) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(5) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(6) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-6.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(7) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-7.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(8) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(9) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-9.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide:nth-child(10) {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('../images/home-slide-10.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    width: 90%;
    max-width: 800px;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--bg-white);
    width: 30px;
    border-radius: 6px;
}

.hero-cta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

/* =========================
   Quick Links
========================= */
.quick-links {
    padding: 80px 0;
    background: #000000;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: var(--bg-white);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.quick-link-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.quick-link-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.quick-link-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* =========================
   About Intro
========================= */
.about-intro {
    padding: 100px 0;
    background: #000000;
}

.about-with-weather {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

.about-content {
    text-align: justify;
    color: #ffffff;
}

.weather-widget {
    background: white;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: var(--shadow-hover);
    position: sticky;
    top: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1;
    width: fit-content;
    min-width: 180px;
}

.weather-location {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.weather-datetime {
    font-size: 0.54rem;
    color: var(--text-light);
    margin-bottom: 18px;
}

.weather-main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.weather-temp-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
}

.weather-display .loading {
    padding: 12px;
    color: var(--text-light);
}

.weather-icon-large {
    font-size: 1.5rem;
    color: #667eea;
}

.weather-temp-large {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-dark);
}

.weather-desc-large {
    font-size: 0.66rem;
    color: var(--text-dark);
    margin-top: 6px;
    text-transform: capitalize;
}

.lead {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-content p {
    color: #cccccc;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
}

/* =========================
   Amenities
========================= */
.amenities {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    background-image: url('../images/background-amenities.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(236, 240, 241, 0.4);
    z-index: 1;
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.amenities-wrapper {
    background: transparent;
    padding: 60px;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.amenity-item {
    background: #d4e9f7;
    padding: 18px 12px;
    text-align: center;
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.amenity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Home page amenities - 7 columns, no tooltip */
.amenities-grid-home {
    grid-template-columns: repeat(7, 1fr);
}

.amenity-item-home {
    cursor: default;
}

.amenity-item-home::after,
.amenity-item-home::before {
    display: none;
}

.amenity-item-home:hover::after {
    transform: none;
    opacity: 0;
}

/* Tooltip styles */
.amenity-item::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: #fffbcc;
    color: #2c3e50;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    width: 250px;
    text-align: left;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.amenity-item::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    border: 8px solid transparent;
    border-top-color: #fffbcc;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.amenity-item:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.amenity-item:hover::before {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.amenity-item i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.amenity-item h4 {
    color: var(--text-dark);
    font-size: 0.85rem;
}

.amenity-item p {
    color: var(--text-dark);
}

/* =========================
   Rooms
========================= */
.rooms {
    padding: 100px 0;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.room-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.room-info {
    padding: 25px;
}

.room-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.room-info p {
    color: var(--text-light);
}

/* =========================
   Policy
========================= */
.policy {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    background-image: url('../images/policy-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(236, 240, 241, 0.4);
    z-index: 1;
}

.policy .container {
    position: relative;
    z-index: 2;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.policy-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.policy-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.policy-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.policy-card p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.local-info {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.local-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.local-info ul {
    margin-top: 15px;
}

.local-info li {
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.local-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* =========================
   Guest Reviews
========================= */
.reviews {
    padding: 100px 0;
    background: #000000;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.platform-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border: none;
    background: transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: #ffffff;
    font-size: 2.2rem;
    outline: none;
}

.platform-tab:focus {
    outline: none;
}

.platform-tab i,
.platform-tab img {
    font-size: 2.4rem;
}

.platform-tab:hover,
.platform-tab:hover img,
.platform-tab:hover i {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.platform-tab.active,
.platform-tab.active img,
.platform-tab.active i {
    background: transparent;
    border-color: transparent;
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.reviews-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.google-reviews-widget {
    flex: 0 0 280px;
    background: #d4e9f7;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-hover);
    position: sticky;
    top: 100px;
}

.widget-header {
    margin-bottom: 20px;
    text-align: center;
}

.widget-header i,
    .widget-header h3 {
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--font-heading);
        line-height: 1;
        margin: 0;
        padding: 0;
        grid-column: 3;
        grid-row: 1;
    }
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 10px;
}

.rating-stars i {
    color: #f39c12;
    font-size: 1.3rem;
    margin: 0 2px;
}

.rating-count {
    font-size: 0.9rem;
    opacity: 0.9;
}

.reviews-slider {
    flex: 1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(44, 62, 80, 0.1);
}

.review-logo {
    font-size: 2rem;
    color: var(--accent-color);
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #f39c12;
    font-size: 1rem;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    flex-grow: 1;
}

.review-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: right;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: right;
    margin-top: 5px;
    font-style: italic;
}

.review-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.review-prev,
.review-next {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.review-prev i,
.review-next i {
    color: white;
    font-size: 1rem;
    display: inline-block;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.review-prev:disabled,
.review-next:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    opacity: 0.5;
}

.review-prev:disabled:hover,
.review-next:disabled:hover {
    transform: scale(1);
}

.review-dots {
    display: flex;
    gap: 10px;
}

.review-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.review-dots .dot:hover {
    background: var(--text-light);
}

.review-dots .dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* =========================
   Location
========================= */
.location {
    padding: 100px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.address {
    display: flex;
    gap: 20px;
}

.address i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.address h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.address p {
    color: #cccccc;
}

.airport-info h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

.airport-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #cccccc;
}

.airport-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.airport-item div {
    flex: 1;
}

.airport-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.airport-item span {
    color: var(--text-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* =========================
   Footer
========================= */
.footer {
    background: #000000;
    color: var(--bg-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--bg-white);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
    .about-with-weather {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        text-align: center;
    }
    
    .weather-widget {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    /* Move weather widget above content on mobile */
    .about-with-weather {
        display: flex;
        flex-direction: column;
    }
    
    .weather-widget {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: 0 !important;
        top: 0;
        display: block !important;
        flex-direction: column;
        background: var(--bg-white);
        width: 100vw;
        height: 100vh;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 70px 0 0 0;
        max-height: 100vh;
        overflow-y: auto;
        z-index: 10001;
    }

    .nav-menu.active {
        left: 0;
        display: block !important;
        z-index: 10001;
        border: 2px solid red;
    }

    .hamburger {
        display: flex;
        z-index: 10002;
        position: fixed;
        top: 20px;
        right: 20px;
        background: rgba(255,255,255,0.8);
        padding: 8px;
        border-radius: 8px;
    }
    
    /* Mobile dropdown styles */
    .dropdown {
        position: relative;
        width: 100%;
    }
    
    .dropdown > a {
        display: block;
        padding: 15px 20px !important;
        color: var(--text-dark) !important;
        background: transparent;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        background: #f5f5f5;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
        max-height: 500px;
    }
    
    .dropdown-content a {
        padding: 12px 20px 12px 40px !important;
        color: var(--text-dark) !important;
        background: #f5f5f5;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }
    
    .dropdown-content a:hover {
        background: #e8e8e8 !important;
        padding-left: 45px !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* =========================
   What's Around Us Section
========================= */
.around-us {
    background: var(--bg-white);
}

.around-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    flex-wrap: wrap;
    position: relative;
    background: transparent;
    border-bottom: none;
    padding: 0;
}

.around-tab-btn {
    padding: 12px 25px;
    border: none;
    border-right: none;
    background: transparent;
    color: #333;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.6rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    outline: none;
}

.around-tab-btn:last-child {
    border-right: none;
}

.around-tab-btn:hover {
    background: transparent;
    color: #000;
}

.around-tab-btn:focus {
    outline: none;
}

.around-tab-btn.active {
    background: transparent;
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: red;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    font-weight: 700;
}

.around-tab-btn i {
    font-size: 1.8rem;
}

.around-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
    padding-top: 40px;
}

.around-tab-content.active {
    display: block;
}

.around-map-container {
    width: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.around-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.around-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.around-info p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Others Tab Grid */
.others-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.others-category {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.others-category h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.others-category h4 i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.around-map-container-small {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Responsive for Around Us */
@media (max-width: 992px) {
    .others-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .around-tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .around-map-container iframe {
        height: 400px;
    }
    
    .around-map-container-small iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* Mobile-specific fixes for fixed logo */
@media (max-width: 992px) {
    /* Fix fixed logo positioning and size for tablets */
    div[style*="position: fixed"][style*="left: 96px"] {
        left: 10px !important;
        top: 5px !important;
        padding: 5px !important;
    }
    
    div[style*="position: fixed"] img {
        height: 60px !important;
        width: 60px !important;
    }
    
    .nav-left {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    /* Fix fixed logo for mobile phones */
    div[style*="position: fixed"][style*="left: 96px"] {
        left: 5px !important;
        top: 5px !important;
        padding: 5px !important;
    }
    
    div[style*="position: fixed"] img {
        height: 45px !important;
        width: 45px !important;
    }
    
    /* Reduce large font sizes for mobile */
    .platform-tab {
        font-size: 1.1rem !important;
        padding: 10px 15px !important;
    }
    
    .platform-tab i,
    .platform-tab img {
        font-size: 1.2rem !important;
    }
    
    /* Fix amenities grid for mobile */
    .amenities-grid-home {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .amenity-item-home {
        padding: 12px 8px !important;
    }
    
    .amenity-item-home i {
        font-size: 1.4rem !important;
    }
    
    .amenity-item-home h4 {
        font-size: 0.75rem !important;
    }
    
    /* Fix rooms grid */
    .rooms-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Improve touch targets */
    .dot {
        width: 16px;
        height: 16px;
    }
    
    .dot.active {
        width: 36px;
    }
    
    /* Fix hero height for mobile */
    .hero {
        height: 60vh;
        min-height: 400px;
    }
    
    /* Improve review cards on mobile */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .review-card {
        display: none;
    }
    
    .review-card:first-child {
        display: flex;
    }
    
    /* Display reviews below star rating on mobile */
    .reviews-container {
        flex-direction: column;
        align-items: center;
    }
    
    .google-reviews-widget {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 400px;
        margin-bottom: 0 !important;
        padding: 6px 12px 0px !important;
        text-align: center;
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-auto-rows: min-content;
        align-items: center;
        gap: 4px 6px;
        border-radius: 15px;
        box-sizing: border-box;
        overflow: visible;
        min-height: unset !important;
        height: auto !important;
    }
    
    .widget-header {
        display: contents;
    }
    
    .widget-header i,
    .widget-header img {
        font-size: 1.5rem;
        width: 1.5rem;
        height: 1.5rem;
        margin: 0;
        display: block;
        grid-column: 1;
        grid-row: 1;
    }
    
    .widget-header h3 {
        font-size: 2rem;
        font-weight: 700;
        font-family: var(--font-heading);
        line-height: 1;
        font-size: 0;
        margin: 0;
        padding: 0;
        grid-column: 3;
        grid-row: 1;
    }
    
    .widget-header h3::before {
        content: "4.8";
        font-size: 2rem;
        line-height: 1;
    }
    
    .widget-rating {
        margin: 0;
        padding: 0;
        border: none;
        text-align: center;
        grid-column: 2;
        grid-row: 1;
    }
    
    .rating-score {
        display: block !important;
        font-size: 2rem !important;
        font-weight: 700;
        color: #b71c1c;
        margin-bottom: 0;
        text-align: right !important;
        position: absolute;
        top: 12px;
        right: 18px;
        background: transparent;
        width: auto;
        z-index: 2;
    }
    .rating-score span {
        font-size: 2rem !important;
        font-weight: 700;
        color: #b71c1c;
    }
    .google-reviews-widget, .booking-reviews-widget, .hostelworld-reviews-widget, .tripadvisor-reviews-widget {
        position: relative;
    }
    
    .rating-stars {
        margin: 0;
        padding: 0;
        line-height: 1;
    }
    
    .rating-stars i {
        font-size: 1rem;
        margin: 0 1px;
    }
    
    .rating-count {
        font-size: 0.7rem;
        grid-column: 1 / -1;
        grid-row: 2;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
    }
    
    .reviews-slider {
        width: 100%;
    }
    
    /* Fix weather widget positioning */
    .weather-widget {
        position: relative !important;
        margin: 0 auto 30px;
    }
    
    /* Improve contact grid */
    .contact-grid {
        padding: 20px !important;
    }
    
    .contact-grid::before {
        top: 20px !important;
        left: 20px !important;
        right: 20px !important;
        bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    div[style*="position: fixed"] img {
        height: 40px !important;
        width: 40px !important;
    }
    
    .platform-tab {
        font-size: 0.9rem !important;
        padding: 8px 12px !important;
    }
    
    .section-header h2 {
        font-size: 1.6rem !important;
    }
    
    .amenities-grid-home {
        grid-template-columns: 1fr !important;
    }
}

/* Prevent horizontal scroll on all devices */
@media (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Custom scrollbar styling */
.restaurant-content::-webkit-scrollbar,
.bar-content::-webkit-scrollbar,
.attraction-content::-webkit-scrollbar,
.others-content::-webkit-scrollbar {
    width: 10px;
}

.restaurant-content::-webkit-scrollbar-track,
.bar-content::-webkit-scrollbar-track,
.attraction-content::-webkit-scrollbar-track,
.others-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.restaurant-content::-webkit-scrollbar-thumb,
.bar-content::-webkit-scrollbar-thumb,
.attraction-content::-webkit-scrollbar-thumb,
.others-content::-webkit-scrollbar-thumb {
    background: #d4e9f7;
    border-radius: 10px;
}

.restaurant-content::-webkit-scrollbar-thumb:hover,
.bar-content::-webkit-scrollbar-thumb:hover,
.attraction-content::-webkit-scrollbar-thumb:hover,
.others-content::-webkit-scrollbar-thumb:hover {
    background: #b8d9f0;
}

/* Coupon Banner */
.coupon-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    max-width: 320px;
    animation: slideInRight 0.5s ease-out, pulse 2s ease-in-out 3s infinite;
}
@media (max-width: 768px) {
    .coupon-banner {
        padding: 5px 6px !important;
        font-size: 0.40rem !important;
        max-width: 110px !important;
        bottom: 5px !important;
        left: auto !important;
        right: 0 !important;
        border-radius: 5px !important;
    }
    .coupon-icon {
        font-size: .7rem !important;
        margin-bottom: 3px !important;
    }
    .coupon-title {
        font-size: 0.7rem !important;
        margin-bottom: 3px !important;
    }
    .coupon-description {
        font-size: 0.4rem !important;
        margin-bottom: 3px !important;
    }
    .coupon-code {
        padding: 3.5px 5px !important;
        font-size: 0.5rem !important;
        margin: 4px 0 !important;
        border-radius: 3px !important;
    }
    .coupon-cta {
        padding: 3.5px 5px !important;
        font-size: 0.95rem !important;
        border-radius: 3px !important;
        margin-top: 3.5px !important;
    }
    .coupon-banner-close {
        width: 11px !important;
        height: 11px !important;
        font-size: 7px !important;
        top: 3px !important;
        right: 3px !important;
    }
    .coupon-copied {
        padding: 2.5px 5px !important;
        font-size: 0.4rem !important;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.coupon-banner-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.coupon-banner-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.coupon-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.coupon-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.coupon-code {
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    margin: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-code:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.coupon-description {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.coupon-cta {
    background: white;
    color: #667eea;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.coupon-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.coupon-copied {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.coupon-copied.show {
    opacity: 1;
}

@media (max-width: 768px) {
    .coupon-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* =========================
   Houston Page Styles
========================= */
.houston-intro {
    background: #000000;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

/* Food Section */
.food-categories {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.food-category {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.food-category:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.food-category h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.food-category p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.food-list {
    list-style: none;
    padding: 0;
}

.food-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.food-list li:last-child {
    border-bottom: none;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.activity-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.activity-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.activity-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.activity-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.activity-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.activity-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.activity-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Events Section */
.events-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.events-section:first-child {
    margin-top: 40px;
    border-top: none;
}

.events-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.sports-teams {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.team-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
}

.team-card h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.venue-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.venue-card:hover {
    box-shadow: var(--shadow-hover);
}

.venue-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.annual-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.event-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--accent-color);
    transition: var(--transition);
}

.event-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.event-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.convention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.convention-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.convention-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.theater-venues {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.theater-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.theater-card:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.theater-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tip-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.tip-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Houston Page Tabs */
.houston-tabs-section {
    background: white;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.houston-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.houston-tab {
    background: transparent;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.houston-tab:hover {
    color: var(--secondary-color);
}

.houston-tab.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
}

.houston-tab i {
    font-size: 1.3rem;
}

.houston-tab-content {
    display: none;
    background: #000000;
}

.houston-tab-content.active {
    display: block;
}

@media (max-width: 768px) {
    .houston-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .houston-tab {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}

/* Social Media Section */
.houston-social {
    background: #000000;
}

.social-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.social-section:first-child {
    margin-top: 40px;
    border-top: none;
}

.social-section h3 {
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.video-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.video-placeholder {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.video-placeholder.tiktok {
    background: linear-gradient(135deg, #000000 0%, #69C9D0 50%, #EE1D52 100%);
}

.video-placeholder.instagram {
    background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCAF45 100%);
}

.video-card h4 {
    padding: 15px 20px 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.video-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.accounts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.account-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.account-card:hover {
    box-shadow: var(--shadow-hover);
    transform: scale(1.05);
}

.account-card i {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.account-card h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.account-card p {
    font-size: 0.85rem;
}

.account-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-cta {
    margin-top: 50px;
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.social-cta p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.social-cta a {
    color: var(--accent-color);
    font-weight: bold;
}

.social-cta a:hover {
    color: var(--secondary-color);
}

/* About Page Main Tabs */
.about-tabs-section {
    background: white;
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.about-main-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.about-main-tab {
    background: transparent;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-main-tab:hover {
    color: var(--secondary-color);
}

.about-main-tab.active {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    font-weight: 600;
}

.about-main-tab i {
    font-size: 1.3rem;
}

.about-main-tab-content {
    display: none;
}

.about-main-tab-content.active {
    display: block;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .about-main-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .about-main-tab {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
}

/* Fixed Logo Banner Base Styles */
.fixed-logo-banner {
    position: fixed;
    top: 0;
    left: 96px;
    z-index: 9999;
    padding: 15px;
    transition: all 0.3s ease;
}

.logo-fixed-image {
    height: 240px;
    width: 240px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {
    /* Fix for iOS Safari fixed background */
    .amenities,
    .policy,
    .room-amenities {
        background-attachment: scroll !important;
    }
    
    /* Prevent iOS zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Improve touch targets for all interactive elements */
@media (hover: none) and (pointer: coarse) {
    /* This targets touch devices */
    .btn,
    .quick-link-card,
    .amenity-item,
    .room-card,
    .review-card,
    .gallery-item,
    a {
        min-height: 44px;
        min-width: 44px;
    }
    
    .slider-btn {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .dot {
        width: 20px;
        height: 20px;
    }
    
    .dot.active {
        width: 40px;
    }
}

/* Additional mobile optimizations for fixed logo */
@media (max-width: 992px) {
    .fixed-logo-banner {
        left: 10px;
        top: 5px;
        padding: 5px;
    }
    
    .logo-fixed-image {
        height: 80px;
        width: 80px;
    }
}

@media (max-width: 768px) {
    .fixed-logo-banner {
        left: 5px;
        top: 5px;
        padding: 5px;
    }
    
    .logo-fixed-image {
        height: 60px;
        width: 60px;
    }
}

@media (max-width: 480px) {
    .logo-fixed-image {
        height: 50px;
        width: 50px;
    }
}
