/* Ezy Car Theme v5 - Son & Daughter Car Rental */
/* Premium Gold on Warm Charcoal — rich and inviting */

:root { 
    --gold: #C8A24E; --gold-light: #D4B55E; --gold-dark: #A88530; 
    --bg: #1a1a1f; --dark: #212126; --dark-card: #28282e; --dark-surface: #32323a;
    --text: #eceae7; --text-muted: rgba(255,255,255,0.62); --text-dim: rgba(255,255,255,0.4);
    --border: rgba(200,162,78,0.12); --border-hover: rgba(200,162,78,0.28);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; color: var(--text); background: var(--bg); }
a { color: var(--gold); }

/* ─── Animations ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideRight { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes glow { 0%,100% { box-shadow: 0 0 8px rgba(200,162,78,0.2); } 50% { box-shadow: 0 0 20px rgba(200,162,78,0.4); } }
.fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s; opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s; opacity: 0; }

/* ─── Navbar ─── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 12px 30px; display: flex; align-items: center; justify-content: space-between; background: rgba(26,26,31,0.92); backdrop-filter: blur(16px) saturate(1.2); border-bottom: 1px solid var(--border); transition: all 0.4s; }
.navbar.scrolled { padding: 6px 30px; background: rgba(26,26,31,0.97); border-bottom-color: var(--border-hover); }
.navbar .logo { height: 58px; width: auto; transition: height 0.3s; }
.navbar.scrolled .logo { height: 44px; }
.nav-links { display: flex; list-style: none; gap: 22px; align-items: center; }
.nav-links a { text-decoration: none; color: rgba(255,255,255,0.68); font-weight: 500; font-size: 13px; letter-spacing: 0.4px; transition: color 0.3s; position: relative; }
.nav-links a:hover { color: var(--gold); }
.nav-links > li > a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; border-radius: 1px; }
.nav-links > li > a:hover::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--bg) !important; font-weight: 700; padding: 10px 22px; border-radius: 8px; font-size: 12px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.8px; transition: all 0.3s; box-shadow: 0 2px 12px rgba(200,162,78,0.2); }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,162,78,0.35); }

/* ─── Nav Dropdown ─── */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu { display: none; position: absolute; top: calc(100% + 12px); left: -16px; background: rgba(30,30,35,0.98); border: 1px solid var(--border-hover); border-radius: 14px; padding: 10px 0; min-width: 220px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); z-index: 100; backdrop-filter: blur(20px); }
.nav-dropdown .dropdown-menu::before { content: ''; position: absolute; top: -6px; left: 30px; width: 12px; height: 12px; background: rgba(30,30,35,0.98); border-left: 1px solid var(--border-hover); border-top: 1px solid var(--border-hover); transform: rotate(45deg); }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: flex; align-items: center; gap: 8px; padding: 11px 20px; color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 500; transition: all 0.2s; }
.dropdown-menu a::before { content: '→'; color: var(--gold); opacity: 0; transition: all 0.2s; font-size: 11px; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(200,162,78,0.06); padding-left: 26px; }
.dropdown-menu a:hover::before { opacity: 1; }

/* ─── Mobile Menu Button ─── */
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; z-index: 1002; background: rgba(200,162,78,0.08); border-radius: 8px; border: 1px solid rgba(200,162,78,0.12); transition: all 0.3s; }
.mobile-menu-btn:hover { background: rgba(200,162,78,0.15); }
.mobile-menu-btn span { width: 22px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── Mobile Overlay & Nav ─── */
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 1000; backdrop-filter: blur(4px); }
.mobile-overlay.active { display: block; }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 88%; max-width: 380px; height: 100vh; background: linear-gradient(180deg, #22222a 0%, var(--bg) 100%); z-index: 1001; padding: 0; transition: right 0.4s cubic-bezier(0.22,0.61,0.36,1); overflow-y: auto; border-left: 1px solid var(--border-hover); box-shadow: -10px 0 40px rgba(0,0,0,0.6); }
.mobile-nav.active { right: 0; }
.mobile-nav-header { padding: 24px 24px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.mobile-nav-header img { height: 42px; }
.mobile-nav-close { background: rgba(200,162,78,0.1); border: 1px solid rgba(200,162,78,0.15); color: var(--gold); width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; cursor: pointer; transition: all 0.2s; }
.mobile-nav-close:hover { background: rgba(200,162,78,0.2); }
.mobile-nav-section { padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); }
.mobile-nav-section-title { font-size: 10px; text-transform: uppercase; letter-spacing: 1.8px; color: var(--gold); padding: 14px 24px 6px; font-weight: 700; }
.mobile-nav a { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.72); text-decoration: none; font-size: 15px; padding: 14px 24px; font-weight: 500; transition: all 0.2s; }
.mobile-nav a:hover, .mobile-nav a:active { color: var(--gold); background: rgba(200,162,78,0.05); padding-left: 28px; }
.mobile-nav a .nav-emoji { font-size: 18px; width: 26px; text-align: center; }
.mobile-nav-cta { display: block; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--bg) !important; text-align: center; padding: 16px; border-radius: 12px; font-weight: 700; margin: 16px 20px; text-transform: uppercase; letter-spacing: 0.5px; font-size: 14px; box-shadow: 0 4px 20px rgba(200,162,78,0.25); animation: glow 3s ease infinite; }
.mobile-nav .help-section { padding: 20px 24px; }
.mobile-nav .help-section p { color: var(--text-dim); font-weight: 700; margin-bottom: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.mobile-nav .help-section a { padding: 8px 0; border: none; font-size: 14px; color: var(--gold); }

/* ─── Select / Input Styling ─── */
select, input[type="date"], input[type="text"], input[type="email"], input[type="tel"], textarea {
    -webkit-appearance: none; appearance: none;
    background: rgba(255,255,255,0.06) !important; color: white !important;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 8px;
    font-family: 'Outfit', sans-serif; font-size: 14px; padding: 12px 14px;
}
select:focus, input:focus, textarea:focus { border-color: var(--gold) !important; outline: none; background: rgba(200,162,78,0.05) !important; }
select option { background: #28282e; color: white; padding: 12px; font-size: 14px; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8A24E' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 14px center !important; padding-right: 36px !important; }

/* ─── Video Section ─── */
.video-section { position: relative; padding: 80px 20px; overflow: hidden; min-height: 300px; }
.video-section .video-bg { position: absolute; top: 50%; left: 50%; width: 120%; height: 120%; transform: translate(-50%,-50%); pointer-events: none; z-index: 0; }
.video-section .video-bg iframe { position: absolute; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh; transform: translate(-50%,-50%); }
.video-section .video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(160deg, rgba(13,13,13,0.8), rgba(13,13,13,0.65), rgba(13,13,13,0.8)); z-index: 1; }
.video-section .video-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }

/* ─── Content Pages ─── */
.page-hero { padding: 120px 20px 40px; text-align: center; background: linear-gradient(160deg, var(--bg), #181410, var(--bg)); position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border-hover), transparent); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 42px); color: white; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.content { max-width: 800px; margin: 0 auto; padding: 40px 20px 60px; }
.card { background: var(--dark-card); border: 1px solid rgba(255,255,255,0.04); border-radius: 14px; padding: 28px; margin-bottom: 20px; transition: all 0.3s; }
.card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.card h2 { font-size: 18px; color: var(--gold); margin-bottom: 12px; }
.card p, .card li { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.card ul { padding-left: 20px; margin-top: 8px; }
.card li { margin-bottom: 6px; }
.card .hl { background: rgba(200,162,78,0.06); border: 1px solid rgba(200,162,78,0.12); border-radius: 8px; padding: 14px; margin-top: 12px; font-size: 13px; color: var(--gold); }
.cta-box { background: linear-gradient(135deg, rgba(200,162,78,0.06), rgba(200,162,78,0.02)); border: 1px solid var(--border-hover); border-radius: 14px; padding: 30px; text-align: center; margin-top: 30px; }
.cta-box h2 { font-family: 'Playfair Display', serif; font-size: 22px; color: white; margin-bottom: 8px; }
.cta-box p { color: var(--text-muted); margin-bottom: 16px; font-size: 14px; }
.cta-box a { display: inline-block; padding: 13px 28px; background: var(--gold); color: var(--bg); border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px; transition: all 0.3s; }
.cta-box a:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,162,78,0.3); }

/* ─── Insurance Options ─── */
.ins-option { display:flex;align-items:center;gap:12px;padding:14px;border:2px solid rgba(255,255,255,0.05);border-radius:10px;cursor:pointer;margin-bottom:8px;transition:all 0.2s;flex-wrap:wrap; }
.ins-option:hover { border-color:var(--border-hover);background:rgba(200,162,78,0.04); }
.ins-option.selected { border-color:var(--gold);background:rgba(200,162,78,0.06); }
.ins-option input[type="radio"],.ins-option input[type="checkbox"] { width:18px;height:18px;accent-color:var(--gold);flex-shrink:0; }
.ins-option-info { flex:1;min-width:120px; }
.ins-option-info strong { font-size:14px;display:block;color:white; }
.ins-option-info small { font-size:12px;color:var(--text-muted);display:block;margin-top:2px; }
.ins-option-price { font-size:14px;font-weight:700;color:var(--gold);white-space:nowrap; }

/* ─── Footer ─── */
.footer { background: var(--dark); color: var(--text-dim); padding: 50px 20px 20px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 30px; max-width: 1100px; margin: 0 auto 30px; }
.footer-brand img { height: 50px; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer h4 { color: var(--gold); font-size: 11px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: var(--text-dim); text-decoration: none; font-size: 13px; transition: all 0.2s; }
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); padding-top: 20px; text-align: center; font-size: 12px; max-width: 1100px; margin: 0 auto; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ─── WhatsApp Float ─── */
.whatsapp-float { position: fixed; bottom: 20px; right: 20px; z-index: 999; background: #25D366; color: white; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: all 0.3s; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,0.5); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .nav-links, .navbar .nav-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .navbar { padding: 8px 16px; }
    .navbar .logo { height: 46px; }
    .footer-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 100px 16px 30px; }
}
