/* =============================================
   JOT TOUR AND TRAVELS - Main Stylesheet
   Color: Dark Navy + Yellow + White
   ============================================= */

:root {
    --yellow: #F5C518;
    --yellow-dark: #E0B000;
    --dark: #0D1117;
    --dark2: #161C26;
    --dark3: #1E2637;
    --gray: #7A8599;
    --light: #F4F6FA;
    --white: #FFFFFF;
    --text: #CBD5E1;
    --radius: 6px;
    --shadow: 0 8px 32px rgba(0,0,0,0.25);
    --transition: all 0.3s ease;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Barlow', sans-serif;
    background: var(--light);
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.yellow { color: var(--yellow); }
img { max-width: 100%; height: auto; display: block; }

/* BUTTONS */
.btn-yellow {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,197,24,0.4); }

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    text-decoration: none;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}
.btn-outline:hover { background: var(--white); color: var(--dark); }

/* TOPBAR */
.topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 13px;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar-left { display: flex; gap: 20px; }
.topbar-left a, .topbar-right a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}
.topbar-left a:hover, .topbar-right a:hover { color: var(--yellow); }
.topbar-left i, .topbar-right i { margin-right: 5px; color: var(--yellow); }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a { font-size: 14px; }

/* HEADER */
.main-header {
    background: var(--dark2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.main-header.scrolled { padding: 10px 0; background: rgba(13,17,23,0.97); backdrop-filter: blur(10px); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-icon {
    width: 46px;
    height: 46px;
    background: var(--yellow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--dark);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 2px;
}
.logo-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: var(--yellow);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* NAV */
.main-nav ul { list-style: none; display: flex; gap: 4px; }
.main-nav ul li { position: relative; }
.main-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--yellow);
    background: rgba(245,197,24,0.08);
}
.main-nav ul li a i { font-size: 11px; }

/* DROPDOWN */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--dark3);
    min-width: 200px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--yellow);
    padding: 8px 0;
    opacity: 0 !important;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1 !important;
    pointer-events: auto;
    transform: translateY(0);
}
.dropdown-menu li {
    display: block;
}
.dropdown-menu li a {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 0;
    display: block;
}
.dropdown-menu li a:hover { background: rgba(245,197,24,0.1); padding-left: 24px; }

.btn-book-header {
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
.btn-book-header:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* PAGE HERO (inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5C518' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 6vw, 60px);
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
}
.page-hero h1 span { color: var(--yellow); }
.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    color: var(--gray);
    position: relative;
}
.page-hero .breadcrumb a { color: var(--yellow); text-decoration: none; }
.page-hero .breadcrumb span { color: var(--gray); }

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title .label {
    display: inline-block;
    background: rgba(245,197,24,0.12);
    color: var(--yellow);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid rgba(245,197,24,0.25);
}
.section-title h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    color: var(--dark);
    letter-spacing: 2px;
    line-height: 1.1;
}
.section-title h2 span { color: var(--yellow-dark); }
.section-title p { color: #666; max-width: 580px; margin: 12px auto 0; font-size: 16px; }

.section-title.light h2 { color: var(--white); }
.section-title.light p { color: var(--text); }

/* HERO SECTION (Homepage) */
.hero {
    background: linear-gradient(120deg, var(--dark) 0%, var(--dark2) 55%, #1a2340 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 60px;
}
.hero::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,197,24,0.1);
    border: 1px solid rgba(245,197,24,0.3);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}
.hero-badge i { font-size: 11px; }
.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(44px, 6vw, 80px);
    color: var(--white);
    line-height: 1.0;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--yellow); display: block; }
.hero p {
    color: var(--text);
    font-size: 17px;
    max-width: 460px;
    margin-bottom: 34px;
    line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
    display: flex;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    color: var(--yellow);
    line-height: 1;
}
.hero-stat .lbl { font-size: 13px; color: var(--gray); letter-spacing: 0.5px; }

/* HERO BOOKING CARD */
.hero-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    position: relative;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
    border-radius: 12px 12px 0 0;
}
.hero-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.hero-card p { font-size: 14px; color: #666; margin-bottom: 24px; }

/* TRIP TYPE TABS */
.trip-tabs { display: flex; gap: 0; margin-bottom: 24px; border-radius: 6px; overflow: hidden; border: 1px solid #e0e0e0; }
.trip-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    background: #f5f5f5;
    color: #666;
    border: none;
    transition: var(--transition);
}
.trip-tab.active { background: var(--yellow); color: var(--dark); }
.trip-tab i { margin-right: 5px; }

/* FORM */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: #555; }
.form-group input, .form-group select {
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Barlow', sans-serif;
    transition: var(--transition);
    background: #fafafa;
    color: #333;
    width: 100%;
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--yellow);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group .input-icon { position: relative; }
.form-group .input-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--yellow);
    font-size: 14px;
}
.form-group .input-icon input { padding-left: 36px; }
.btn-book-form {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* SERVICES SECTION */
.services { padding: 90px 0; background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: var(--transition);
    position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}
.service-card-body { padding: 24px; }
.service-card-icon {
    width: 52px; height: 52px;
    background: rgba(245,197,24,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--yellow-dark);
    margin-bottom: 14px;
    transition: var(--transition);
}
.service-card:hover .service-card-icon { background: var(--yellow); color: var(--dark); }
.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1.5px;
    color: var(--dark);
    margin-bottom: 8px;
}
.service-card p { color: #666; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-card .read-more {
    color: var(--yellow-dark);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    transition: gap 0.2s;
}
.service-card .read-more:hover { gap: 10px; }

/* WHY CHOOSE US */
.why-us { padding: 90px 0; background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 50px; }
.why-card {
    background: var(--dark3);
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}
.why-card:hover { background: var(--dark2); border-color: rgba(245,197,24,0.2); transform: translateY(-4px); }
.why-icon {
    width: 64px; height: 64px;
    background: rgba(245,197,24,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--yellow);
    margin: 0 auto 18px;
    transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--yellow); color: var(--dark); }
.why-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.why-card p { color: var(--text); font-size: 14px; line-height: 1.6; }

/* POPULAR ROUTES */
.routes { padding: 90px 0; background: var(--white); }
.routes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.route-card {
    background: var(--light);
    border-radius: 10px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    color: inherit;
}
.route-card:hover { border-color: var(--yellow); background: rgba(245,197,24,0.04); transform: translateX(4px); }
.route-icon {
    width: 50px; height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--dark);
    flex-shrink: 0;
}
.route-info h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.route-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.route-dist {
    font-size: 13px;
    color: var(--gray);
}
.route-dist i {
    color: var(--yellow-dark);
    margin-right: 4px;
}
.route-price {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--yellow-dark);
    background: rgba(245,197,24,0.1);
    padding: 2px 10px;
    border-radius: 20px;
}
.route-info span { font-size: 13px; color: var(--gray); }

/* COUNTERS */
.counters { padding: 70px 0; background: var(--yellow); }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.counter-item .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 58px;
    color: var(--dark);
    line-height: 1;
}
.counter-item .lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(13,17,23,0.65); margin-top: 4px; }

/* TESTIMONIALS */
.testimonials { padding: 90px 0; background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
    background: var(--white);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.10); }
.testi-stars { color: var(--yellow); font-size: 15px; margin-bottom: 12px; }
.testi-text { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 46px; height: 46px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--dark);
    flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--dark); font-size: 15px; }
.testi-loc { font-size: 13px; color: var(--gray); }

/* CTA BAND */
.cta-band {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2340 100%);
    padding: 70px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: -80px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(245,197,24,0.1) 0%, transparent 70%);
}
.cta-band h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 16px;
    position: relative;
}
.cta-band h2 span { color: var(--yellow); }
.cta-band p { color: var(--text); font-size: 17px; margin-bottom: 34px; position: relative; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* CONTACT SECTION */
.contact-section { padding: 90px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--dark);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.contact-info p { color: #666; font-size: 15px; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
    width: 46px; height: 46px;
    background: rgba(245,197,24,0.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--yellow-dark);
    flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: 15px; color: var(--dark); margin-bottom: 2px; }
.contact-item-text span, .contact-item-text a { font-size: 14px; color: #666; text-decoration: none; }
.contact-item-text a:hover { color: var(--yellow-dark); }

.contact-form {
    background: var(--light);
    padding: 36px;
    border-radius: 12px;
}
.contact-form h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--dark);
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}
.msg-success {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
    display: none;
}

/* FOOTER */
.main-footer { background: var(--dark); }
.footer-top { padding: 70px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-about { color: var(--text); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #aaa; font-size: 14px;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--yellow); color: var(--dark); }

.footer-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links li a i { font-size: 10px; color: var(--yellow); }
.footer-links li a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact-info { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-info li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-info i { color: var(--yellow); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact-info span, .footer-contact-info a { color: var(--text); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-contact-info a:hover { color: var(--yellow); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
}
.footer-bottom-inner a { color: var(--yellow); text-decoration: none; }

/* FLOAT BUTTONS */
.whatsapp-float, .call-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float { background: #25D366; color: #fff; bottom: 156px; }
.call-float { background: var(--yellow); color: var(--dark); }
.whatsapp-float:hover, .call-float:hover { transform: scale(1.1); animation: none; }

@keyframes pulse {
    0%,100% { box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
    50% { box-shadow: 0 4px 28px rgba(245,197,24,0.5); }
}

/* ABOUT PAGE */
.about-intro { padding: 90px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 10px; box-shadow: var(--shadow); }
.about-badge-float {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--yellow);
    color: var(--dark);
    padding: 16px 22px;
    border-radius: 10px;
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    box-shadow: 0 8px 24px rgba(245,197,24,0.3);
}
.about-badge-float .big { font-size: 46px; line-height: 1; }
.about-badge-float .sm { font-size: 14px; letter-spacing: 1px; }
.about-text .label { display: inline-block; background: rgba(245,197,24,0.12); color: var(--yellow-dark); font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.about-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: var(--dark); letter-spacing: 2px; line-height: 1.1; margin-bottom: 16px; }
.about-text h2 span { color: var(--yellow-dark); }
.about-text p { color: #666; font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.about-features { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.about-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #333; }
.about-features li i { color: var(--yellow-dark); font-size: 16px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid, .routes-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero { min-height: auto; padding: 60px 0; }
}

@media (max-width: 768px) {
    .topbar-left { flex-direction: column; gap: 4px; }
    .main-nav { display: none; position: fixed; top: 0; right: 0; height: 100vh; width: 260px; background: var(--dark); padding: 80px 20px 30px; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,0.4); overflow-y: auto; }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav ul li a { padding: 12px 10px; border-radius: 6px; }
    .dropdown-menu { position: static; display: none !important; box-shadow: none; border: none; border-left: 3px solid var(--yellow); background: rgba(255,255,255,0.04); border-radius: 0; }
    .dropdown.open .dropdown-menu { display: flex !important; }
    .hamburger { display: flex; }
    .btn-book-header { display: none; }

    .services-grid, .routes-grid, .testi-grid, .why-grid, .contact-grid, .about-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .about-badge-float { position: relative; right: 0; bottom: 0; margin-top: 16px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .counters-grid { grid-template-columns: 1fr 1fr; }
    .hero-btns { flex-direction: column; }
    .btn-yellow, .btn-outline { text-align: center; }
}

/* DESIGNER CREDIT */
.designer-credit {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 13px;
    color: var(--gray);
}
.joboo-link {
    color: var(--yellow) !important;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.joboo-link:hover {
    color: var(--white) !important;
    text-shadow: 0 0 10px rgba(245,197,24,0.5);
}
.joboo-link i { font-size: 12px; }

@media (max-width: 600px) {
    .designer-credit { justify-content: center; font-size: 12px; }
}
/* ===========================
   HERO SEARCH BOX
   =========================== */
.hero {
    background: linear-gradient(135deg, #0D1117 0%, #1a2340 100%);
    padding: 60px 0 50px;
    min-height: auto;
}
.hero-text-center {
    text-align: center;
    margin-bottom: 36px;
}
.hero-text-center h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 14px;
}
.hero-text-center h1 span { color: var(--yellow); display: inline; }
.hero-text-center p { color: var(--text); font-size: 17px; }

.search-box {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    max-width: 1100px;
    margin: 0 auto 36px;
}

/* Search Tabs */
.search-tabs {
    display: flex;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
}
.search-tab {
    flex: 1;
    padding: 14px 10px;
    background: transparent;
    border: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
}
.search-tab.active {
    background: var(--white);
    color: var(--dark);
    border-bottom-color: var(--yellow);
}
.search-tab:hover { color: var(--dark); }
.search-tab i { font-size: 14px; color: var(--yellow-dark); }
/* SEARCH FORM - Tab switching fix */
.search-form {
    display: none !important;
    padding: 24px;
}
.search-form.active {
    display: block !important;
}
/* Search Forms */
.search-form { display: none; padding: 24px; }
.search-form.active { display: block; }

.search-fields {
    display: flex;
    align-items: flex-end;
    gap: 0;
    flex-wrap: wrap;
}
.search-field {
    flex: 1;
    min-width: 120px;
    border-right: 1px solid #e8e8e8;
    padding: 0 14px;
}
.search-field:first-child { padding-left: 0; }
.search-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
}
.sf-input {
    position: relative;
    display: flex;
    align-items: center;
}
.sf-input i {
    position: absolute;
    left: 0;
    color: var(--yellow-dark);
    font-size: 14px;
}
.sf-input input {
    width: 100%;
    border: none;
    outline: none;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    padding: 4px 0 4px 22px;
    background: transparent;
}
.sf-input input::placeholder { font-weight: 400; color: #bbb; }

.search-swap {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--dark);
    flex-shrink: 0;
    margin: 0 4px 4px;
    transition: var(--transition);
    align-self: flex-end;
}
.search-swap:hover { background: var(--yellow-dark); transform: rotate(180deg); }

.search-btn {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 14px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 14px;
    align-self: flex-end;
}
.search-btn:hover { background: var(--yellow-dark); transform: translateY(-2px); }

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.hero-stats-row .hero-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--yellow);
    line-height: 1;
    text-align: center;
}
.hero-stats-row .hero-stat .lbl {
    font-size: 13px;
    color: var(--text);
    text-align: center;
}

/* ===========================
   RESULTS PAGE
   =========================== */
.results-search-bar {
    background: var(--dark);
    padding: 16px 0;
    position: sticky;
    top: 70px;
    z-index: 100;
    border-bottom: 2px solid rgba(245,197,24,0.2);
}
.results-search-form { width: 100%; }
.rsf-fields {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    flex-wrap: wrap;
}
.rsf-field {
    flex: 1;
    min-width: 100px;
    padding: 10px 14px;
    border-right: 1px solid #e8e8e8;
}
.rsf-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 3px;
}
.rsf-field input {
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    width: 100%;
    font-family: 'Barlow', sans-serif;
}
.rsf-swap {
    padding: 0 10px;
    color: var(--yellow-dark);
    font-size: 16px;
}
.rsf-btn {
    background: var(--yellow);
    color: var(--dark);
    border: none;
    padding: 0 28px;
    height: 60px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}
.rsf-btn:hover { background: var(--yellow-dark); }

/* Trip Info Bar */
.trip-info-bar {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    flex-wrap: wrap;
}
.tib-item {
    flex: 1;
    min-width: 160px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-right: 1px solid #eee;
}
.tib-item:last-child { border-right: none; }
.tib-item > i {
    font-size: 22px;
    color: var(--yellow-dark);
    flex-shrink: 0;
}
.tib-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 2px;
}
.tib-val {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

/* Cab Result Card */
.cab-result-card {
    background: var(--white);
    border-radius: 10px;
    padding: 24px 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: var(--transition);
    border: 1px solid transparent;
}
.cab-result-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 6px 24px rgba(245,197,24,0.15);
    transform: translateY(-2px);
}
.cab-img {
    width: 160px;
    flex-shrink: 0;
}
.cab-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.cab-img-placeholder {
    width: 160px;
    height: 90px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ccc;
}
.cab-info { flex: 1; }
.cab-type-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 4px;
}
.cab-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--dark);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.cab-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.cab-features span {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cab-features i { color: var(--yellow-dark); }
.cab-includes {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.cab-includes span {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}
.cab-price-col {
    text-align: right;
    flex-shrink: 0;
    min-width: 160px;
}
.cab-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    color: #E0B000;
    line-height: 1;
    letter-spacing: 1px;
}
.cab-price-note {
    font-size: 12px;
    color: #999;
    margin-bottom: 4px;
}
.cab-per-km {
    font-size: 13px;
    color: #888;
    margin-bottom: 14px;
}
.btn-select-car {
    display: block;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 11px 20px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 8px;
}
.btn-select-car:hover { background: var(--yellow-dark); }
.btn-whatsapp-book {
    display: block;
    background: #25D366;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}
.btn-whatsapp-book:hover { background: #128C7E; }

/* Responsive */
@media (max-width: 900px) {
    .search-fields { flex-direction: column; }
    .search-field { width: 100%; border-right: none; border-bottom: 1px solid #eee; padding: 10px 0; }
    .search-btn { width: 100%; justify-content: center; margin-left: 0; margin-top: 14px; }
    .search-swap { align-self: center; transform: rotate(90deg); }
    .cab-result-card { flex-direction: column; text-align: center; }
    .cab-price-col { text-align: center; width: 100%; }
    .cab-features, .cab-includes { justify-content: center; }
    .trip-info-bar { flex-direction: column; }
    .tib-item { border-right: none; border-bottom: 1px solid #eee; }
}
@media (max-width: 600px) {
    .rsf-fields { flex-direction: column; }
    .rsf-field { width: 100%; border-right: none; }
    .rsf-btn { width: 100%; justify-content: center; height: 48px; }
}
/* City Autocomplete */
.sf-input { position: relative; }
.city-suggest {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1.5px solid #F5C518;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 999;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.city-suggest-item {
    padding: 10px 14px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.15s;
}
.city-suggest-item:hover {
    background: rgba(245,197,24,0.1);
    color: #E0B000;
    padding-left: 20px;
}
/* =============================================
   AUTOCOMPLETE FIX
   ============================================= */

/* Search box overflow hidden remove karo */
.search-box {
    overflow: visible !important;
}

.search-form {
    overflow: visible !important;
}

.search-fields {
    overflow: visible !important;
    position: relative;
}

.search-field {
    overflow: visible !important;
    position: relative;
}

.sf-input {
    overflow: visible !important;
    position: relative;
}

/* Dropdown styling */
.autocomplete-drop {
    position: absolute !important;
    top: calc(100% + 6px) !important;
    left: 0 !important;
    right: 0 !important;
    min-width: 200px !important;
    background: #ffffff !important;
    border: 2px solid #F5C518 !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    z-index: 99999 !important;
    max-height: 220px !important;
    overflow-y: auto !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
}

.autocomplete-drop .ac-item {
    padding: 10px 16px !important;
    font-size: 14px !important;
    color: #333 !important;
    cursor: pointer !important;
    border-bottom: 1px solid #f5f5f5 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #fff !important;
    font-family: 'Barlow', sans-serif !important;
    transition: all 0.15s !important;
}

.autocomplete-drop .ac-item:hover {
    background: rgba(245,197,24,0.12) !important;
    color: #E0B000 !important;
    padding-left: 22px !important;
}

.autocomplete-drop .ac-item i {
    color: #F5C518 !important;
    font-size: 11px !important;
}

.autocomplete-drop .ac-no-result {
    padding: 12px 16px !important;
    font-size: 13px !important;
    color: #999 !important;
}