/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-burgundy: #800020;
    --secondary-gold: #D4AF37;
    --accent-plum: #673147;
    --accent-rose: #E0115F;
    --text-dark: #1A1A1A;
    --text-soft: #4A4A4A;
    --bg-light: #FFF5F5;
    --bg-soft: #FFE9E9;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-soft: 0 10px 30px rgba(128, 0, 32, 0.2);
    --shadow-medium: 0 15px 40px rgba(128, 0, 32, 0.3);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.3);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFD9D9 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--secondary-gold));
    border-radius: 3px;
}

.section-subtitle {
    display: block;
    color: var(--primary-burgundy);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-highlight {
    color: var(--primary-burgundy);
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.2);
}

/* Keyword Styling */
.keyword {
    color: var(--primary-burgundy);
    font-weight: 600;
    transition: var(--transition);
}

.keyword-link {
    text-decoration: none;
}

.keyword-link:hover .keyword {
    color: var(--secondary-gold);
    text-decoration: underline;
}

/* Navigation - FIXED for visibility */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #800020; /* Solid burgundy background */
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 3px solid var(--secondary-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-gold);
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-sub {
    font-size: 0.7rem;
    color: #FFFFFF;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--secondary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.btn-outline {
    padding: 0.7rem 1.8rem;
    border: 2px solid var(--secondary-gold);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-outline i {
    color: var(--secondary-gold);
}

.btn-outline:hover {
    background: var(--secondary-gold);
    color: var(--primary-burgundy);
    border-color: var(--secondary-gold);
}

.btn-outline:hover i {
    color: var(--primary-burgundy);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #FFFFFF;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 8rem 0 4rem;
    position: relative;
    background: linear-gradient(135deg, #1A1A1A 0%, var(--primary-burgundy) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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(212,175,55,0.05)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-gold) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: slideInLeft 1s ease;
}

.hero-tagline {
    display: inline-block;
    color: var(--secondary-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--secondary-gold);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 90%;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--white);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--secondary-gold);
    backdrop-filter: blur(5px);
}

.badge i {
    color: var(--secondary-gold);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1.2rem 2.8rem;
    background: linear-gradient(135deg, var(--secondary-gold), #B8860B);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    padding: 1.2rem 2.8rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--secondary-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--secondary-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: slideInRight 1s ease;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(2deg);
    border: 5px solid var(--secondary-gold);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-frame:hover .hero-img {
    transform: scale(1.05);
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--secondary-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    transform: rotate(-5deg);
    border: 2px solid var(--white);
}

.hero-image-badge span {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem 3rem;
    border-radius: 100px;
    box-shadow: var(--shadow-medium);
    z-index: 3;
    border: 2px solid var(--secondary-gold);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-gold);
    font-family: var(--font-serif);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    margin: 2.5rem 0;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FFF0F0, var(--white));
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.1);
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
    border-left-color: var(--secondary-gold);
}

.feature i {
    font-size: 1.8rem;
    color: var(--primary-burgundy);
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.feature p {
    color: var(--text-soft);
    font-size: 0.9rem;
}

.about-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.btn-whatsapp {
    padding: 1.2rem 2.8rem;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 5px solid var(--secondary-gold);
}

.about-image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-burgundy);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--secondary-gold);
}

.about-image-caption i {
    color: var(--secondary-gold);
    margin-right: 0.5rem;
}

.about-image-caption p {
    color: var(--white);
}

/* Services Offered */
.services-offered {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF5F5, #FFE4E4);
}

.services-offered-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-offered-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.service-offered-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-burgundy), var(--secondary-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-offered-card:hover::before {
    transform: scaleX(1);
}

.service-offered-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--accent-plum));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--secondary-gold);
    font-size: 2rem;
    border: 3px solid var(--secondary-gold);
}

.service-offered-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-offered-card p {
    color: var(--text-soft);
    line-height: 1.6;
}

/* Companions Slider */
.companions-section {
    padding: 6rem 0;
    background: var(--white);
}

.companions-slider {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.companions-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    transition: transform 0.5s ease;
}

.companion-slide {
    width: 100%;
}

.companion-slide-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.15);
    transition: var(--transition);
    border: 2px solid transparent;
}

.companion-slide-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--secondary-gold);
}

.companion-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.companion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.companion-slide-card:hover .companion-image img {
    transform: scale(1.1);
}

.companion-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1.2rem;
    background: var(--primary-burgundy);
    color: var(--secondary-gold);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--secondary-gold);
}

.companion-status.featured {
    background: var(--secondary-gold);
    color: var(--text-dark);
}

.companion-details {
    padding: 1.5rem;
    text-align: center;
}

.companion-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.companion-type {
    color: var(--primary-burgundy);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.companion-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.companion-meta i {
    color: var(--secondary-gold);
    margin-right: 0.3rem;
}

.slider-nav {
    display: none;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-burgundy);
    color: var(--primary-burgundy);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-prev:hover, .slider-next:hover {
    background: var(--primary-burgundy);
    color: var(--secondary-gold);
    transform: scale(1.1);
    border-color: var(--secondary-gold);
}

/* Content Panels */
.content-panel {
    padding: 5rem 0;
}

.content-panel.light-bg {
    background: linear-gradient(135deg, #FFF5F5, #FFE9E9);
}

.content-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-panel-grid.reverse {
    direction: rtl;
}

.content-panel-grid.reverse .content-panel-text {
    direction: ltr;
}

.content-panel-title {
    font-size: 2rem;
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    line-height: 1.4;
    position: relative;
    padding-bottom: 1rem;
}

.content-panel-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-gold);
}

.content-panel-text p {
    color: var(--text-soft);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.content-highlight {
    color: var(--primary-burgundy);
    font-weight: 700;
    font-size: 1.1rem;
}

.content-panel-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-panel-image img {
    width: 70%;
    height: auto;
    max-height: 600px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 5px solid var(--secondary-gold);
}

/* Companions Grid 2 */
.companions-grid-section {
    padding: 6rem 0;
    background: var(--white);
}

.companions-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.companion-grid-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.companion-grid-card:hover {
    border-color: var(--secondary-gold);
}

.companion-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.companion-grid-card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(128, 0, 32, 0.95), transparent);
    color: var(--white);
    transform: translateY(100px);
    transition: transform 0.4s ease;
}

.companion-grid-card:hover .card-overlay {
    transform: translateY(0);
}

.card-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
    color: var(--secondary-gold);
}

.card-overlay p {
    color: var(--white);
    margin-bottom: 0.3rem;
}

.card-overlay span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Masonry */
.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF5F5, #FFE4E4);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.5rem;
}

.gallery-masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 3px solid var(--white);
}

.gallery-masonry-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-masonry-item:hover img {
    transform: scale(1.1);
}

.gallery-masonry-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.3), rgba(212, 175, 55, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-masonry-item:hover::after {
    opacity: 1;
}

/* Locations Grid 2 */
.locations-section {
    padding: 6rem 0;
    background: var(--white);
}

.locations-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.location-area {
    background: linear-gradient(135deg, #FFF5F5, var(--white));
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(128, 0, 32, 0.1);
}

.location-area:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-bottom-color: var(--secondary-gold);
}

.location-area h3 {
    color: var(--primary-burgundy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.location-area ul {
    list-style: none;
}

.location-area li {
    margin-bottom: 0.8rem;
}

.location-link {
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.location-link:hover {
    color: var(--primary-burgundy);
    padding-left: 5px;
}

.hotel-partners {
    text-align: center;
    margin-top: 3rem;
}

.hotel-partners h3 {
    color: var(--primary-burgundy);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.hotel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hotel-tags span {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--accent-plum));
    border: 2px solid var(--secondary-gold);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: default;
    font-weight: 500;
}

.hotel-tags span:hover {
    background: var(--secondary-gold);
    color: var(--text-dark);
    transform: translateY(-2px);
    border-color: var(--primary-burgundy);
}

/* Keywords Cloud */
.keywords-cloud {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--accent-plum));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.keywords-cloud::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-gold) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.keywords-cloud h3 {
    color: var(--secondary-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cloud-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cloud-item {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 2px solid var(--secondary-gold);
}

.cloud-item:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px) scale(1.05);
}

.cloud-item:hover .keyword {
    color: var(--primary-burgundy);
}

.cloud-item .keyword {
    color: var(--white);
    transition: var(--transition);
}

/* Contact Section 2 */
.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF5F5, #FFE4E4);
}

.contact-wrapper-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.contact-info-2 {
    padding: 3rem;
    background: linear-gradient(135deg, #FFF0F0, var(--white));
    border-right: 4px solid var(--secondary-gold);
}

.contact-info-2 h2 {
    font-size: 2.5rem;
    margin: 1rem 0 1.5rem;
}

.contact-info-2 p {
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.contact-methods-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method-2 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #FFF5F5, var(--white));
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.contact-method-2:hover {
    transform: translateX(10px);
    border-color: var(--secondary-gold);
    box-shadow: var(--shadow-soft);
}

.contact-method-2 i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-burgundy), var(--accent-plum));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-gold);
    font-size: 1.2rem;
    border: 2px solid var(--secondary-gold);
}

.contact-method-2 div {
    display: flex;
    flex-direction: column;
}

.contact-method-2 span {
    font-size: 0.9rem;
    color: var(--text-soft);
}

.contact-method-2 strong {
    font-size: 1.1rem;
    color: var(--primary-burgundy);
}

.availability-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(128, 0, 32, 0.1);
    border-radius: 15px;
    color: var(--text-dark);
    border-left: 4px solid var(--secondary-gold);
}

.availability-badge i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
}

.booking-card {
    padding: 3rem;
    background: var(--white);
}

.booking-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-burgundy);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #FFF5F5;
    border: 1px solid rgba(128, 0, 32, 0.2);
    border-radius: 15px;
    color: var(--text-dark);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, var(--primary-burgundy) 100%);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-gold) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.footer-branding {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    color: var(--secondary-gold);
    font-size: 2.5rem;
}

.footer-logo .logo-sub {
    color: rgba(255, 255, 255, 0.8);
}

.footer-branding p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.footer-copyright .disclaimer {
    font-size: 0.82rem;
    opacity: 0.7;
}

/* Float Buttons */
.float-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-wa,
.float-call {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--secondary-gold);
}

.float-wa {
    background: #25D366;
    color: var(--white);
}

.float-wa:hover {
    background: #1da851;
    transform: scale(1.1) rotate(5deg);
}

.float-call {
    background: linear-gradient(135deg, var(--primary-burgundy), var(--accent-plum));
    color: var(--secondary-gold);
}

.float-call:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-medium);
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .companions-grid-2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        margin-top: 2rem;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        order: 2;
        padding-right: 0;
    }
    
    .services-offered-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-panel-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-panel-grid.reverse {
        direction: ltr;
    }
    
    .locations-grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper-2 {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.85rem;
    }
    
    .btn-outline {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-burgundy);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-bottom: 3px solid var(--secondary-gold);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        display: block;
        padding: 0.5rem 0;
        color: #FFFFFF;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-phone-btn {
        display: block;
        margin-top: 1rem;
        list-style: none;
    }
    
    .mobile-phone-btn .btn-outline {
        display: inline-flex;
        background: rgba(0, 0, 0, 0.3);
        border-color: var(--secondary-gold);
        color: #FFFFFF;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 30px;
    }
    
    .services-offered-grid {
        grid-template-columns: 1fr;
    }
    
    .companion-slide {
        flex: 0 0 calc(100% - 2rem);
    }
    
    .companions-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .locations-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    
    .gallery-masonry-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .about-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .contact-method-2 {
        flex-direction: column;
        text-align: center;
    }
    
    .float-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .float-wa,
    .float-call {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Active nav link */
.nav-link.active {
    color: var(--secondary-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* Tooltip styles */
.tooltip {
    position: fixed;
    background: var(--primary-burgundy);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 10000;
    border: 1px solid var(--secondary-gold);
    pointer-events: none;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--primary-burgundy);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-burgundy);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--secondary-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-burgundy);
    color: var(--secondary-gold);
    border: 2px solid var(--secondary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-gold);
    color: var(--primary-burgundy);
    transform: translateY(-5px);
}