/* 
   Gagan Transport Services - Premium Design 2026
   Midnight & Amber Theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;700;800&display=swap');

:root {
    /* Color Palette - Midnight & Amber */
    --primary: #020617;
    --primary-light: #1e293b;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-glow: rgba(245, 158, 11, 0.4);
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-inv: #ffffff;
    --bg-body: #f8fafc;
    --bg-surface: #ffffff;
    --bg-alt: #f1f5f9;
    --container-width: 1200px;
    --header-height: 80px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius-md: 20px;
    --radius-lg: 30px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-body); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 32px; border-radius: 50px; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background-color: var(--accent); color: var(--text-inv); box-shadow: 0 4px 15px var(--accent-glow); }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); }

/* Header */
.site-header { position: fixed; top: 0; width: 100%; z-index: 1000; height: var(--header-height); display: flex; align-items: center; background: rgba(2, 6, 23, 0.8); backdrop-filter: blur(10px); color: #fff; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; }
.nav-desktop { display: flex; gap: 25px; }
.nav-link { font-weight: 500; opacity: 0.8; }
.nav-link:hover { opacity: 1; color: var(--accent); }
.contact-pill { background: rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 50px; display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; padding-top: var(--header-height); }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.4) 100%); z-index: -1; }
.hero-content h1 { font-size: 4rem; color: #fff; margin-bottom: 20px; }
.hero-tag { background: var(--accent); color: #000; padding: 4px 12px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; margin-bottom: 15px; display: inline-block; }

/* Booking Card */
.booking-card { padding: 40px; border-radius: var(--radius-lg); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.form-control { width: 100%; padding: 14px 18px; border-radius: 12px; font-size: 1rem; transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent) !important; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1); }

/* Sections */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-title span { color: var(--accent); }

/* Track Section */
.track-section { position: relative; padding: 120px 0; background: #020617; color: #fff; }
.track-features { display: grid; gap: 30px; }
.feature-item { display: flex; gap: 20px; align-items: flex-start; }
.feature-icon { font-size: 2rem; color: var(--accent); }
.feature-text h4 { color: #fff; margin-bottom: 5px; }

/* Testimonials */
.client-card { background: #fff; padding: 30px; border-radius: var(--radius-md); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.client-quote { font-style: italic; margin-bottom: 20px; color: var(--text-light); }
.client-details h5 { font-weight: 700; }
.client-details span { font-size: 0.8rem; color: var(--accent); }

/* Footer */
.site-footer-wrapper { background: #020617; color: #fff; padding: 80px 0 0; }
.contact-list { display: flex; flex-direction: column; gap: 15px; margin-top: 20px; }
.contact-list a { opacity: 0.7; font-size: 0.9rem; }
.contact-list a:hover { opacity: 1; color: var(--accent); }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.social-link:hover { background: var(--accent); color: #000; }

#form-status.success { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid #22c55e; }
#form-status.error { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid #ef4444; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .form-row { grid-template-columns: 1fr !important; }
}
