:root {
    --primary-bg: #0F1330;
    --accent-cyan: #1FF2FD;
    --accent-light: rgba(31, 242, 253, 0.1);
    --accent-medium: rgba(31, 242, 253, 0.3);
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.8);
}

html{
    font-size: 80% !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-white);
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    /*0%, 100% { box-shadow: 0 0 20px rgba(31, 242, 253, 0.3); }*/
    /*50% { box-shadow: 0 0 40px rgba(31, 242, 253, 0.6); }*/
}

img{
    border-radius: 15px !important;
}

.card-footer{
    margin-top: 20px;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    background: rgba(15, 19, 48, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--accent-medium);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-cyan) !important;
    text-shadow: 0 0 10px rgba(31, 242, 253, 0.5);
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 15px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-cyan) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--accent-cyan);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    /*min-height: 100vh;*/
    background: linear-gradient(135deg, var(--primary-bg) 0%, rgba(31, 242, 253, 0.1) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(31,242,253,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-custom {
    padding: 15px 30px;
    /*margin: 10px;*/
    border: 2px solid var(--accent-cyan);
    color: var(--text-white);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    transition: left 0.5s ease;
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:hover {
    color: var(--text-white);
    background: var(--accent-cyan);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 242, 253, 0.4);
    text-decoration: none;
}

.btn-primary-custom {
    background: var(--accent-cyan);
    color: var(--primary-bg);
}

.btn-primary{
    border-radius: 20px !important;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

.floating-house {
    top: 20%;
    right: 10%;
    font-size: 3rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    animation-delay: 0s;
}

.floating-car {
    bottom: 30%;
    right: 20%;
    font-size: 2.5rem;
    color: var(--accent-cyan);
    opacity: 0.3;
    animation-delay: 1.5s;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-medium);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(31, 242, 253, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    /*animation: glow 2s ease-in-out infinite alternate;*/
}

/* Search Section */
.search-section {
    background: linear-gradient(135deg, rgba(31, 242, 253, 0.1), transparent);
    padding: 80px 0;
    position: relative;
}

.search-tabs {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.nav-tabs .nav-link {
    background: transparent;
    border: 2px solid transparent;
    color: var(--text-gray);
    border-radius: 10px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link.active {
    background: var(--accent-cyan);
    color: var(--primary-bg);
    border-color: var(--accent-cyan);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-medium);
    /*color: var(--text-white);*/
    border-radius: 10px;
    padding: 12px 15px;
    color: silver !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(31, 242, 253, 0.3);
    color: var(--text-white);
}

.form-control::placeholder {
    color: var(--text-gray);
}

/* Services Section */
.services-section {
    padding: 50px 0;
    background: linear-gradient(180deg, transparent, rgba(31, 242, 253, 0.05));
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 20px 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(31, 242, 253, 0.1);
    border-color: var(--accent-cyan);
    box-shadow: 0 25px 50px rgba(31, 242, 253, 0.2);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    display: block;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-medium);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(31, 242, 253, 0.1), transparent);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-medium);
}

.contact-info {
    background: rgba(31, 242, 253, 0.1);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--accent-cyan);
}

.contact-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.contact-item i {
    color: var(--accent-cyan);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 50px 0 20px;
    border-top: 1px solid var(--accent-medium);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .floating-element {
        display: none;
    }
}

/* Scroll animations */
.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(45deg, var(--text-white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite;
}
.text-muted{
    color: silver !important;
}
.card-header{
    border-radius: 20px !important;
    margin-bottom: 10px !important;
}

.bg-white{
    background: transparent !important;
}
.bg-light{
    background: transparent !important;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.whatsapp-icon {
  margin-top: 4px;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Custom styles for the dual range slider */
.multi-range-slider {
    position: relative;
    height: 40px;
}

.multi-range-slider input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    background: transparent;
    height: 5px;
    margin: 0;
}

.multi-range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
    margin-top: -7px;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-track {
    position: absolute;
    height: 6px;
    width: 100%;
    background: #dee2e6;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    z-index: -1;
}

.multi-range-slider input[type="range"]:nth-child(1) {
    z-index: 2;
}

.multi-range-slider input[type="range"]:nth-child(2) {
    z-index: 3;
}

.hero-section {
    position: relative;
    background-image: url('../images/HD-wallpaper-ferrari-house-car-luxury.jpg'); /* replace with your image path */
    background-size: cover;
    background-position: center;
    color: white;
    z-index: 1;
}

/* Overlay for opacity effect */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(29 42 47 / 84%);; /* black with 50% opacity */
    z-index: -1; /* Behind content but above background image */
}

/* Make sure text and buttons are above overlay */
.hero-section .container {
    position: relative;
    z-index: 2;
}
