:root {
    /* Luxury Color Palette */
    --primary: #f2446d; /* Romantic Pink-Red */
    --primary-dark: #d13a5d;
    --primary-light: #ff6b8b;
    --accent: #f8e5d6; /* Soft Ivory */
    --secondary: #6d4c3d; /* Rich Brown */
    --platinum: #e0d5cd; /* Warm Platinum */
    --black: #1a1a1a; /* Deep Black */
    --white: #fff9f5; /* Warm White */
    --gold: #d4af37; /* Classic Gold */
    
    /* Luxury Typography */
    --font-primary: 'Cormorant', serif;
    --font-secondary: 'Playfair Display', serif;
    --font-highlight: 'Ballet', cursive;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;
}

/* Base Styles */
body {
    font-family: var(--font-secondary);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
}

/* Bootstrap Overrides */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: rgba(242, 68, 109, 0.9);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: rgba(242, 68, 109, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: var(--font-highlight);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 1px;
}

.navbar-brand .logo-img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--white);
    margin: 0 10px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: all 0.6s ease;
}

.btn:hover:after {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    letter-spacing: 1.5px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

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

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

/* Form Elements */
.form-control {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--platinum);
    font-family: var(--font-secondary);
    font-weight: 300;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(242, 68, 109, 0.15);
}

/* Tabs */
.nav-tabs {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link {
    color: var(--black);
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    margin: 0;
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    background-color: transparent;
    border-bottom: 3px solid var(--primary);
}

.tab-content {
    padding: 30px 0;
}

/* Custom Classes */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.section-header .subtitle {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
}

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

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 26, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content h1 {
    font-family: var(--font-highlight);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero-content .lead {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn {
    margin: 0 10px;
    min-width: 200px;
}

/* scroll down animation */


.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-down a {
    color: var(--white);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Customer Journey Section */
.journey-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.journey-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    z-index: 0;
}

.journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.journey-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 68, 109, 0.15);
}

.journey-step:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.journey-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(242, 68, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary);
    font-size: 2rem;
}

.journey-step h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--black);
}

.journey-step p {
    font-family: var(--font-secondary);
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 0;
}

.journey-connector {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    opacity: 0.2;
    z-index: -1;
}

/* Packages Section */
.packages-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.package-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 68, 109, 0.15);
}

.package-image {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.package-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: white;
}

.package-image h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--white);
}

.package-details {
    padding: 40px;
}

.package-details h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.package-meta {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.package-meta span {
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
    color: var(--black);
    opacity: 0.8;
}

.package-meta i {
    margin-right: 8px;
    color: var(--primary);
}

.package-includes {
    margin: 30px 0;
}

.package-includes h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.package-includes ul {
    list-style: none;
    padding: 0;
}

.package-includes li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-family: var(--font-secondary);
}

.package-includes i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.package-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.package-upsell {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.package-upsell p {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black);
}

.upsell-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.upsell-items a {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(242, 68, 109, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.upsell-items a:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.price-tag {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary);
    margin: 20px 0;
}

.price-tag span {
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--black);
    opacity: 0.7;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--accent);
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.testimonial-item {
    min-width: 350px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.testimonial-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
    border-radius: 5px 5px 0 0;
}

.rating {
    color: var(--gold);
    margin-bottom: 20px;
}

.rating i {
    margin-right: 3px;
}

.testimonial-content p {
    font-family: var(--font-secondary);
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 0;
}

.testimonial-content p:before {
    vertical-align: top;
    margin-right: 5px;
}

.testimonial-content p:after {
    vertical-align: bottom;
    margin-left: 5px;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--black);
}

.author-info p {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.7;
    margin: 0;
    font-style: normal;
}

.author-info p:before,
.author-info p:after {
    content: '';
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background-color: var(--white);
    position: relative;
}

.about-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    z-index: 0;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 20px 20px 0 rgba(242, 68, 109, 0.1);
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 68, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
}

.feature-content p {
    font-family: var(--font-secondary);
    color: var(--black);
    opacity: 0.8;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--accent);
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.contact-info {
    padding-left: 40px;
}

.info-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.info-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.info-card h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--black);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(242, 68, 109, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

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

.info-content h5 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--black);
    margin-bottom: 5px;
}

.info-content p {
    font-family: var(--font-secondary);
    color: var(--black);
    margin: 0;
    opacity: 0.9;
}

.whatsapp-cta {
    margin-top: 40px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--platinum);
    border-radius: 30px 0 0 30px;
    font-family: var(--font-secondary);
}

.newsletter-form button {
    width: 50px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    background-color: var(--white);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

.trust-item img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
}

.footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: var(--font-highlight);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-about p {
    font-family: var(--font-secondary);
    opacity: 0.8;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.footer h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-secondary);
    transition: all 0.3s ease;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--primary);
    text-decoration: none;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-secondary);
    font-weight: 300;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-bottom p {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 300;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-legal a:hover {
    color: var(--primary);
    text-decoration: none;
}

.footer-partner {
    text-align: center;
    margin-top: 20px;
}

.footer-partner p {
    font-family: var(--font-secondary);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-partner a {
    color: var(--primary);
}

.footer-partner a:hover {
    text-decoration: none;
}

/* Language Switcher */
/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1500;
}

.language-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 8px 15px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

.language-flag {
    font-size: 18px;
}

.dropdown-menu {
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-item {
    color: white;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    background: rgba(242, 68, 109, 0.3);
    color: white;
}

.dropdown-item.active {
    background: var(--primary);
    color: white;
}

/* Mobile Navigation */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile-Optimized Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-content {
    padding-top: 80px; /* Space for navbar */
}

.hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-buttons .btn {
    margin-bottom: 15px;
    width: 100%;
    max-width: 250px;
}

/* Mobile Package Cards */
.package-card {
    margin-bottom: 30px;
    border: none;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    height: 250px;
    border-radius: 8px 8px 0 0;
}

.package-details {
    padding: 25px;
    border-radius: 0 0 8px 8px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.package-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 2rem;
    margin: 1rem 0;
}

/* Mobile Testimonials */
.testimonial-item {
    min-width: 85vw;
    scroll-snap-align: center;
}

.testimonial-content {
    padding: 25px;
}

/* Mobile Footer */
.footer {
    text-align: center;
}

.footer-logo {
    margin: 0 auto 20px;
}

.footer h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-social {
    justify-content: center;
    margin-bottom: 30px;
}

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

.footer-legal {
    justify-content: center;
    margin-top: 20px;
}

/* Luxury Mobile Menu */
.offcanvas {
    background-color: var(--black);
    color: var(--white);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    font-family: var(--font-highlight);
    font-size: 1.5rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.mobile-nav .nav-link {
    color: var(--white);
    font-size: 1.1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.mobile-nav .nav-link i {
    margin-right: 10px;
    color: var(--gold);
    width: 24px;
    text-align: center;
}

/* Enhanced Mobile Elements */
@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header .subtitle {
        font-size: 0.9rem;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .contact-form, .info-card {
        padding: 25px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .language-switcher {
        top: 20px;
        right: 15px;
    }
    
    .language-trigger {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    /* Mobile Journey Steps */
    .journey-step {
        min-width: 100%;
        margin-bottom: 30px;
    }

    .journey-connector {
        display: none;
    }
}

/* Ultra-Mobile Optimization */
@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .package-actions .btn {
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links, .footer-contact {
        margin-bottom: 30px;
    }
}

/* Luxury Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Elegant Form Inputs */
.form-control {
    border: 1px solid var(--platinum);
    padding: 12px 15px;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-weight: 300;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(242, 68, 109, 0.15);
}

/* Image Zoom Effect */
.img-zoom {
    transition: transform 0.5s ease;
    will-change: transform;
}

.img-zoom:hover {
    transform: scale(1.03);
}

/* ==================== */
/* BLOG SECTION STYLES */
/* ==================== */

.blog-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.blog-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    z-index: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(242, 68, 109, 0.15);
}

.blog-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--black);
    opacity: 0.7;
}

.blog-date {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.blog-date i {
    margin-right: 8px;
    color: var(--primary);
}

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

.blog-author i {
    margin-right: 8px;
    color: var(--primary);
}

.blog-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--black);
    transition: color 0.3s ease;
}

.blog-excerpt {
    font-family: var(--font-secondary);
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 20px;
    flex: 1;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Blog Loading State */
.blog-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* Blog Error State */
.blog-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: rgba(242, 68, 109, 0.05);
    border-radius: 8px;
}

.blog-error i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.blog-error h3 {
    font-family: var(--font-primary);
    color: var(--black);
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 767.98px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-image-container {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.3rem;
    }
}