/* OPTION 4: OCEAN TEAL & COPPER THEME */
:root {
    --primary: #1A535C;      /* Deep Teal */
    --secondary: #D4A574;    /* Warm Copper */
    --accent: #0D2B2B;       /* Dark Slate */
    --cream: #F0F7F4;        /* Seafoam Background */
    --light-gold: #E8D2B5;   /* Light Copper */
    --dark: #0A1F1C;         /* Dark Teal */
    --transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%);
    color: var(--accent);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Premium Navigation */
.navbar {
    background: rgba(10, 31, 28, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.navbar.scrolled {
    background: rgba(6, 22, 20, 0.98);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* ACTUAL LOGO IMAGES - For both header and footer */
.header-logo-img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 50%;
}

.header-logo-img:hover {
    transform: rotate(15deg) scale(1.1);
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    object-fit: contain;
    transition: var(--transition);
    border-radius: 50%;
}

.footer-logo-img:hover {
    transform: scale(1.1);
}

.nav-link {
    color: var(--light-gold) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
    font-size: 1.1rem;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    margin-left: 20px;
}

.language-btn {
    background: transparent;
    border: 1px solid var(--light-gold);
    color: var(--light-gold);
    border-radius: 20px;
    padding: 5px 15px;
    transition: var(--transition);
}

.language-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Offline Indicator */
.offline-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #dc3545;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 10001;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.offline-indicator.show {
    transform: translateY(0);
}

.btn-luxury {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    border-radius: 50px;
    padding: 15px 35px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(26, 83, 92, 0.3);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    transition: var(--transition);
    z-index: -1;
}

.btn-luxury:hover::before {
    left: 0;
}

.btn-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 83, 92, 0.4);
}

/* Enhanced Ultra Premium Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(13, 43, 43, 0.8) 0%, 
        rgba(26, 83, 92, 0.6) 50%, 
        rgba(212, 165, 116, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #FFFFFF, var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
    overflow: hidden;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-weight: 300;
    color: var(--light-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 2rem;
    color: var(--light-gold);
    font-style: italic;
}

/* Floating Elements for Hero Section */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

/* Premium Sections */
.section-padding {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    font-size: 3.5rem;
    color: var(--accent);
}

.section-title::after {
    content: "";
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent);
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

/* Video Background for All Sections */
.video-bg-section {
    position: relative;
    overflow: hidden;
}

.section-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.5);
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 31, 28, 0.7);
    z-index: -1;
}

/* About Section - Split Layout */
.about-section {
    position: relative;
    padding: 120px 0;
}

.about-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Services Section - Masonry Grid with Images */
.services-section {
    position: relative;
    padding: 120px 0;
}

.services-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Gallery Section - Full Width Carousel */
.gallery-section {
    position: relative;
    padding: 120px 0;
}

.gallery-carousel {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.gallery-slide {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Packages Section - Interactive Cards */
.packages-section {
    position: relative;
    padding: 120px 0;
}

.package-card-3d {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 165, 116, 0.3);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.package-card-3d:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/* Testimonials Section - Slanted Layout */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    transform: skewY(-2deg);
}

.testimonials-container {
    transform: skewY(2deg);
}

.testimonial-slanted {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    margin: 20px 0;
    transform: skewY(-1deg);
    transition: var(--transition);
}

.testimonial-slanted:hover {
    transform: skewY(-1deg) translateY(-10px);
}

/* Contact Section - Split with Form */
.contact-section {
    position: relative;
    padding: 120px 0;
}

.contact-split {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* Enhanced Luxury Cards */
.luxury-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: var(--transition);
    background: white;
    height: 100%;
    position: relative;
}

.luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 2;
}

.luxury-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.luxury-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.luxury-card:hover img {
    transform: scale(1.05);
}

.luxury-card .card-body {
    padding: 40px 30px;
    text-align: center;
}

.luxury-card h5 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.luxury-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

/* Enhanced Premium Gallery */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 83, 92, 0.8), rgba(212, 165, 116, 0.6));
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h5 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    transform: translateY(30px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h5 {
    transform: translateY(0);
}

/* Enhanced Luxury Packages */
.package-card {
    padding: 50px 40px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    background: linear-gradient(135deg, #FFFFFF, var(--cream));
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.package-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.package-card h5 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: relative;
    padding-left: 35px;
    font-size: 1.1rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Enhanced Premium Testimonials */
.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF, var(--cream));
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 1px solid rgba(212, 165, 116, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--secondary);
    opacity: 0.2;
    font-family: 'Cinzel', serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--secondary);
}

/* Enhanced WhatsApp Form Section */
.whatsapp-form-section {
    background: none;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.whatsapp-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.whatsapp-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(2px);
}

.whatsapp-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 43, 43, 0.7);
}

.whatsapp-form-section .container {
    position: relative;
    z-index: 10;
}

.whatsapp-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.whatsapp-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s infinite linear;
}

@keyframes pulse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-header h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.form-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.whatsapp-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.form-control {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-select {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
}

.form-submit-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
    display: none;
}

.message-preview {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid var(--secondary);
}

.message-preview h5 {
    color: var(--primary);
    margin-bottom: 15px;
}

.preview-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    border: 1px solid rgba(0,0,0,0.1);
}

/* Enhanced Ultra Premium Footer */
footer {
    background: linear-gradient(135deg, var(--dark), #051A17);
    color: white;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.footer-links a {
    margin: 0 20px;
    font-weight: 500;
    color: var(--light-gold);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    position: relative;
}

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin: 0 15px;
    transition: var(--transition);
    color: var(--light-gold);
    font-size: 1.3rem;
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

/* Enhanced Luxury Floating Contact */
.floating-contact {
    position: fixed;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.floating-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    pointer-events: all;
}

.floating-contact a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.9;
    z-index: -1;
}

.floating-contact a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.floating-contact a:hover::after {
    opacity: 1;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    order: 1;
}

.call-btn {
    background: linear-gradient(135deg, var(--primary), #1A535C);
    order: 2;
}

.floating-contact a:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Premium Backgrounds */
.bg-luxury {
    background: linear-gradient(135deg, var(--cream) 0%, #FFFFFF 100%);
}

.bg-dark-luxury {
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    color: white;
}

/* Contact Items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-info-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
    color: var(--secondary);
    width: 30px;
}

.contact-info-item p {
    margin: 0;
    font-size: 1.1rem;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    height: 550px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease-out;
}

/* NEW STYLES FOR SERVICE BUTTONS */
.service-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.service-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    font-size: 0.9rem;
}

.service-btn i {
    margin-right: 8px;
}

.service-call-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: 2px solid transparent;
}

.service-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 83, 92, 0.3);
    color: white;
}

.service-whatsapp-btn {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.service-whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Service Duration */
.service-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    font-size: 0.9rem;
    color: var(--primary);
}

/* Luxury Background Pattern */
.luxury-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(26, 83, 92, 0.1) 0%, transparent 50%);
    z-index: -1;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Parallax Scrolling Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--secondary), var(--primary));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.4rem;
    }
    
    .navbar-brand {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .service-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .floating-contact {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    
    .floating-contact a {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 10px 0;
    }
    
    .testimonials-section {
        transform: skewY(0);
    }
    
    .testimonials-container {
        transform: skewY(0);
    }
    
    .testimonial-slanted {
        transform: skewY(0);
    }
    
    .testimonial-slanted:hover {
        transform: translateY(-10px);
    }

    .language-switcher {
        margin-left: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-luxury {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .whatsapp-form {
        padding: 30px 20px;
    }
    
    .form-header {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.8rem;
    }
    
    .floating-contact {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .floating-contact a {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .navbar, .floating-contact, .scroll-to-top, .hero-video, .section-video {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-section {
        height: auto;
        color: black;
    }
    
    .hero-overlay {
        background: none;
    }
}