*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* style */
    .hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
    .hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 171, 2, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 170, 0, 0.04) 1px, transparent 1px); background-size: 48px 48px; }
    .hero-content { position: relative; z-index: 1; width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
    .hero-tag { font-size: 12px; letter-spacing: 0.1em; color: var(--accent); text-transform: uppercase; margin-bottom: 1.5rem; display: block; }
    .hero-title { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.05; margin-bottom: 1.5rem; }
    .hero-title em { font-style: italic; color: var(--accent); }
    .hero-subtitle { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 3rem; max-width: 480px; line-height: 1.7; }
    .search-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; max-width: 860px; }
    .search-fields { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; margin-bottom: 1rem; }
    .search-field label { display: block; font-size: 11px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
    .search-btn { width: 100%; padding: 13px; font-size: 15px; }
    .ai-hint { display: flex; align-items: center; gap: 12px; margin-top: 1rem; font-size: 13px; color: var(--text-muted); }
    .ai-hint-btn { background: var(--accent-bg); border: 1px solid rgba(232,201,138,0.3); color: var(--accent); font-size: 13px; padding: 7px 16px; border-radius: 99px; cursor: pointer; font-family: var(--font-body); }
    .stats-bar { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.5rem 2rem; display: flex; justify-content: center; align-items: center; gap: 3rem; flex-wrap: wrap; }
    .stat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .stat-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); }
    .stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
    .stat-div { width: 1px; height: 40px; background: var(--border); }
    .features-section { padding: 6rem 0; }
    .section-title { font-family: var(--font-display); font-size: 2.2rem; margin-bottom: 3rem; text-align: center; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
    .feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: border-color var(--transition), transform var(--transition); }
    .feature-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
    .feature-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
    .feature-card h3 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
    .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
    .cta-box { background: var(--accent-bg); border: 1px solid rgba(255, 170, 0, 0.2); border-radius: var(--radius-lg); padding: 3rem; text-align: center; margin-bottom: 4rem; }
    .cta-box h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
    .cta-box p { color: var(--text-muted); margin-bottom: 1.75rem; }
  

:root {
  --bg: #0d0d0d;
  --bg-card: #0f0f0f;
  --bg-elevated: #1e1e1e;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text: #f0ede8;
  --text-muted: #888;
  --text-faint: #555;
  --accent: #e8c98a;
  --accent-dark: #c9a85c;
  --accent-bg: rgba(232,201,138,0.08);
  --success: #4caf7d;
  --danger: #e05252;
  --warning: #e09c52;
  --radius: 10px;
  --radius-lg: 16px;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; transition: all var(--transition); }

input, select, textarea {
  font-family: var(--font-body);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}

input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder { color: var(--text-faint); }
select option { background: var(--bg-elevated); }

.btn-primary {
  background: var(--accent);
  color: #0d0d0d;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 24px;
  border-radius: var(--radius);
  display: inline-block;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
}
.btn-ghost:hover { border-color: var(--border-hover); background: var(--bg-elevated); }

.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }

.badge { display: inline-block; font-size: 11px; font-weight: 500; padding: 3px 10px; border-radius: 99px; }
.badge-green { background: rgba(76,175,125,0.15); color: var(--success); }
.badge-red { background: rgba(224,82,82,0.15); color: var(--danger); }
.badge-amber { background: rgba(224,156,82,0.15); color: var(--warning); }
.badge-accent { background: var(--accent-bg); color: var(--accent); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }




.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.75rem;
}

.footer-brand .brand-icon { color: var(--accent); }

.footer-about p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 1rem;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.footer-social a:hover {
  background: #ff6b00;
}

.footer-social img {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2rem;
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-faint); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

section p{
    text-align:center;
    color:#aaa;
}

.car-grid,
.steps,
.review-grid,
.destination-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}




/* ========== FULLY RESPONSIVE ========== */

/* Navbar mobile */
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 0;
  }

  .navbar-brand { font-size: 1.2rem; }

  .navbar-links { display: none; }

  .navbar-actions { gap: 8px; }
  .navbar-actions .btn-ghost { padding: 7px 10px; font-size: 12px; }
  .navbar-actions .btn-primary { padding: 7px 10px; font-size: 12px; }

  /* Hero */
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-content { padding: 0 1rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .search-box { padding: 1rem; }
  .search-fields { grid-template-columns: 1fr; gap: 10px; }

  /* Stats */
  .stats-bar { gap: 1rem; padding: 1rem; flex-wrap: wrap; }
  .stat-div { display: none; }
  .stat-num { font-size: 1.3rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .features-section { padding: 3rem 0; }
  .section-title { font-size: 1.6rem; }

  /* CTA */
  .cta-box { padding: 2rem 1rem; }
  .cta-box h2 { font-size: 1.5rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-bottom-links { flex-wrap: wrap; gap: 1rem; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .fleet-controls { flex-direction: column; align-items: flex-start; }
  .branch-filter { flex-direction: column; align-items: flex-start; }

  /* Car detail */
  .detail-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .pricing-cards { grid-template-columns: repeat(3, 1fr); }
  .detail-actions { flex-direction: column; }
  .detail-actions .btn-primary,
  .detail-actions .btn-cart { width: 100%; text-align: center; }

  /* Booking */
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .summary-card { position: static; }

  /* Branches */
  .branches-grid { grid-template-columns: 1fr; }
  .branches-info-bar { grid-template-columns: 1fr; }

  /* Account */
  .account-tabs { flex-wrap: wrap; }

  /* Admin */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .add-grid { grid-template-columns: 1fr; }

  /* Auth */
  .auth-page { padding: 1rem; }
  .auth-card { padding: 1.5rem; }

  /* AI suggest */
  .ai-container { padding: 0 1rem; }
  .ai-messages { max-height: 400px; }

  /* Page header */
  .page-header { padding: 2rem 0 1.5rem; }
  .page-header h1 { font-size: 1.8rem; }

  /* Tables */
  .admin-table-wrap { overflow-x: auto; }
  .admin-table { min-width: 600px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .features-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; gap: 8px; }
  .navbar-actions .btn-ghost { display: none; }
  .car-specs { flex-wrap: wrap; gap: 6px; }
  .type-filters { gap: 6px; }
  .type-btn { padding: 5px 12px; font-size: 12px; }
  .ai-header h1 { font-size: 1.4rem; }
  .detail-title { font-size: 1.5rem; }
  .detail-tabs { flex-wrap: wrap; }
  .detail-tab { padding: 8px 12px; font-size: 13px; }
  .coupon-hints { flex-wrap: wrap; }
  .booking-grid { gap: 1rem; }
  .car-summary { flex-direction: column; }
  .car-summary img { width: 100%; height: 160px; }
}


/* =========================================
   EXTRA RESPONSIVE FIXES
========================================= */

/* Tablets */
@media (max-width:992px){

.container{
    width:95%;
    padding:0 15px;
}

section{
    padding:60px 0;
}

section h2{
    font-size:34px;
}

}

/* Mobile */
@media (max-width:768px){

/* General */
.container{
    width:95%;
    padding:0 15px;
}

section{
    padding:50px 0;
}

section h2{
    font-size:30px;
}

/* Hero */

.hero{
    min-height:auto;
    padding:80px 0;
}

.hero-title{
    font-size:2.2rem;
}

.hero-subtitle{
    font-size:15px;
}

/* Search */

.search-fields{
    grid-template-columns:1fr;
}

/* Cards */

.car-grid,
.steps,
.review-grid,
.destination-grid{
    grid-template-columns:1fr;
    gap:20px;
}

/* Timeline */

.timeline::before{
    display:none;
}

.timeline-item{
    flex-direction:column;
    gap:20px;
}

.timeline-number{
    width:70px;
    height:70px;
    min-width:70px;
    margin:auto;
}

.timeline-content{
    width:100%;
}

/* FAQ */

.faq-section{
    grid-template-columns:1fr;
    gap:40px;
}

.faq-left h2{
    font-size:2rem;
}

.faq-card{
    padding:20px;
}

/* Footer */

.footer-grid{
    grid-template-columns:1fr;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-bottom-links{
    justify-content:center;
    flex-wrap:wrap;
}

/* Chatbot */

.chat-window{
    width:95%;
    right:10px;
    left:10px;
    bottom:90px;
}

.chat-toggle{
    width:60px;
    height:60px;
}

.chat-toggle img{
    width:60px;
    height:60px;
}

.chat-body{
    height:220px;
}

}

/* Small Phones */

@media (max-width:480px){

.hero-title{
    font-size:1.8rem;
}

.hero-subtitle{
    font-size:14px;
}

.section-header h2{
    font-size:2rem;
}

.faq-left h2{
    font-size:1.8rem;
}

.timeline-content{
    padding:20px;
}

.car-card,
.review-card,
.destination-card,
.step{
    padding:15px;
}

.review-card{
    border-radius:20px;
}

.chat-window{
    height:75vh;
}

} 

.search-box{

width:100%;

max-width:980px;

padding:28px;

border-radius:22px;

}



