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


:root {
    --primary-red: #c41e3a;
    --dark-red: #a51c2c;
    --black: #111111;
    --dark-gray: #222222;
    --medium-gray: #444444;
    --light-gray: #666666;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gold: #d4af37;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

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

/* Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-red);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.logo-highlight {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-red);
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn-call,
.btn-whatsapp {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-call {
    background: var(--primary-red);
    color: var(--white);
}

.btn-call:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--off-white);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-locations {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.location-tag {
    background: rgba(196, 30, 58, 0.2);
    border: 1px solid var(--primary-red);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.location-tag:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
}

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

.btn-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Mumbai Escorts Section */
.mumbai-escorts-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-top: 3px solid var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

.escorts-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .escorts-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.escorts-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.escorts-title .subtitle {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 0.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.escorts-paragraph {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.escorts-paragraph p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.keyword-highlight {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    padding: 0 2px;
}

.keyword-highlight:hover {
    color: var(--white);
    background: rgba(196, 30, 58, 0.2);
    border-radius: 3px;
}

.keyword-highlight::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-red);
    opacity: 0.5;
    transition: var(--transition);
}

.keyword-highlight:hover::after {
    opacity: 1;
    height: 2px;
}

.keywords-summary {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 3px solid var(--primary-red);
}

.keywords-summary h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.keywords-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(196, 30, 58, 0.1);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(196, 30, 58, 0.3);
    transition: var(--transition);
}

.keywords-list a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* Image Content Styles */
.escorts-image-content {
    position: sticky;
    top: 100px;
}

@media (max-width: 992px) {
    .escorts-image-content {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.feature-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .feature-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: white;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.overlay-content p {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.image-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.image-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    backdrop-filter: blur(5px);
}

.image-features i {
    color: var(--primary-red);
}

.contact-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 576px) {
    .contact-badges {
        grid-template-columns: 1fr;
    }
}

.contact-badge {
    background: var(--dark-gray);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-badge:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-badge i {
    font-size: 1.5rem;
    color: var(--primary-red);
    min-width: 40px;
    text-align: center;
}

.contact-badge h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-badge a,
.contact-badge p {
    color: var(--light-gray);
    font-size: 0.8rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-badge a:hover {
    color: var(--primary-red);
}

/* Animation for section */
.mumbai-escorts-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.mumbai-escorts-section.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Models Section */
.models-section {
    padding: 5rem 0;
    background: var(--dark-gray);
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
    margin-top: 3rem;
}

.model-card {
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.model-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.model-card.featured {
    border: 2px solid var(--primary-red);
}

.model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.model-image {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.model-info {
    padding: 1.8rem;
}

.model-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.model-category {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.model-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.model-features span {
    background: rgba(196, 30, 58, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.model-features i {
    color: var(--primary-red);
}

/* Service Highlights Section */
.service-highlights-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    position: relative;
    overflow: hidden;
}

.service-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.highlights-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.highlight-block {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-red);
}

.highlight-block:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.price-block {
    border-color: rgba(212, 175, 55, 0.2);
}

.price-block::before {
    background: var(--gold);
}

.agency-block {
    border-color: rgba(196, 30, 58, 0.2);
}

.agency-block::before {
    background: var(--primary-red);
}

.highlight-title {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
    margin-top: 0.8rem;
}

.price-block .highlight-title::after {
    background: var(--gold);
}

.highlight-content {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.highlight-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.highlight-content p:last-child {
    margin-bottom: 0;
}

.keyword-link {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding: 0 2px;
    transition: var(--transition);
    border-bottom: 1px dashed rgba(196, 30, 58, 0.5);
}

.keyword-link:hover {
    color: var(--white);
    background: rgba(196, 30, 58, 0.2);
    border-bottom-color: var(--primary-red);
    border-radius: 2px;
}

/* Remove the keywords-highlight-box CSS since it's not needed anymore */

/* Responsive Design */
@media (max-width: 768px) {
    .highlight-block {
        padding: 2rem;
    }
    
    .highlight-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-highlights-section {
        padding: 3rem 0;
    }
    
    .highlight-block {
        padding: 1.5rem;
    }
    
    .highlight-title {
        font-size: 1.3rem;
    }
}

/* Animation for highlight blocks */
.highlight-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.highlight-block.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Services Section */
.premium-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.premium-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(196,30,58,0.02)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.services-content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.service-block {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 58, 0.03) 100%);
    pointer-events: none;
}

.service-block:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Keep colored borders for visual distinction */
.airport-block {
    border-left: 4px solid rgba(196, 30, 58, 0.7);
}

.desire-block {
    border-left: 4px solid rgba(196, 30, 58, 0.7);
}

.russian-block {
    border-left: 4px solid rgba(196, 30, 58, 0.7);
}

.hifi-block {
    border-left: 4px solid rgba(196, 30, 58, 0.7);
}

.service-title {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 1rem;
}

.service-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary-red); /* All red */
}

/* All title accents are red */
.airport-block .service-title::before {
    background: var(--primary-red);
}

.desire-block .service-title::before {
    background: var(--primary-red);
}

.russian-block .service-title::before {
    background: var(--primary-red);
}

.hifi-block .service-title::before {
    background: var(--primary-red);
}

.service-content {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 1.05rem;
}

.service-content p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.service-content p:last-child {
    margin-bottom: 0;
}

/* ALL KEYWORDS ARE NOW RED */
.service-keyword {
    color: var(--primary-red) !important;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding: 0 2px;
    transition: var(--transition);
    border-bottom: 1px dashed rgba(196, 30, 58, 0.5);
}

.service-keyword:hover {
    color: var(--white) !important;
    background: rgba(196, 30, 58, 0.2);
    border-bottom-color: var(--primary-red);
    border-radius: 2px;
}

/* Remove all color variations - ALL RED */
.airport-block .service-keyword,
.desire-block .service-keyword,
.russian-block .service-keyword,
.hifi-block .service-keyword {
    color: var(--primary-red) !important;
    border-bottom-color: rgba(196, 30, 58, 0.5);
}

.airport-block .service-keyword:hover,
.desire-block .service-keyword:hover,
.russian-block .service-keyword:hover,
.hifi-block .service-keyword:hover {
    background: rgba(196, 30, 58, 0.2);
    border-bottom-color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-services-section {
        padding: 3rem 0;
    }
    
    .service-block {
        padding: 2rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .service-block {
        padding: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-content {
        font-size: 1rem;
    }
}

/* Animation for service blocks */
.service-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-block.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
                url('img/kavsl.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    color: var(--off-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
    font-weight: 600;
}

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

/* Mumbai Areas Section - Row Layout */
.areas-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    position: relative;
}

.areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header .section-subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Area Rows */
.area-row {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.area-row:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.row-title {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.row-title i {
    color: var(--primary-red);
}

.row-content {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.area-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.area-tag:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
    border-color: var(--primary-red);
}

/* Special Category Tags */
.area-tag.highlight {
    background: rgba(196, 30, 58, 0.2);
    color: var(--primary-red);
    font-weight: 600;
    border: 1px solid rgba(196, 30, 58, 0.5);
}

.area-tag.highlight:hover {
    background: var(--primary-red);
    color: var(--white);
}

/* Hotel Tags */
.area-tag.hotel {
    background: rgba(212, 175, 55, 0.1);
    color: #FFD700;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.area-tag.hotel:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

/* Double Row Layout */
.area-row-double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .area-row-double {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.row-half {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.row-half:hover {
    border-color: rgba(196, 30, 58, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.areas-cta {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.areas-cta p {
    color: var(--off-white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.areas-cta strong {
    color: var(--primary-red);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    padding: 0.8rem 2rem;
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    padding: 0.8rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--black);
    transform: translateY(-3px);
}

/* Animation */
.area-row, .row-half, .areas-cta {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.area-row.animated, .row-half.animated, .areas-cta.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .areas-section {
        padding: 3rem 0;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .area-row, .row-half {
        padding: 1.5rem;
    }
    
    .row-content {
        gap: 0.6rem;
    }
    
    .area-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}


/* Footer */
.footer {
    background: var(--black);
    padding: 3rem 0;
    border-top: 2px solid var(--primary-red);
}

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

.footer-logo {
    margin-bottom: 2rem;
}

.footer-disclaimer {
    color: var(--light-gray);
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
}

.copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab-whatsapp,
.fab-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.fab-whatsapp {
    background: #25D366;
}

.fab-call {
    background: var(--primary-red);
}

.fab-whatsapp:hover,
.fab-call:hover {
    transform: translateY(-5px) scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-locations {
        gap: 1rem;
    }
    
    .location-tag {
        padding: 0.6rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
}

/* Introduction Section - Fixed */
.intro-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #151515 0%, #1a1a1a 100%);
    position: relative;
    border-top: 1px solid rgba(196, 30, 58, 0.3);
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.9);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.3;
    position: relative;
    padding-bottom: 1rem;
}

.intro-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-red);
}

.intro-title .subtitle {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-red);
    margin-top: 0.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.intro-text {
    color: var(--off-white);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-top: 2rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.keyword-highlight {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
    padding: 0 2px;
    border-bottom: 1px dashed rgba(196, 30, 58, 0.5);
}

.keyword-highlight:hover {
    color: var(--white);
    background: rgba(196, 30, 58, 0.2);
    border-bottom-color: var(--primary-red);
    border-radius: 2px;
}

.intro-cta {
    background: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2.5rem;
    text-align: center;
    border: 1px solid rgba(196, 30, 58, 0.3);
    position: relative;
}

.intro-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 58, 0.05) 100%);
    pointer-events: none;
}

.intro-cta h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    position: relative;
}

.intro-cta p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
}

.intro-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.intro-contact .btn-primary,
.intro-contact .btn-whatsapp {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.intro-contact .btn-primary {
    background: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.intro-contact .btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
}

.intro-contact .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.intro-contact .btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-3px);
}

/* Animation for intro section */
.intro-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-content.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-section {
        padding: 3rem 0;
    }
    
    .intro-content {
        padding: 2rem;
    }
    
    .intro-title {
        font-size: 1.8rem;
    }
    
    .intro-title .subtitle {
        font-size: 1.2rem;
    }
    
    .intro-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .intro-contact .btn-primary,
    .intro-contact .btn-whatsapp {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .intro-content {
        padding: 1.5rem;
    }
    
    .intro-title {
        font-size: 1.5rem;
    }
    
    .intro-title .subtitle {
        font-size: 1rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .intro-cta {
        padding: 1.5rem;
    }
    
    .intro-cta h3 {
        font-size: 1.2rem;
    }
}
