/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'MuseoModerno', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(139, 45, 232, 0.2));
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(139, 45, 232, 0.3));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: #8b2de8;
    background: rgba(139, 45, 232, 0.1);
}

.nav-link.active {
    color: #ffffff;
    background: #8b2de8;
    font-weight: 600;
}



.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.rent-out-btn {
    background: #8b2de8;
    color: white !important;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.rent-out-btn:hover {
    background: #7a26d3;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #8b2de8;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #2c3e50;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #666;
}

.unlock-text {
    color: #8b2de8;
    font-weight: 600;
}

/* Search Form */
.search-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #8b2de8;
    font-size: 1.1rem;
}

.location-icon {
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9ff;
}

.form-control:focus {
    outline: none;
    border-color: #8b2de8;
}

.form-control::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.search-btn {
    width: 100%;
    padding: 1rem;
    background: #8b2de8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #7a26d3;
}

.hero-subtext {
    color: #666;
    font-size: 1rem;
}

/* Video Section */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    animation: videoFloat 6s ease-in-out infinite;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(139, 45, 232, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(139, 45, 232, 0.1) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-container:hover .hero-video {
    transform: scale(1.05);
}

.video-controls {
    text-align: center;
    color: white;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b2de8 0%, #b946f0 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 45, 232, 0.4);
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(139, 45, 232, 0.6);
}

.video-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.video-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.video-floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: translateY(20px);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b2de8 0%, #b946f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(139, 45, 232, 0.3);
    transition: transform 0.3s ease;
}

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.floating-element:hover .floating-icon {
    transform: scale(1.1) rotate(5deg);
}

.floating-element:hover .floating-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.float-1 {
    top: 5%;
    left: 50%;
    animation: float1 4s ease-in-out infinite, slideInLeft 0.8s ease-out;
    animation-play-state: paused, running;
    animation-delay: 0s, 0.2s;
}

.float-2 {
    top: 100%;
    right: -25%;
    animation: float2 5s ease-in-out infinite 1s, slideInRight 0.8s ease-out;
    animation-play-state: paused, running;
    animation-delay: 1s, 0.4s;
}

.float-3 {
    bottom: 15%;
    left: 35%;
    animation: float3 6s ease-in-out infinite 2s, slideInBottom 0.8s ease-out;
    animation-play-state: paused, running;
    animation-delay: 2s, 0.6s;
}

/* Show and animate floating elements when video is playing */
.video-container.video-playing ~ .video-floating-elements .floating-element {
    opacity: 1;
    transform: translateY(0);
    animation-play-state: running, running;
}

.video-container.video-playing ~ .video-floating-elements .float-1 {
    animation-delay: 0s, 0.2s;
    transition-delay: 0.2s;
}

.video-container.video-playing ~ .video-floating-elements .float-2 {
    animation-delay: 1s, 0.4s;
    transition-delay: 0.4s;
}

.video-container.video-playing ~ .video-floating-elements .float-3 {
    animation-delay: 2s, 0.6s;
    transition-delay: 0.6s;
}

/* Enhanced hover effects for floating elements */
.floating-element:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.floating-element:hover .floating-icon {
    transform: scale(1.2) rotate(10deg);
    animation: iconGlow 0.6s ease-in-out;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 45, 232, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(139, 45, 232, 0.8);
    }
}

/* Enhanced video container animation */
@keyframes videoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Slide-in animations for initial appearance */
@keyframes slideInLeft {
    0% {
        transform: translateX(-100px) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    0% {
        transform: translateY(100px) translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
}

/* Enhanced floating animations with image scaling */
@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-8px) rotate(1deg) scale(1.02);
    }
    50% {
        transform: translateY(-15px) rotate(2deg) scale(1.05);
    }
    75% {
        transform: translateY(-8px) rotate(1deg) scale(1.02);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-10px) rotate(-1deg) scale(1.03);
    }
    50% {
        transform: translateY(-20px) rotate(-2deg) scale(1.06);
    }
    75% {
        transform: translateY(-10px) rotate(-1deg) scale(1.03);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg) scale(1.01);
    }
    50% {
        transform: translateY(-10px) rotate(1deg) scale(1.04);
    }
    75% {
        transform: translateY(-5px) rotate(0.5deg) scale(1.01);
    }
}

/* Pulse animation for floating icons */
@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(139, 45, 232, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(139, 45, 232, 0.5);
    }
}

.video-container.video-playing ~ .video-floating-elements .floating-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

.video-container.video-playing ~ .video-floating-elements .float-1 .floating-icon {
    animation-delay: 0.5s;
}

.video-container.video-playing ~ .video-floating-elements .float-2 .floating-icon {
    animation-delay: 1s;
}

.video-container.video-playing ~ .video-floating-elements .float-3 .floating-icon {
    animation-delay: 1.5s;
}

/* Continuous subtle animations for engagement */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Up and down animation for animated floating elements */
@keyframes upDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Apply up and down animation to float-1 when animated class is present */
.floating-element.float-1.animated {
    animation: upDown 2s ease-in-out infinite, slideInLeft 0.8s ease-out;
    animation-play-state: running, running;
    animation-delay: 0s, 0.2s;
}

.floating-element {
    animation: breathe 4s ease-in-out infinite;
    animation-delay: calc(var(--delay, 0) * 0.5s);
}

.float-1 {
    --delay: 1;
}

.float-2 {
    --delay: 2;
}

.float-3 {
    --delay: 3;
}

/* Video Fallback */
.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        #8b2de8 0%,
        #b946f0 50%,
        #6a1b9a 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 1;
}

.fallback-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.fallback-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.fallback-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.demo-elements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.demo-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.demo-element:hover {
    transform: translateY(-5px);
}

.demo-element i {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.demo-element span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Ensure video shows when loaded */
.hero-video {
    position: relative;
    z-index: 2;
    display: block;
    background: #000;
}

/* Show fallback by default, hide when video loads */
.video-fallback {
    display: flex;
}

.hero-video[src]:not([src=""]) ~ .video-fallback {
    display: none;
}

/* Hide fallback when video is playing */
.video-playing .video-fallback {
    display: none;
}





/* Global Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

/* What We Own Section */
.what-we-own {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.what-we-own .section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.logos-carousel {
    position: relative;
    z-index: 2;
}

.logo-item {
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 15px;
}

.logo-item:hover .logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 45, 232, 0.2);
}

/* Custom Owl Carousel Styles */
.owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Discover Section */
.discover {
    padding: 100px 0;
    background: #f8f9fa;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discover-image {
    position: relative;
}

.discover-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.discover-text {
    padding: 2rem 0;
    opacity: 1;
}

.discover-text * {
    opacity: 1;
}

.discover-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
    opacity: 1;
}

.discover-subtitle {
    color: #8b2de8;
    font-weight: 700;
}

.discover-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 1;
}

.discover-features {
    margin-bottom: 3rem;
}

.discover-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1.5rem;
    opacity: 1;
}

.discover-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 45, 232, 0.3);
}

.discover-feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    opacity: 1;
}

.discover-feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    opacity: 1;
}

.discover-btn {
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(139, 45, 232, 0.3);
}

.discover-btn:hover {
    background: linear-gradient(135deg, #7a28d1 0%, #5e35b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 45, 232, 0.4);
}

.discover-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.discover-btn:hover i {
    transform: translateX(3px);
}

/* Luxury Discover Section */
.luxury-discover {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.luxury-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.luxury-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.luxury-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(139 45 232 / 20%) 0%, rgb(106 27 154 / 28%) 50%, rgb(44 62 80 / 38%) 100%);
    z-index: 2;
}

.luxury-discover .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.luxury-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    animation: luxuryFadeInUp 1.2s ease-out;
}

.luxury-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.luxury-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.luxury-cta-btn {
    background: linear-gradient(135deg, #8b2de8 0%, #b946f0 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 30px rgba(139, 45, 232, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.luxury-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.luxury-cta-btn:hover::before {
    left: 100%;
}

.luxury-cta-btn:hover {
    background: linear-gradient(135deg, #7a28d1 0%, #a63ee8 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 45, 232, 0.6);
}

.luxury-cta-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.luxury-cta-btn:hover i {
    transform: translateX(5px);
}

/* Luxury Section Animations */
@keyframes luxuryFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles effect */
.luxury-discover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    animation: luxuryParticles 20s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes luxuryParticles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a252f 30%, #2c3e50 70%, #34495e 100%);
    color: white;
    padding: 100px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #8b2de8 0%, #a855f7 25%, #e74c3c 50%, #f39c12 75%, #8b2de8 100%);
    background-size: 300% 100%;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 45, 232, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
}

.footer-logo {
    height: 90px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    margin-bottom: 2.5rem;
    filter: brightness(0) invert(1);
    transition: all 0.5s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.footer-logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(139, 45, 232, 0.8));
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.8;
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.footer-link {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    min-width: 160px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #8b2de8 0%, #a855f7 50%, #e74c3c 100%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 45, 232, 0.4);
    border-color: #8b2de8;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-link:hover::after {
    opacity: 1;
}

.footer-bottom {
    border-top: 2px solid rgba(139, 45, 232, 0.3);
    padding-top: 3rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b2de8, transparent);
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    color: #bdc3c7;
    font-size: 0.95rem;
    text-align: center;
}

.footer-legal p {
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.footer-legal-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
    font-weight: 500;
}

.footer-legal-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #8b2de8;
    transition: width 0.3s ease;
}

.footer-legal-links a:hover {
    color: #ffffff;
    background: rgba(139, 45, 232, 0.1);
}

.footer-legal-links a:hover::before {
    width: 80%;
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-menu.active .nav-link {
    margin-bottom: 1rem;
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(139, 45, 232, 0.2);
}

.nav-menu.active .nav-link:hover,
.nav-menu.active .nav-link.active {
    background: rgb(140 38 241);
    transform: translateY(-2px);
}

.nav-menu.active .nav-link::after {
    display: none;
}

/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}



.discover-feature {
    opacity: 1;
    transform: translateY(0);
}

.form-group.focused {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .logo {
        height: 40px;
        max-width: 150px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .video-container {
        max-width: 100%;
        margin-top: 2rem;
    }

    /* Luxury Collection Mobile Styles */
    .luxury-collection {
        padding: 40px 0;
    }

    .luxury-collection .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .luxury-products.owl-carousel .owl-item {
        height: 410px; /* Increased from 380px to accommodate larger images */
    }

    .luxury-product-card {
        max-width: 250px;
        margin: 0 5px;
    }

    .luxury-product-card .product-image {
        height: 180px; /* Increased from 150px */
    }

    .luxury-product-card .product-content {
        padding: 1rem;
    }

    .luxury-product-card .product-title {
        font-size: 1.1rem;
    }

    .luxury-product-card .product-description {
        font-size: 0.8rem;
    }

    .luxury-product-card .feature-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .luxury-product-card .price {
        font-size: 1.3rem;
    }

    .luxury-product-card .rent-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* All Cars Tablet Styles */
    .all-cars {
        padding: 40px 0;
    }

    .all-cars .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .all-cars-products.owl-carousel .owl-item {
        height: 410px;
    }

    .all-cars-product-card {
        max-width: 250px;
        margin: 0 5px;
    }

    .all-cars-product-card .product-image {
        height: 180px;
    }

    .all-cars-product-card .product-content {
        padding: 1rem;
    }

    .all-cars-product-card .product-title {
        font-size: 1.1rem;
    }

    .all-cars-product-card .product-description {
        font-size: 0.8rem;
    }

    .all-cars-product-card .feature-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .all-cars-product-card .price {
        font-size: 1.3rem;
    }

    .all-cars-product-card .rent-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    /* Our Offer Tablet Styles */
    .our-offer {
        padding: 40px 0;
    }

    .our-offer .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .offer-products.owl-carousel .owl-item {
        height: 410px;
    }

    .offer-product-card {
        max-width: 250px;
        margin: 0 5px;
    }

    .offer-product-card .product-image {
        height: 180px;
    }

    .offer-product-card .product-content {
        padding: 1rem;
    }

    .offer-product-card .product-title {
        font-size: 1.1rem;
    }

    .offer-product-card .product-description {
        font-size: 0.8rem;
    }

    .offer-product-card .feature-item {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .offer-product-card .price {
        font-size: 1.3rem;
    }

    .offer-product-card .rent-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .video-floating-elements {
        display: none;
    }

    .floating-element {
        display: none;
    }

    .what-we-own {
        padding: 40px 0;
    }

    .what-we-own .section-title {
        font-size: 2rem;
    }

    .logo-img {
        width: 80px;
        height: 60px;
    }

    .logo-item {
        height: 80px;
    }

    .discover-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .discover-title {
        font-size: 2rem;
    }

    .discover {
        padding: 40px 0;
    }

    .discover-feature {
        text-align: left;
    }

    .luxury-discover {
        min-height: 60vh;
    }

    .luxury-title {
        font-size: 2.5rem;
    }

    .luxury-subtitle {
        font-size: 1.1rem;
    }

    .luxury-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .floating-icon {
        width: 30px;
        height: 30px;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer {
        padding: 70px 0 20px;
    }

    .footer-content {
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        height: 70px;
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .footer-description {
        font-size: 1.1rem;
        line-height: 1.6;
        max-width: 90%;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .footer-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: 200px;
        width: 100%;
        max-width: 280px;
    }

    .footer-link:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 15px 35px rgba(139, 45, 232, 0.5);
    }

    .footer-legal {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal-links a {
        padding: 0.8rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        height: 35px;
        max-width: 120px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .search-form {
        padding: 1.5rem;
    }

    .video-container {
        margin-top: 1rem;
    }

    .video-info h4 {
        font-size: 1rem;
    }

    .video-info p {
        font-size: 0.8rem;
    }

    .video-play-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .demo-elements {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .demo-element {
        padding: 1rem;
    }

    .demo-element i {
        font-size: 1.5rem;
    }

    .demo-element span {
        font-size: 0.9rem;
    }

    .floating-element {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .what-we-own {
        padding: 30px 0;
    }

    .what-we-own .section-title {
        font-size: 1.8rem;
    }

    .logo-img {
        width: 60px;
        height: 75px;
    }

    .logo-item {
        height: 60px;
    }

    .discover {
        padding: 30px 0;
    }

    .discover-content {
        gap: 1.5rem;
    }

    .discover-title {
        font-size: 1.8rem;
    }

    .discover-description {
        font-size: 1rem;
    }

    .discover-feature {
        flex-direction: column;
        text-align: center;
    }

    .discover-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .discover-feature-content h4 {
        font-size: 1.1rem;
    }

    .discover-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .luxury-discover {
        min-height: 50vh;
    }

    .luxury-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .luxury-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .luxury-cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .luxury-content {
        padding: 1rem;
    }

    /* Luxury Collection Mobile Styles */
    .luxury-collection {
        padding: 30px 0;
    }

    .luxury-collection .section-title {
        font-size: 1.8rem;
    }

    .luxury-products.owl-carousel .owl-item {
        height: 370px; /* Increased from 340px to accommodate larger images */
    }

    .luxury-product-card {
        max-width: 200px;
        margin: 0 5px;
    }

    .luxury-product-card .product-image {
        height: 150px; /* Increased from 120px */
    }

    .luxury-product-card .product-content {
        padding: 0.8rem;
    }

    .luxury-product-card .product-title {
        font-size: 1rem;
    }

    .luxury-product-card .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .luxury-product-card .product-features {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .luxury-product-card .feature-item {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .luxury-product-card .price {
        font-size: 1.2rem;
    }

    .luxury-product-card .rent-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    /* All Cars Mobile Styles */
    .all-cars {
        padding: 30px 0;
    }

    .all-cars .section-title {
        font-size: 1.8rem;
    }

    .all-cars-products.owl-carousel .owl-item {
        height: 370px;
    }

    .all-cars-product-card {
        max-width: 200px;
        margin: 0 5px;
    }

    .all-cars-product-card .product-image {
        height: 150px;
    }

    .all-cars-product-card .product-content {
        padding: 0.8rem;
    }

    .all-cars-product-card .product-title {
        font-size: 1rem;
    }

    .all-cars-product-card .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .all-cars-product-card .product-features {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .all-cars-product-card .feature-item {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .all-cars-product-card .price {
        font-size: 1.2rem;
    }

    .all-cars-product-card .rent-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    /* Our Offer Mobile Styles */
    .our-offer {
        padding: 30px 0;
    }

    .our-offer .section-title {
        font-size: 1.8rem;
    }

    .offer-products.owl-carousel .owl-item {
        height: 370px;
    }

    .offer-product-card {
        max-width: 200px;
        margin: 0 5px;
    }

    .offer-product-card .product-image {
        height: 150px;
    }

    .offer-product-card .product-content {
        padding: 0.8rem;
    }

    .offer-product-card .product-title {
        font-size: 1rem;
    }

    .offer-product-card .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .offer-product-card .product-features {
        gap: 0.3rem;
        margin-bottom: 0.8rem;
    }

    .offer-product-card .feature-item {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .offer-product-card .price {
        font-size: 1.2rem;
    }

    .offer-product-card .rent-btn {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
} 

/* Luxury Collection Section */
.luxury-collection {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.luxury-collection .section-title {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.luxury-products.owl-carousel {
    margin-top: 0;
}

.luxury-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 10px;
    max-width: 300px;
}

.luxury-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.luxury-product-card .product-image {
    position: relative;
    height: 220px; /* Increased from 180px */
    overflow: hidden;
}

.luxury-product-card .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.luxury-product-card:hover .product-img {
    transform: scale(1.05);
}

.luxury-product-card .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.luxury-product-card .product-content {
    padding: 1.2rem;
}

.luxury-product-card .product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.luxury-product-card .product-description {
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.luxury-product-card .product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.luxury-product-card .feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.luxury-product-card .feature-item i {
    color: #8b2de8;
    font-size: 0.7rem;
}

.luxury-product-card .feature-item .feature-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.luxury-product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.luxury-product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b2de8;
}

.luxury-product-card .period {
    color: #666;
    font-size: 0.9rem;
}

.luxury-product-card .rent-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.luxury-product-card .rent-btn:hover {
    background: linear-gradient(135deg, #7a28d1 0%, #5e35b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 45, 232, 0.3);
}

.luxury-product-card .rent-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.luxury-product-card .rent-btn:hover i {
    transform: translateX(3px);
}

/* Custom Owl Carousel Styling for Luxury Products */
.luxury-products.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.luxury-products.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 460px; /* Increased from 420px to accommodate larger images */
}

.luxury-products.owl-carousel .owl-item .luxury-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.luxury-products.owl-carousel .luxury-product-card .product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.2rem;
}

.luxury-products.owl-carousel .luxury-product-card .product-description {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.luxury-products.owl-carousel .luxury-product-card .rent-btn {
    margin-top: auto;
} 

/* All Cars Section */
.all-cars {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.all-cars .section-title {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.all-cars-products.owl-carousel {
    margin-top: 0;
}

.all-cars-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 10px;
    max-width: 300px;
}

.all-cars-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.all-cars-product-card .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.all-cars-product-card .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.all-cars-product-card:hover .product-img {
    transform: scale(1.05);
}

.all-cars-product-card .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.all-cars-product-card .product-content {
    padding: 1.2rem;
}

.all-cars-product-card .product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.all-cars-product-card .product-description {
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.all-cars-product-card .product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.all-cars-product-card .feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.all-cars-product-card .feature-item i {
    color: #8b2de8;
    font-size: 0.7rem;
}

.all-cars-product-card .feature-item .feature-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.all-cars-product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.all-cars-product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b2de8;
}

.all-cars-product-card .period {
    color: #666;
    font-size: 0.9rem;
}

.all-cars-product-card .rent-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.all-cars-product-card .rent-btn:hover {
    background: linear-gradient(135deg, #7a28d1 0%, #5e35b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 45, 232, 0.3);
}

.all-cars-product-card .rent-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.all-cars-product-card .rent-btn:hover i {
    transform: translateX(3px);
}

/* Custom Owl Carousel Styling for All Cars */
.all-cars-products.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.all-cars-products.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 460px;
}

.all-cars-products.owl-carousel .owl-item .all-cars-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.all-cars-products.owl-carousel .all-cars-product-card .product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.2rem;
}

.all-cars-products.owl-carousel .all-cars-product-card .product-description {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.all-cars-products.owl-carousel .all-cars-product-card .rent-btn {
    margin-top: auto;
} 

/* Our Offer Section */
.our-offer {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.our-offer .section-title {
    margin-bottom: 2rem;
    color: #2c3e50;
}

.offer-products.owl-carousel {
    margin-top: 0;
}

.offer-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 10px;
    max-width: 300px;
}

.offer-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.offer-product-card .product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.offer-product-card .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-product-card:hover .product-img {
    transform: scale(1.05);
}

.offer-product-card .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-product-card .product-content {
    padding: 1.2rem;
}

.offer-product-card .product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.offer-product-card .product-description {
    color: #666;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.offer-product-card .product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.offer-product-card .feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: #f8f9fa;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #666;
    font-weight: 500;
}

.offer-product-card .feature-item i {
    color: #8b2de8;
    font-size: 0.7rem;
}

.offer-product-card .feature-item .feature-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.offer-product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.offer-product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b2de8;
}

.offer-product-card .period {
    color: #666;
    font-size: 0.9rem;
}

.offer-product-card .rent-btn {
    width: 100%;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-product-card .rent-btn:hover {
    background: linear-gradient(135deg, #7a28d1 0%, #5e35b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 45, 232, 0.3);
}

.offer-product-card .rent-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.offer-product-card .rent-btn:hover i {
    transform: translateX(3px);
}

/* Custom Owl Carousel Styling for Offer Products */
.offer-products.owl-carousel .owl-stage-outer {
    padding: 20px 0;
}

.offer-products.owl-carousel .owl-item {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 460px;
}

.offer-products.owl-carousel .owl-item .offer-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.offer-products.owl-carousel .offer-product-card .product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.2rem;
}

.offer-products.owl-carousel .offer-product-card .product-description {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.offer-products.owl-carousel .offer-product-card .rent-btn {
    margin-top: auto;
}

/* Contact Us Section */
.contact-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
}

.contact-us .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.contact-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.contact-text p a {
    color: #8b2de8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-text p a:hover {
    color: #6a1b9a;
    text-decoration: underline;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #f8f9ff;
    font-family: 'MuseoModerno', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b2de8;
    background: white;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #7a28d1 0%, #5e35b1 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 45, 232, 0.3);
}

.contact-submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(3px);
}

/* Responsive Design for Contact Us */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-us {
        padding: 60px 0;
    }
    
    .contact-us .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info h3 {
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .contact-us {
        padding: 40px 0;
    }
    
    .contact-us .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-text h4 {
        font-size: 1rem;
    }
    
    .contact-text p {
        font-size: 0.9rem;
    }
}

/* Contact Form Error States */
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
    border-color: #e74c3c;
    background-color: #ffeaea;
}

.contact-form input.error:focus,
.contact-form select.error:focus,
.contact-form textarea.error:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* Success animation for contact form */
.contact-form.success {
    animation: formSuccess 0.5s ease;
}

@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Contact item icon transitions */
.contact-icon {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Map Section */
.contact-map {
    margin-top: 4rem;
    text-align: center;
}

.contact-map h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 1rem;
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    border-radius: 15px;
    filter: brightness(0.95) contrast(1.1);
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    filter: brightness(1) contrast(1.2);
}

/* Responsive Design for Contact Map */
@media (max-width: 768px) {
    .contact-map {
        margin-top: 3rem;
    }
    
    .contact-map h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .map-container {
        padding: 0.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-map {
        margin-top: 2rem;
    }
    
    .contact-map h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-container {
        padding: 0.5rem;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.faq-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(139 45 232 / 20%) 0%, rgb(106 27 154 / 28%) 50%, rgb(44 62 80 / 38%) 100%);
    z-index: 2;
}

/* Floating particles effect */
.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px, 120px 120px;
    animation: faqParticles 20s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes faqParticles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.faq-header .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.faq-content {
    position: relative;
    z-index: 10;
}

.faq-questions {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex-grow: 1;
    padding-right: 1rem;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-item:hover .faq-question h3 {
    color: #f0f0f0;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle i {
    font-size: 1rem;
    color: #8b2de8;
    transition: all 0.3s ease;
}

.faq-item:hover .faq-toggle {
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    transform: scale(1.1);
}

.faq-item:hover .faq-toggle i {
    color: white;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    background: rgb(51 47 47);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8b2de8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.faq-footer {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.faq-cta {
    text-align: center;
    background: linear-gradient(135deg, #8b2de8 0%, #6a1b9a 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(139, 45, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta::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: ctaFloat 15s ease-in-out infinite;
}

@keyframes ctaFloat {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.faq-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #8b2de8;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8f9ff;
}

.faq-contact-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-contact-btn:hover i {
    transform: translateX(3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 60px 0;
        min-height: 80vh;
    }
    
    .faq-bg-video {
        display: none;
    }
    
    .faq-overlay {
        background: 
            linear-gradient(135deg, rgb(139 45 232 / 35%) 0%, rgb(106 27 154 / 45%) 50%, rgb(44 62 80 / 55%) 100%),
            url('../images/cars.jpg');
        background-size: cover;
        background-position: center;
        animation: none;
    }
    
    .faq-header .section-title {
        font-size: 2.2rem;
        color: white;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
        letter-spacing: -0.02em;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        font-weight: 300;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-cta {
        padding: 2rem 1.5rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq {
        min-height: 70vh;
    }
    
    .faq-bg-video {
        display: none;
    }
    
    .faq-overlay {
        background: 
            linear-gradient(135deg, rgb(139 45 232 / 40%) 0%, rgb(106 27 154 / 50%) 50%, rgb(44 62 80 / 60%) 100%),
            url('../images/cars.jpg');
        background-size: cover;
        background-position: center;
        animation: none;
    }
    
    .faq-header .section-title {
        font-size: 1.8rem;
        color: white;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        letter-spacing: -0.02em;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 1rem;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }
    
    .faq-cta {
        padding: 1.5rem 1rem;
    }
    
    .faq-contact-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    left: 93%;
    bottom: 20px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-button:hover {
    background-color: #20c157;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    font-size: 26px;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover i {
    transform: scale(1.2);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-right-color: #333;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse animation for attention */
.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #25D366;
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0.7;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        left: 15px;
        bottom: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        left: 65px;
        font-size: 12px;
        padding: 6px 10px;
    }
    
    .whatsapp-button:hover .whatsapp-tooltip {
        left: 70px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i {
        font-size: 22px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on very small screens */
    }
}

/* Ensure button stays above other elements */
.whatsapp-float {
    z-index: 9999;
}

/* Additional hover effects */
.whatsapp-button:active {
    transform: scale(0.95);
}

/* Support for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        animation: none;
    }
    
    .whatsapp-float::before {
        animation: none;
    }
}