:root {
    --accent-color: #D5C68B;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d1117;
    --text-light: #e6e6e6;
    --text-muted: #a0a0a0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

span{
    color: white !important;
}

h1, h2, h3{
    color: white !important;
}

label{
    color: white !important;
}

img{
    border-radius: 15px !important;
}

.card-footer{
    margin-top: 20px;
}

.navbar {
    background: rgba(13, 17, 23, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color) !important;
    text-shadow: 0 0 20px rgba(213, 198, 139, 0.3);
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.hero-section {
    /*min-height: 100vh;*/
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), #f4e5a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), #e6d49a);
    border: none;
    color: var(--dark-bg);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(213, 198, 139, 0.3);
    background: linear-gradient(135deg, #e6d49a, var(--accent-color));
}
.btn-outline-primary{
    background: transparent;
    border: 1px solid #e6d49a;
    color: #e6d49a;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(213, 198, 139, 0.3);
    background: linear-gradient(135deg, #e6d49a, var(--accent-color));
}

.bg-white{
    background: transparent !important;
    background-color: transparent !important;
}

.btn-custom {
    background: linear-gradient(135deg, var(--accent-color), #e6d49a);
    border: none;
    color: var(--dark-bg);
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(213, 198, 139, 0.3);
    background: linear-gradient(135deg, #e6d49a, var(--accent-color));
}

.section-padding {
    padding: 1rem 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent-color);
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 198, 139, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(213, 198, 139, 0.1);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(213, 198, 139, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    /*height: 100%;*/
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(213, 198, 139, 0.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.top-picks-item {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 0 15px 15px 0;
    transition: all 0.3s ease;
}

.top-picks-item:hover {
    background: rgba(213, 198, 139, 0.1);
    transform: translateX(10px);
}

.top-picks-item i {
    color: var(--accent-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-section {
    background: var(--darker-bg);
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(213, 198, 139, 0.2);
}

.contact-info i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(213, 198, 139, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.stats-counter {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-color);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}
.card-text{
    color: silver;
}
.text-muted{
    color: silver !important;
}
.bg-primary{
    background-color: transparent !important;
    padding: 0px 10px;
}
.card-header{
    background-color: transparent !important;
    padding: 0px 10px;
}

.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;
}

.multi-range-slider input[type="range"]::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0d6efd;
    cursor: pointer;
    margin-top: -5px;
}

.slider-track {
    position: absolute;
    height: 5px;
    width: 100%;
    background: #dee2e6;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 5px;
    z-index: -1;
}

.multi-range-slider input[type="range"]:nth-child(1)::-webkit-slider-thumb {
    z-index: 2;
}

.multi-range-slider input[type="range"]:nth-child(2)::-webkit-slider-thumb {
    z-index: 3;
}