@import url('https://fonts.googleapis.com/css2?family=Tauri&display=swap');

:root {
    --gold: #c5a059;
    --black: #000000;
}

body {
    font-family: "Tauri", sans-serif;
    color: #333;
}

.text-gold { color: var(--gold) !important; }
.bg-gold { background-color: var(--gold) !important; }

.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b38f4d;
    color: white;
}

/* Header */
.header__nav .nav-link {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    url('https://www.luxurycarrental.ae/assets/images/hero-bg.jpg') center/cover;
    min-height: 80vh;
}

.hero__image {
    transform: scale(1.2) translateX(30px);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

.hero__car-tag {
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    z-index: 0;
}

/* Catalog */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 15px;
}

.car-card {
    transition: 0.3s;
    border: 1px solid transparent;
}

.car-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.car-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
}

/* Feature Section */
.feature-item h6 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Catalog Tabs Styling */
.catalog__tabs .nav-link {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
    margin: 0 10px;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.catalog__tabs .nav-link.active {
    background: var(--gold) !important;
    border-color: var(--gold);
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* FAQ Styling */
.faq__item {
    border: 1px solid #eee;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
}

.faq__question {
    font-weight: 700 !important;
    padding: 20px !important;
}

.faq__question:not(.collapsed) {
    background-color: var(--gold) !important;
    color: white !important;
}

/* Footer Styling */
.footer {
    font-size: 15px;
}

.footer__logo {
    font-size: 24px;
    font-weight: 800;
}

.footer__logo span { color: var(--gold); }

.footer__links li { margin-bottom: 12px; }

.footer__links a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer__links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* Gold Button Outline */
.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: bold;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: white;
}

:root {
    --gold-gradient: linear-gradient(135deg, #c5a059 0%, #f1d392 100%);
    --dark-card: #1a1a1a;
    --text-grey: #a0a0a0;
}

/* Luxury Card Base */
.luxury-card {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.luxury-card:hover {
    transform: translateY(-12px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

/* Image Effects */
.luxury-card__img-box {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.luxury-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-card:hover .luxury-card__img {
    transform: scale(1.1);
}

.badge-year {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 12px;
    border: 1px solid var(--gold);
}

/* Specs Styling */
.luxury-card__title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
}

.luxury-card__specs i {
    color: var(--gold);
}

/* Pulse Effect for Pricing/WhatsApp */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(197, 160, 89, 0); }
    100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-green {
    animation: pulse-green 2s infinite;
}

/* Buttons */
.btn-gold-gradient {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 13px;
    display: flex;
    align-items: center;
}

.btn-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    font-size: 22px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.price-amount {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Luxury Tabs Custom Styling */
.luxury-tabs .nav-link {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 0 8px;
    padding: 12px 25px;
    border-radius: 15px;
}

.luxury-tabs .nav-link.active {
    background: var(--gold-gradient) !important;
    color: #000 !important;
    font-weight: 700;
}

.small, small {
    color: #fff;
}