/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary: #D32F2F;
    --primary-dark: #990A0A;
    --primary-light: #FF6B6B;
    --secondary: #FFB700;
    --accent: #E91E63;
    --dark: #0F0F0F;
    --dark-gray: #1A1A1A;
    --gray: #666666;
    --light: #F5F1E8;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.3);
    --shadow-hot: 0 0 40px rgba(211,47,47,0.4);
    --transition: all 0.3s ease;
    
    --font-heading: 'Bebas Neue', cursive;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

@media (max-width: 1200px) {
    .container {
        max-width: 992px;
        padding: 0 28px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
        padding: 0 25px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 2px;
}

.section-tag {
    display: block;
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    text-align: center;
}

/* Location Top Bar */
.location-top-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 0;
    position: relative;
    z-index: 1001;
}

.location-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-text i, .hot-available i {
    margin-right: 8px;
}

.location-text {
    font-size: 0.85rem;
    font-weight: 500;
}

.hot-available {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@media (max-width: 768px) {
    .location-bar-content {
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .location-text {
        font-size: 0.75rem;
    }
    
    .hot-available {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .location-top-bar {
        padding: 6px 0;
    }
    
    .location-bar-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .location-text {
        font-size: 0.7rem;
    }
    
    .location-text span {
        display: inline-block;
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 2px solid var(--primary);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn-call, .btn-wa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-call {
    background: var(--primary);
    color: var(--white);
}

.btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-wa {
    background: #25D366;
    color: var(--white);
}

.btn-wa:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #FFF0F0 0%, #FFFFFF 100%);
    padding: 4rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('') center/cover no-repeat;
    opacity: 0.05;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: var(--shadow-lg), var(--shadow-hot); */
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.hero-img-wrapper:hover img {
    transform: scale(1.05);
}

.hero-img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.hero-img-badge i {
    animation: fire 1s infinite;
}

.hero-badge {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge span {
    background: rgba(255,51,102,0.1);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

.badge-fire {
    background: rgba(255,51,102,0.2);
    animation: fire 1s infinite;
}

@keyframes fire {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-title {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-buttons {
        gap: 0.8rem;
    }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid #25D366;
}

.btn-secondary:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-3px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid #25D366;
}

.btn-secondary:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    transform: translateY(-3px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll a {
    color: var(--primary);
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary);
}

.image-hot-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    animation: pulse 1.5s infinite;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--dark);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 15px;
    text-align: center;
    min-width: 80px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.about-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--primary);
}

.about-features {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
}

.feature i {
    color: var(--primary);
}

.call-now {
    margin-top: 1.5rem;
}

.btn-call-now {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition);
}

.btn-call-now:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hot);
}

/* Hot Gallery Section */
.hot-gallery {
    padding: 6rem 0;
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.05);
}

.hot-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
}

.card-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.gallery-card:hover .card-overlay {
    bottom: 0;
}

.overlay-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
}

.overlay-btn:hover {
    background: var(--white);
    color: var(--primary);
}

.card-info {
    padding: 1rem;
    text-align: center;
}

.card-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.card-info p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.card-rating {
    color: var(--accent);
}

.view-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--white), var(--light));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,51,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.service-btn {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.service-btn:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Content Blocks */
.content-block {
    padding: 4rem 0;
    background: var(--white);
}

.content-block.alt {
    background: var(--light);
}

.content-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.content-text p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Content Grid - Left Content Right Image */
.content-wrapper-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.content-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.content-wrapper-grid .content-title {
    text-align: left;
}

/* Responsive - Content Grid */
@media (max-width: 992px) {
    .content-wrapper-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-wrapper-grid .content-title {
        text-align: center;
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .content-wrapper-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-image {
        order: 1;
    }
    
    .content-text {
        order: 2;
    }
    
    .content-image img {
        max-height: 350px;
        object-fit: cover;
    }
    
    .content-wrapper-grid .content-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .content-wrapper-grid {
        gap: 1rem;
    }
    
    .content-block {
        padding: 2rem 0;
    }
    
    .content-wrapper-grid .content-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        letter-spacing: 0.5px;
    }
    
    .content-text p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    
    .content-image img {
        max-height: 280px;
        border-radius: 15px;
    }
    
    .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .content-block {
        padding: 1.5rem 0;
    }
    
    .content-wrapper-grid .content-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .content-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .content-image img {
        max-height: 220px;
        border-radius: 12px;
    }
    
    .content-wrapper-grid {
        gap: 0.8rem;
    }
}

/* Keyword Styling */
.keyword {
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.95rem;
}

.keyword-link {
    text-decoration: none;
    transition: var(--transition);
}

.keyword-link:hover .keyword {
    color: var(--primary-dark);
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

.hotel-name {
    color: var(--primary);
    font-weight: 700;
}

/* Hotel Links Grid Styling */
.hotel-hot-list {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    gap: 1rem !important;
}

.hotel-hot-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.8rem;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hotel-hot-list a:hover {
    background: white;
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.35);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hotel-hot-list a span.keyword {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.hotel-hot-list a:hover span.keyword {
    color: var(--primary-dark);
    text-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

/* Rates Section */
.rates {
    padding: 6rem 0;
    background: var(--white);
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .rates-grid {
        grid-template-columns: 1fr;
    }
}

.rate-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.rate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.rate-card.popular {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--white), var(--light));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.rate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rate-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.rate-features {
    list-style: none;
    margin-bottom: 2rem;
}

.rate-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray);
}

.rate-features i {
    color: var(--primary);
}

.rate-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    transition: var(--transition);
}

.rate-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.rates-note {
    text-align: center;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 15px;
}

.rates-note p {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.rates-note i {
    color: var(--primary);
    margin-right: 0.5rem;
}

/* Hot Locations Section */
.hot-locations {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.locations-hot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.6rem;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {
    .locations-hot-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-hot-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .locations-hot-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.location-hot-card {
    background: var(--white);
    padding: 0.8rem 0.8rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,51,102,0.2);
}

.location-hot-card:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.35);
    border-color: var(--primary);
}

.location-hot-card i {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
    display: block;
}

.location-hot-card h3 {
    font-size: 0.75rem;
    margin-bottom: 0;
    color: #000000;
    font-weight: 600;
    font-family: var(--font-body);
    line-height: 1.5;
    letter-spacing: 0.3px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
    max-height: 3em;
}

.location-hot-card p {
    color: var(--gray);
    font-size: 0.7rem;
}

.hotels-hot-grid {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.hotels-hot-grid h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

/* Hot Hotels Section */
.hot-hotels {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.05), var(--white));
}

.hot-hotels .section-header {
    margin-bottom: 3rem;
}

/* Premium Models Section */
.premium-models {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white), var(--light));
}

/* Elite Models Section */
.elite-models {
    padding: 6rem 0;
    background: var(--light);
}

/* VIP Models Section */
.vip-models {
    padding: 6rem 0;
    background: var(--white);
}

/* Feature Banners */
.feature-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-gray));
}

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .banner-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.banner-image {
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: var(--shadow-lg); */
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-banner:hover .banner-image img {
    transform: scale(1.05);
}

.banner-content {
    color: var(--white);
}

.banner-tag {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.banner-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.banner-title span {
    color: var(--primary-light);
}

.banner-text {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.banner-text .keyword {
    color: var(--primary-light);
    font-weight: 700;
}

.banner-text .keyword-link {
    text-decoration: none;
    transition: var(--transition);
}

.banner-text .keyword-link:hover .keyword {
    text-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
}

.banner-left-content .banner-wrapper {
    grid-template-columns: 1fr 1fr;
}

.banner-right-content .banner-wrapper {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
    .banner-left-content .banner-wrapper,
    .banner-right-content .banner-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-light), var(--white));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    padding: 3rem;
    background: linear-gradient(135deg, var(--dark), var(--dark-gray));
    color: var(--white);
}

.contact-badge {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-text {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(5px);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: rgba(255,255,255,0.7);
}

.contact-item span {
    color: var(--white);
    font-weight: 600;
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,51,102,0.2);
    border-radius: 12px;
}

.contact-note i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.contact-note p {
    margin: 0;
    font-weight: 600;
}

.contact-form {
    padding: 3rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--light);
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255,51,102,0.1);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: var(--primary-light);
    margin-bottom: 0.3rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-hot-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-hot-tags span {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
}

/* Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-wa, .float-call {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.float-wa {
    background: #25D366;
    color: var(--white);
}

.float-wa:hover {
    background: #1DA851;
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.float-call {
    background: var(--primary);
    color: var(--white);
}

.float-call:hover {
    background: var(--primary-dark);
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(211, 47, 47, 0.5);
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 1rem;
        right: 1rem;
        gap: 0.8rem;
    }

    .float-wa, .float-call {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-wrapper {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .hero-content {
        padding-left: 0;
    }
    
    .hero-image {
        padding-right: 0;
    }
    
    .hero-image-wrapper {
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .location-bar-content {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-outline, .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 85vh;
        padding: 2rem 0;
    }

    .hero-img-wrapper {
        max-width: 280px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-stats {
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

    .stat {
        text-align: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* About Section */
    .about {
        padding: 3rem 0;
    }

    .about-wrapper {
        gap: 2rem;
    }

    .about-image img {
        max-height: 400px;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Location Cards */
    .locations-hot-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }

    .location-hot-card {
        padding: 0.5rem !important;
    }

    .location-hot-card i {
        font-size: 1rem !important;
    }

    .location-hot-card h3 {
        font-size: 0.75rem !important;
    }

    /* Hotel Cards */
    .hotel-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.4rem !important;
    }

    .hotel-card {
        padding: 0.8rem !important;
    }

    .hotel-card i {
        font-size: 1.2rem !important;
    }

    .hotel-card h4 {
        font-size: 0.75rem !important;
    }

    /* Premium Section */
    .premium-grid {
        grid-template-columns: 1fr !important;
    }

    .premium-card {
        padding: 1.5rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Rates Grid */
    .rates-grid {
        grid-template-columns: 1fr !important;
    }

    .rate-card {
        padding: 1.5rem;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem;
    }

    /* Floating Buttons */
    .floating-contact {
        bottom: 0.8rem;
        right: 0.8rem;
        gap: 0.6rem;
    }

    .float-wa, .float-call {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    /* Back to Top */
    .back-to-top {
        bottom: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }

    /* Navigation */
    .location-text {
        font-size: 0.75rem;
    }

    .hot-available {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .nav-link {
        font-size: 0.8rem;
    }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    /* Hero Title */
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-feature {
        font-size: 0.85rem;
    }

    .hero-feature i {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Buttons */
    .btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .btn-primary i, .btn-secondary i, .btn-outline i {
        font-size: 0.9rem;
    }

    /* Premium Section */
    .premium-badge-big {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    /* Gallery */
    .gallery-grid {
        gap: 0.6rem;
    }

    /* Floating Buttons */
    .float-wa, .float-call {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }
}

/* Small Devices (480px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 18px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Location Cards */
    .locations-hot-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .location-hot-card {
        padding: 0.6rem !important;
    }

    /* Hotel Cards */
    .hotel-cards-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .hotel-card {
        padding: 0.9rem !important;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Medium Devices (768px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
    .container {
        padding: 0 25px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Location Cards */
    .locations-hot-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    /* Hotel Cards */
    .hotel-cards-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .premium-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* About */
    .about-wrapper {
        gap: 3rem;
    }
}

/* Large Devices (992px - 1200px) */
@media (max-width: 1200px) and (min-width: 993px) {
    .container {
        padding: 0 28px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    /* Location Cards */
    .locations-hot-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    /* Hotel Cards */
    .hotel-cards-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .premium-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .rates-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Extra Large Devices (1200px+) */
@media (min-width: 1201px) {
    .container {
        max-width: 1300px;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 5rem;
    }

    /* Location Cards */
    .locations-hot-grid {
        grid-template-columns: repeat(6, 1fr) !important;
    }

    /* Hotel Cards */
    .hotel-cards-grid {
        grid-template-columns: repeat(5, 1fr) !important;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .premium-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .rates-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* Touch-Friendly Mobile Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch target sizes */
    a, button, .btn-primary, .btn-secondary, .btn-outline, .btn-call, .btn-wa,
    .float-wa, .float-call, .back-to-top, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    a:active, button:active {
        opacity: 0.8;
    }
    
    /* Better spacing for touch */
    .nav-link {
        padding: 0.8rem 0.5rem;
    }
    
    .btn-primary, .btn-secondary, .btn-outline, .btn-call, .btn-wa {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
    
    /* Improve card touch target */
    .location-hot-card, .hotel-card, .premium-card, .service-card, .rate-card {
        cursor: pointer;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px;
    }
}

/* Print Styles */
@media print {
    .navbar, .floating-contact, .back-to-top, .hero-scroll {
        display: none !important;
    }
    
    body {
        background: white;
    }
    
    a {
        text-decoration: underline;
    }
}

/* Landscape Mode Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
}