/* Variables & Theme */
:root {
    --primary: #0F172A;
    --primary-dark: #0B1121;
    --primary-soft: #1E293B;
    --secondary: #FBBF24;
    --secondary-accent: #FDE68A;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --light: #F8FAFC;
    --dark: #0F172A;
    --gray: #64748B;
    --glow: rgba(251, 191, 36, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

.text-primary-dark { color: var(--primary-dark) !important; }
.text-secondary-accent { color: var(--secondary) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.bg-primary-soft { background-color: var(--primary-soft) !important; }
.bg-secondary-accent { background-color: var(--secondary) !important; }
.bg-light { background-color: var(--light) !important; }
.text-secondary-dark { color: var(--gray); }
.tracking-wide { letter-spacing: 1.5px; text-transform: uppercase; }

/* Custom Color Replacements for Bootstrap */
.custom-bg-white { background-color: #ffffff !important; }
.custom-bg-light { background-color: #FFFBEB !important; }
.custom-bg-dark { background-color: #0F172A !important; }
.custom-text-white { color: #ffffff !important; }
.custom-text-muted { color: #64748B !important; }
.custom-text-dark { color: #1E293B !important; }
.custom-text-warning { color: #FBBF24 !important; }
.custom-text-danger { color: #EF4444 !important; }
.custom-text-primary { color: #0F172A !important; }
.custom-text-success { color: #25D366 !important; }

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-gold {
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #20B954 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}
.btn-whatsapp:hover {
    background: linear-gradient(135deg, #20B954 0%, var(--whatsapp-dark) 100%);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
    color: white;
}
.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1E293B 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #1E293B 0%, var(--primary-dark) 100%);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
    transform: translateY(-2px);
}
.btn-secondary-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%);
    border: none;
    box-shadow: 0 4px 15px var(--glow);
}
.btn-secondary-accent:hover {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

/* Utilities */
.transition-all { transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.divider { height: 4px; width: 60px; border-radius: 2px; }

/* Glassmorphism Navbar */
.navbar {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}
.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(15,23,42,0.08) !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.nav-link {
    color: var(--primary) !important;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 0.6rem 1.2rem !important;
    border-radius: 20px;
    margin: 0 0.2rem;
}
.nav-link:hover, .nav-link.active {
    color: #D97706 !important;
    background: rgba(251, 191, 36, 0.15);
}
.nav-link::after {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('../images/hero-bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.7) 40%, rgba(15,23,42,0.4) 100%);
    backdrop-filter: blur(3px);
}
.hero-title {
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    letter-spacing: -1px;
}
.text-gradient-gold {
    background: linear-gradient(to right, #FDE68A 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hover-lift {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
}

/* Quick Booking Card */
.booking-card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.7);
    border-top: 5px solid var(--secondary);
    transform: translateY(0);
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25) !important;
}
.booking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.4) !important;
}
.input-group-text, .form-control, .form-select {
    border: 1px solid rgba(0,0,0,0.1);
    padding: 0.85rem 1rem;
    transition: all 0.3s ease;
}
.input-group-text {
    background-color: #F8FAFC !important;
}
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.2);
    border-color: var(--secondary);
    background-color: #fff !important;
}

/* Services */
.service-card {
    border: 1px solid rgba(0,0,0,0.04);
    background: #ffffff;
    border-radius: 1.5rem !important;
    padding: 2.5rem 2rem !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08) !important;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 7rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.03);
    z-index: 0;
    transition: color 0.4s ease, transform 0.4s ease;
    line-height: 1;
}
.service-card:hover .service-number {
    color: rgba(251, 191, 36, 0.1);
    transform: translateY(10px) scale(1.1);
}
.service-card h4, .service-card p, .service-card .icon-box {
    position: relative;
    z-index: 2;
}
.icon-box {
    width: 72px;
    height: 72px;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%) !important;
    color: #D97706 !important;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.15);
}
.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg) translateY(-5px);
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%) !important;
    color: white !important;
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.35);
}

/* Vehicles */
.vehicle-card {
    border: 1px solid rgba(0,0,0,0.04);
    background: #ffffff;
    border-radius: 1.5rem !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.12) !important;
}
.vehicle-img-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}
.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vehicle-card:hover .vehicle-img {
    transform: scale(1.1);
}
.vehicle-feature-pill {
    background: rgba(15, 23, 42, 0.04);
    color: var(--primary-soft);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}
.vehicle-card:hover .vehicle-feature-pill {
    background: rgba(251, 191, 36, 0.15);
    color: #D97706;
}
.badge-pulse {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

/* Features */
.features-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.feature-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border-radius: 1.5rem;
    padding: 2.5rem 1.5rem !important;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-box::before {
    content: '';
    position: absolute;
    top: -50px; left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.feature-box:hover {
    background: #ffffff;
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.feature-box:hover::before {
    opacity: 1;
}
.feature-icon-circle {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%) !important;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #D97706 !important;
    position: relative;
    z-index: 2;
}
.feature-box:hover .feature-icon-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.2) !important;
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%) !important;
    border-color: transparent;
    color: white !important;
}
.feature-watermark {
    position: absolute;
    bottom: -15px;
    right: -15px;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.02);
    z-index: 0;
    transition: all 0.5s ease;
}
.feature-box:hover .feature-watermark {
    color: rgba(251, 191, 36, 0.05);
    transform: scale(1.1) rotate(-10deg);
}

/* Reviews */
.review-card {
    border: 1px solid rgba(0,0,0,0.04);
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 1.5rem !important;
    padding: 2.5rem !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.review-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 8rem;
    color: rgba(251, 191, 36, 0.05);
    z-index: 0;
    transition: all 0.5s ease;
}
.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15,23,42,0.08) !important;
}
.review-card:hover::before {
    color: rgba(251, 191, 36, 0.15);
    transform: rotate(10deg) scale(1.1);
}
.review-card p, .review-card .d-flex {
    position: relative;
    z-index: 2;
}
.avatar {
    width: 60px; height: 60px; font-size: 1.5rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%) !important;
    color: white !important;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
    transition: all 0.3s ease;
}
.review-card:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.5);
}

/* Contact */
.contact-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    background: transparent;
    border: 1px solid transparent;
    margin-left: -1.5rem;
}
.contact-item:hover {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.04);
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(15,23,42,0.04);
}
.contact-icon {
    width: 60px; height: 60px;
    background: #fff !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}
.contact-item:hover .contact-icon {
    transform: scale(1.15) translateY(-3px) rotate(10deg);
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%) !important;
    color: white !important;
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.35);
}
.map-container {
    padding: 12px;
    background: #ffffff;
    border-radius: 1.5rem !important;
    position: relative;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
    transition: all 0.5s ease;
}
.map-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(15,23,42,0.15);
}
.map-container iframe {
    border-radius: 1rem;
    filter: grayscale(20%) contrast(105%);
    transition: all 0.5s ease;
}
.map-container:hover iframe {
    filter: grayscale(0%) contrast(100%);
}

/* Footer */
.footer-link {
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    position: relative;
}
.footer-link::after {
    content: '';
    position: absolute;
}
.footer-link:hover {
    color: var(--secondary) !important;
    transform: translateX(6px);
    opacity: 1 !important;
}
.footer-social-icon {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}
.footer-social-icon:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, #F59E0B 100%);
    color: var(--primary-dark) !important;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    border-color: transparent;
}

/* Floating Buttons */
.floating-call {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    font-size: 26px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.floating-call:hover {
    transform: scale(1.15) translateY(-5px);
    color: var(--secondary);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.6);
    border-color: var(--secondary);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #20B954 100%);
    color: white;
    border-radius: 50%;
    font-size: 36px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp:hover {
    transform: scale(1.15) translateY(-5px);
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.floating-element {
    animation: float 4s ease-in-out infinite;
}

/* Media Queries */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
    }
}
@media (max-width: 576px) {
    .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
    .display-4 { font-size: 2.8rem; }
    .display-6 { font-size: 2.2rem; }
}
