/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #7A296E;
    --dark-gold: #2D1B4E;
    --light-gold: #C084FC;
    --black: #FFFFFF;
    --dark-charcoal: #F5F5F5;
    --charcoal: #EEEEEE;
    --light-charcoal: #333333;
    --white: #0A0A0A;
    --off-white: #1A1A1A;
    --cream: #F9F5FF;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 5px 20px rgba(122, 41, 110, 0.2);
    --transition: all 0.3s ease;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: block;
    color: var(--primary-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.section-title {
    font-size: 3.5rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-gold);
    opacity: 0.3;
}

.section-description {
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Keyword Styling */
.keyword {
    color: var(--primary-gold);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.keyword-link {
    text-decoration: none;
}

.keyword-link:hover .keyword {
    color: var(--light-gold);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(122, 41, 110, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    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: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: #C084FC;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C084FC;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-outline {
    padding: 0.8rem 1.5rem;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background: #FFFFFF;
    color: #7A296E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: #FFFFFF;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-tagline {
    display: inline-block;
    color: var(--primary-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

.hero-title {
    font-size: 5rem;
    color: #FFFFFF; /* ensure high-contrast over video */
    text-shadow: 2px 4px 12px rgba(0,0,0,0.6);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(122, 41, 110, 0.15);
    border: 1px solid rgba(122, 41, 110, 0.4);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #FFFFFF;
    backdrop-filter: blur(5px);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero background video styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    border-color: var(--primary-gold);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #333333;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid #333333;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(122, 41, 110, 0.1);
    transform: translateY(-3px);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* Introduction Section */
.intro-section {
    padding: 6rem 0;
    background: #F5F5F5;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.intro-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
}

.image-caption h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
}

.image-caption p {
    color: var(--off-white);
    font-size: 1rem;
    opacity: 0.9;
}

.intro-content {
    padding: 2rem;
}

.intro-text {
    color: #555555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(122, 41, 110, 0.05);
    border: 1px solid rgba(122, 41, 110, 0.2);
    border-radius: 8px;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.feature-item span {
    color: #333333;
    font-size: 0.9rem;
}

.service-highlights {
    background: rgba(122, 41, 110, 0.05);
    padding: 1.5rem;
    border-left: 3px solid var(--primary-gold);
    margin: 2rem 0;
}

.service-highlights h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-highlights ul {
    list-style: none;
}

.service-highlights li {
    margin-bottom: 0.8rem;
    color: #333333;
}

.service-highlights li .keyword-link {
    margin-right: 0.5rem;
}

.contact-info {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-whatsapp {
    padding: 1rem 2rem;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

/* Companions Section */
.companions-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

@media (max-width: 768px) {
    .companions-section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .companions-section {
        padding: 2rem 0;
    }
}

.companions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .companions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .card-image {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .companions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .card-image {
        height: 500px;
    }
    
    .card-info {
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .companions-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .card-image {
        height: auto;
        aspect-ratio: 3 / 5;
    }
    
    .card-info {
        padding: 0.8rem;
    }
    
    .card-info h3 {
        font-size: 1rem;
        margin-bottom: 0.15rem;
    }
    
    .card-type {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .card-tags {
        margin-bottom: 0.5rem;
    }
    
    .card-tags span {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

.companion-card {
    background: #F9F9F9;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(122, 41, 110, 0.2);
}

.companion-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.companion-card.featured {
    border: 2px solid var(--primary-gold);
    position: relative;
}

.card-image {
    position: relative;
    height: 360px; /* increased for taller preview */
    overflow: hidden;
    width: 100%;
    display: block;
}

.card-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.companion-card:hover .card-image img {
    transform: scale(1.05);
}

.card-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    background: var(--primary-gold);
    color: var(--black);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-info {
    padding: 1rem; /* reduced to tighten card content spacing */
}

.card-info h3 {
    color: #1A1A1A;
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.card-type {
    color: var(--primary-gold);
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
}

.card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.card-tags span {
    background: rgba(122, 41, 110, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    color: #333333;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.card-rating i {
    color: #C084FC;
    font-size: 0.9rem;
}

.card-rating span {
    color: #666666;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.companions-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(122, 41, 110, 0.05);
    border-radius: 10px;
}

.companions-cta p {
    color: #333333;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: #F5F5F5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@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: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(122, 41, 110, 0.2);
    text-align: center;
}

.service-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(122, 41, 110, 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-gold);
}

.service-card h3 {
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #555555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
    color: var(--light-gold);
}

.services-featured {
    text-align: center;
    padding: 2rem;
    background: rgba(122, 41, 110, 0.05);
    border-radius: 10px;
}

.services-featured h3 {
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.featured-tag {
    padding: 0.6rem 1.2rem;
    background: rgba(122, 41, 110, 0.1);
    border: 1px solid rgba(122, 41, 110, 0.3);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    color: #333333;
}

.featured-tag:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.featured-tag:hover .keyword {
    color: #FFFFFF;
}

.featured-tag .keyword {
    color: var(--primary-gold);
    transition: var(--transition);
}

.featured-tag:hover .keyword {
    color: var(--black);
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.gallery-item.large {
    grid-column: span 1;
    grid-row: span 2;
    height: 515px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Locations Section */
.locations-section {
    padding: 6rem 0;
    background: #F5F5F5;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

.location-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(122, 41, 110, 0.2);
}

.location-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.location-card ul {
    list-style: none;
}

.location-card li {
    margin-bottom: 0.8rem;
}

.location-link {
    color: #555555;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.location-link:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.hotels-showcase {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(122, 41, 110, 0.05);
    border-radius: 10px;
}

.hotels-showcase h3 {
    color: #1A1A1A;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.hotel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hotel-name {
    padding: 0.6rem 1.2rem;
    background: rgba(122, 41, 110, 0.1);
    border: 1px solid rgba(122, 41, 110, 0.3);
    border-radius: 30px;
    color: #333333;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hotel-name:hover {
    background: var(--primary-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: #F5F5F5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(122, 41, 110, 0.2);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.testimonial-card.featured {
    background: rgba(122, 41, 110, 0.08);
    border: 2px solid var(--primary-gold);
}

.testimonial-content i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-content p {
    color: #555555;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author h4 {
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info-panel {
    padding: 3rem;
    background: #F9F9F9;
    border-radius: 10px;
    border: 1px solid rgba(122, 41, 110, 0.2);
}

.contact-text {
    color: #555555;
    margin: 2rem 0;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(122, 41, 110, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method h4 {
    color: #1A1A1A;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.contact-method a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-method a:hover {
    color: var(--light-gold);
}

.availability-note {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(122, 41, 110, 0.1);
    border-radius: 8px;
    color: #333333;
}

.availability-note i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.booking-form-panel {
    padding: 3rem;
    background: #F9F9F9;
    border-radius: 10px;
    border: 1px solid rgba(122, 41, 110, 0.2);
}

.booking-form-panel h3 {
    color: var(--primary-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-align: center;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid rgba(122, 41, 110, 0.3);
    border-radius: 8px;
    color: #333333;
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(122, 41, 110, 0.2);
}

.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Footer - redesigned */
.footer {
    background: linear-gradient(180deg, #7A296E 0%, #5B1F4E 100%);
    padding: 4rem 0 2rem;
    color: #FFFFFF;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

/* Center the brand block (logo + description) */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.footer-logo .logo-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    max-width: 800px;
    text-align: center;
}

/* Keep social icons if present - centered */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition);
}

.social-links a:hover {
    background: #FFFFFF;
    color: #7A296E;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.footer-bottom .disclaimer {
    font-size: 0.82rem;
    opacity: 0.75;
}

@media (min-width: 900px) {
    .footer-main {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }

    .footer-description {
        text-align: center;
        max-width: 900px;
    }
    .footer-brand {
        align-self: center;
        text-align: center;
    }
}

/* Contact Buttons */
.contact-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.btn-whatsapp-float,
.btn-call-float {
    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 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp-float {
    background: #25D366;
    color: #FFFFFF;
}

.btn-whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call-float {
    background: var(--primary-gold);
    color: #FFFFFF;
}

.btn-call-float:hover {
    background: #C084FC;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(122, 41, 110, 0.4);
}

@media (max-width: 576px) {
    .contact-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .btn-whatsapp-float,
    .btn-call-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.intro-wrapper,
.companions-grid,
.services-grid,
.gallery-grid,
.locations-grid,
.testimonials-grid,
.contact-wrapper {
    animation: fadeInUp 1s ease;
}

/* Responsive Design */
@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: rgba(122, 41, 110, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }

    .badge {
        width: 100%;
        text-align: center;
    }
}

/* Long Content Section */
.long-content-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFAFD 100%);
    position: relative;
    border-top: 1px solid rgba(122, 41, 110, 0.2);
    border-bottom: 1px solid rgba(122, 41, 110, 0.2);
}

.long-content-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(212,175,55,0.02)"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.content-block {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(122, 41, 110, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.content-block:hover {
    border-color: rgba(122, 41, 110, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(122, 41, 110, 0.15);
}

.content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(122, 41, 110, 0.05), transparent 70%);
    pointer-events: none;
}

.highlight-block {
    border-left: 4px solid var(--primary-gold);
    background: rgba(244, 240, 250, 0.9);
}

.agency-block {
    border-right: 4px solid var(--primary-gold);
    background: rgba(250, 245, 255, 0.9);
}

.extended-block {
    background: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(122, 41, 110, 0.3);
}

.content-main-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
}

.content-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.highlight-block .content-main-title::after,
.agency-block .content-main-title::after {
    width: 120px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.content-paragraph {
    color: #333333;
    line-height: 1.9;
    font-size: 1.1rem;
}

.content-paragraph p {
    margin-bottom: 1.8rem;
    text-align: justify;
}

.content-paragraph p:last-child {
    margin-bottom: 0;
}

.content-name {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-serif);
}

/* Full Width Content Sections */
.content-section {
    padding: 4rem;
    background: #FFFFFF;
    position: relative;
}

.content-section.alt-bg {
    background: #F5F5F5;
}

.content-section-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 2.5rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.content-text {
    color: #333333;
    line-height: 2;
    font-size: 1.05rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.services-showcase {
    padding: 4rem;
    background: #FFFFFF;
    text-align: center;
}

.services-showcase h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #1A1A1A;
    margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-item {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(122, 41, 110, 0.1);
    border: 1px solid rgba(122, 41, 110, 0.2);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    color: #333333;
}

.service-item:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
}

.service-item:hover .keyword {
    color: #FFFFFF;
}

.service-item .keyword {
    color: var(--primary-gold);
    transition: var(--transition);
    font-weight: 600;
}

.contact-cta {
    padding: 3rem;
    background: rgba(122, 41, 110, 0.08);
    text-align: center;
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-cta h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    color: #333333;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    text-align: center;
    padding: 1.5rem;
    background: rgba(122, 41, 110, 0.08);
    border-radius: 10px;
}

.contact-reminder p {
    color: #333333;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-reminder strong {
    color: var(--primary-gold);
}

.reminder-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .long-content-section {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .content-section-title {
        font-size: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .services-grid-full {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .content-block {
        padding: 1.5rem;
    }
    
    .content-main-title {
        font-size: 1.3rem;
    }
    
    .reminder-buttons {
        flex-direction: column;
    }
    
    .reminder-buttons .btn-primary,
    .reminder-buttons .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for content blocks */
.content-block {
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-block.animated {
    opacity: 1;
    transform: translateY(0);
}

.content-footer {
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease 0.3s;
}

.content-footer.animated {
    opacity: 1;
    transform: translateY(0);
}

