/* ===========================
   OnewayCab - Main Stylesheet
   Theme: Black + Lime Yellow + White
   Font: Syne + Nunito
=========================== */

:root {
    --yellow: #C5F500;
    --yellow-dark: #a8d400;
    --yellow-light: #e8ff80;
    --black: #0A0A0A;
    --black-soft: #1a1a1a;
    --gray-dark: #2d2d2d;
    --gray-mid: #6b6b6b;
    --gray-light: #f0f0f0;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.16);
    --radius: 12px;
    --radius-lg: 20px;
    --font-head: 'Syne', sans-serif;
    --font-body: 'Nunito', sans-serif;
    --transition: 0.3s ease;
    --navbar-h: 72px;
    --topbar-h: 38px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
input, select, textarea, button { font-family: var(--font-body); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ========== TOPBAR ========== */
.topbar {
    background: var(--black);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,0.75); font-size: 12.5px; display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--yellow); }
.topbar span { display: flex; align-items: center; gap: 6px; }
.whatsapp-link { background: #25D366; color: var(--white) !important; padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.whatsapp-link:hover { background: #1da851 !important; color: var(--white) !important; }

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    height: var(--navbar-h);
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo .logo-icon { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-main { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--black); letter-spacing: -0.5px; }
.logo-accent { color: var(--yellow-dark); }
.logo-sub { font-size: 10px; color: var(--gray-mid); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 5px;
    padding: 8px 14px; font-size: 14.5px; font-weight: 600;
    color: var(--black); border-radius: 8px;
    transition: all var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
    color: var(--black); background: var(--yellow);
}
.nav-menu > li > a i { font-size: 11px; }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + 8px); left: 0;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); min-width: 200px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all var(--transition); z-index: 100;
    border-top: 3px solid var(--yellow);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { display: flex; align-items: center; gap: 10px; padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--black); border-bottom: 1px solid var(--gray-light); }
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--yellow); border-radius: 0; }

.btn-nav-book {
    background: var(--yellow) !important; color: var(--black) !important;
    padding: 9px 20px !important; border-radius: 8px !important;
    font-weight: 700 !important; font-size: 14px !important;
    display: flex; align-items: center; gap: 8px;
    border: 2px solid var(--yellow);
    transition: all var(--transition) !important;
}
.btn-nav-book:hover { background: var(--black) !important; color: var(--yellow) !important; border-color: var(--black) !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--black); border-radius: 2px; transition: all var(--transition); }

/* ========== HERO SECTION ========== */
.hero {
    background: var(--black);
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(197,245,0,0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(197,245,0,0.06) 0%, transparent 50%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(197,245,0,0.15); border: 1px solid rgba(197,245,0,0.3);
    color: var(--yellow); padding: 6px 16px; border-radius: 50px;
    font-size: 13px; font-weight: 600; margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.hero-badge i { color: var(--yellow); }
.hero-title {
    font-family: var(--font-head); font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 800; color: var(--white); line-height: 1.15;
    margin-bottom: 20px; letter-spacing: -1px;
}
.hero-title .accent { color: var(--yellow); }
.hero-desc { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 500; }

/* Booking card in hero */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.hero-card::before {
    content: '';
    position: absolute; top: -3px; left: 20px; right: 20px; height: 3px;
    background: var(--yellow); border-radius: 3px 3px 0 0;
}
.hero-card h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; }
.trip-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: var(--gray-light); padding: 4px; border-radius: 8px; }
.trip-tab {
    flex: 1; padding: 8px 6px; border: none; background: transparent;
    font-size: 13px; font-weight: 600; color: var(--gray-mid);
    border-radius: 6px; cursor: pointer; transition: all var(--transition);
    text-align: center;
}
.trip-tab.active { background: var(--yellow); color: var(--black); }
.trip-tab:hover:not(.active) { color: var(--black); }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: var(--radius);
    font-weight: 700; font-size: 15px; border: 2px solid transparent;
    cursor: pointer; transition: all var(--transition); line-height: 1;
    font-family: var(--font-body);
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(197,245,0,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--yellow); border-color: var(--black); }
.btn-dark:hover { background: var(--gray-dark); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; justify-content: center; }

/* ========== FORM ELEMENTS ========== */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; color: var(--black); }
.form-control {
    width: 100%; padding: 12px 16px;
    border: 2px solid #e5e5e5; border-radius: 10px;
    font-size: 14.5px; color: var(--black); background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    font-family: var(--font-body);
}
.form-control:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(197,245,0,0.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-icon-wrap { position: relative; }
.form-icon-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-mid); font-size: 14px; }
.form-icon-wrap .form-control { padding-left: 40px; }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 52px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--yellow); color: var(--black);
    padding: 5px 16px; border-radius: 50px;
    font-size: 12px; font-weight: 700; margin-bottom: 14px;
    letter-spacing: 1px; text-transform: uppercase;
}
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: 14px; }
.section-desc { color: var(--gray-mid); font-size: 16px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ========== SERVICES SECTION ========== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    border: 2px solid var(--gray-light);
    transition: all var(--transition);
    cursor: pointer;
}
.service-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 68px; height: 68px; background: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px; font-size: 26px; transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; }

/* ========== VEHICLE / RATES CARDS ========== */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.vehicle-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 2px solid var(--gray-light);
    transition: all var(--transition);
}
.vehicle-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vehicle-card-head { background: var(--black); padding: 28px; text-align: center; }
.vehicle-card-head i { font-size: 40px; color: var(--yellow); }
.vehicle-card-body { padding: 20px; }
.vehicle-card-body h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.vehicle-card-body .rate { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--black); }
.vehicle-card-body .rate span { font-size: 14px; color: var(--gray-mid); font-weight: 500; }
.vehicle-features { margin: 12px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.vehicle-feat { background: var(--gray-light); padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.vehicle-feat.ac { background: #e8f5ff; color: #0066aa; }

/* ========== STEPS / HOW IT WORKS ========== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; position: relative; }
.steps-grid::before {
    content: '';
    position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
    background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 20px, transparent 20px, transparent 40px);
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 72px; height: 72px; background: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
    margin: 0 auto 18px; border: 3px solid var(--black);
}
.step-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--gray-mid); }

/* ========== TESTIMONIALS ========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px; border: 2px solid var(--gray-light);
    transition: all var(--transition);
}
.testi-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.testi-stars { color: var(--yellow); margin-bottom: 14px; font-size: 16px; }
.testi-text { font-size: 15px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 44px; height: 44px; background: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-weight: 800; font-size: 16px; color: var(--black);
    flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14.5px; }
.testi-loc { font-size: 12.5px; color: var(--gray-mid); }

/* ========== BLOG SECTION ========== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
    background: var(--white); border-radius: var(--radius-lg);
    overflow: hidden; border: 2px solid var(--gray-light);
    transition: all var(--transition);
}
.blog-card:hover { border-color: var(--yellow); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img {
    height: 200px; background: var(--black);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-img-placeholder { font-size: 48px; color: var(--yellow); }
.blog-card-body { padding: 22px; }
.blog-cat { background: var(--yellow); color: var(--black); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.blog-card-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a:hover { color: var(--yellow-dark); }
.blog-card-body p { font-size: 14px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 12.5px; color: var(--gray-mid); flex-wrap: wrap; }
.blog-meta i { color: var(--yellow-dark); }

/* ========== CTA SECTION ========== */
.cta-section {
    background: var(--black);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(197,245,0,0.08) 0%, transparent 70%);
}
.cta-section h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-call {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3); padding: 13px 28px;
    border-radius: var(--radius); font-weight: 700; font-size: 15px;
    transition: all var(--transition);
}
.btn-call:hover { border-color: var(--yellow); color: var(--yellow); }

/* ========== WHY US SECTION ========== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.why-card {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 22px; border-radius: var(--radius);
    background: var(--white); border: 2px solid var(--gray-light);
    transition: all var(--transition);
}
.why-card:hover { border-color: var(--yellow); box-shadow: var(--shadow); }
.why-icon { width: 50px; height: 50px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-card h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 5px; font-size: 15px; }
.why-card p { font-size: 13.5px; color: var(--gray-mid); line-height: 1.6; }

/* ========== RATES PAGE ========== */
.rates-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.rates-table { width: 100%; border-collapse: collapse; background: var(--white); }
.rates-table thead th { background: var(--black); color: var(--yellow); padding: 16px 18px; font-family: var(--font-head); font-size: 14px; font-weight: 700; text-align: left; white-space: nowrap; }
.rates-table tbody tr { border-bottom: 1px solid var(--gray-light); transition: background var(--transition); }
.rates-table tbody tr:last-child { border-bottom: none; }
.rates-table tbody tr:hover { background: rgba(197,245,0,0.06); }
.rates-table tbody td { padding: 14px 18px; font-size: 14.5px; }
.rates-table .badge-ac { background: #e0f7fa; color: #006064; padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.rates-table .price-cell { font-family: var(--font-head); font-weight: 700; font-size: 16px; }

/* ========== BLOG PAGE ========== */
.blog-hero { background: var(--black); padding: 64px 0; text-align: center; }
.blog-hero h1 { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,0.6); font-size: 17px; }
.blog-main-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 24px; border: 2px solid var(--gray-light); margin-bottom: 28px; }
.sidebar-widget h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--yellow); }
.sidebar-route-list li { border-bottom: 1px solid var(--gray-light); }
.sidebar-route-list li:last-child { border-bottom: none; }
.sidebar-route-list a { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; font-size: 14px; color: var(--black); }
.sidebar-route-list a:hover { color: var(--yellow-dark); }
.sidebar-route-list a i { color: var(--yellow-dark); }

/* ========== SINGLE BLOG POST ========== */
.post-hero { background: var(--black); padding: 60px 0; }
.post-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.25; }
.post-meta { display: flex; gap: 20px; flex-wrap: wrap; color: rgba(255,255,255,0.6); font-size: 13.5px; }
.post-meta i { color: var(--yellow); }
.post-content { font-size: 16px; line-height: 1.8; color: var(--gray-dark); }
.post-content h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin: 32px 0 14px; color: var(--black); }
.post-content h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin: 24px 0 10px; }
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 20px; }
.post-content li { margin-bottom: 8px; }
.post-content strong { color: var(--black); }

/* ========== BOOKING PAGE ========== */
.booking-page { background: var(--off-white); min-height: 100vh; }
.booking-container { max-width: 900px; margin: 0 auto; padding: 48px 20px; }
.booking-box { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.booking-box h2 { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; margin-bottom: 28px; }
.booking-box h2 span { color: var(--yellow-dark); }
.fare-estimate { background: var(--black); border-radius: var(--radius); padding: 20px 24px; margin-top: 20px; display: none; }
.fare-estimate.show { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.fare-estimate .fare-label { color: rgba(255,255,255,0.7); font-size: 14px; }
.fare-estimate .fare-amount { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--yellow); }
.fare-note { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ========== CONTACT PAGE ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--white); border-radius: var(--radius); border: 2px solid var(--gray-light); }
.contact-card:hover { border-color: var(--yellow); }
.contact-card-icon { width: 48px; height: 48px; background: var(--yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-card h4 { font-family: var(--font-head); font-weight: 700; margin-bottom: 4px; }
.contact-card a, .contact-card p { font-size: 14.5px; color: var(--gray-mid); }
.contact-card a:hover { color: var(--yellow-dark); }

/* ========== ADMIN PANEL ========== */
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 256px; background: var(--black); color: var(--white);
    display: flex; flex-direction: column;
    position: fixed; top: 0; left: 0; height: 100vh;
    z-index: 200; transition: width var(--transition);
}
.admin-sidebar-logo { padding: 22px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar-logo .logo-main { color: var(--white); font-size: 18px; }
.admin-nav { flex: 1; overflow-y: auto; padding: 12px 0; }
.admin-nav-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 12px 20px 4px; }
.admin-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 20px; color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 600;
    border-left: 3px solid transparent; transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(197,245,0,0.1); color: var(--yellow); border-left-color: var(--yellow); }
.admin-nav a i { width: 18px; text-align: center; }
.admin-main { margin-left: 256px; flex: 1; background: #f4f6f9; min-height: 100vh; }
.admin-header { background: var(--white); padding: 16px 28px; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-header h1 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; }
.admin-content { padding: 28px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.admin-stat-card { background: var(--white); border-radius: var(--radius); padding: 22px; display: flex; align-items: center; gap: 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.admin-stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.admin-stat-icon.yellow { background: var(--yellow); color: var(--black); }
.admin-stat-icon.green { background: #e8f5e9; color: #2e7d32; }
.admin-stat-icon.blue { background: #e3f2fd; color: #1565c0; }
.admin-stat-icon.red { background: #fce4ec; color: #c62828; }
.admin-stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; }
.admin-stat-label { font-size: 13px; color: var(--gray-mid); }
.admin-table-wrap { background: var(--white); border-radius: var(--radius); box-shadow: 0 2px 8px rgba(0,0,0,0.06); overflow: hidden; margin-bottom: 28px; }
.admin-table-head { padding: 18px 24px; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; justify-content: space-between; }
.admin-table-head h3 { font-family: var(--font-head); font-weight: 700; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { background: var(--off-white); padding: 12px 18px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray-mid); text-align: left; }
.admin-table td { padding: 13px 18px; border-bottom: 1px solid var(--gray-light); font-size: 14px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(197,245,0,0.04); }
.status-badge { padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-pending { background: #fff8e1; color: #f57c00; }
.status-confirmed { background: #e8f5e9; color: #2e7d32; }
.status-cancelled { background: #fce4ec; color: #c62828; }
.status-completed { background: #e3f2fd; color: #1565c0; }

/* ========== FLOATING BUTTONS ========== */
.whatsapp-float {
    position: fixed; bottom: 90px; right: 22px;
    width: 54px; height: 54px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--white); z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.wa-tooltip {
    position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
    background: var(--black); color: var(--white); padding: 5px 12px;
    border-radius: 6px; font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.call-float {
    position: fixed; bottom: 22px; right: 22px;
    width: 54px; height: 54px; background: var(--yellow);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--black); z-index: 999;
    box-shadow: 0 4px 20px rgba(197,245,0,0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{ box-shadow: 0 4px 20px rgba(197,245,0,0.5); } 50%{ box-shadow: 0 4px 30px rgba(197,245,0,0.8); } }

/* ========== BREADCRUMB ========== */
.breadcrumb-bar { background: var(--gray-light); padding: 12px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; flex-wrap: wrap; }
.breadcrumb a { color: var(--gray-mid); }
.breadcrumb a:hover { color: var(--yellow-dark); }
.breadcrumb .sep { color: var(--gray-mid); }
.breadcrumb .current { color: var(--black); font-weight: 600; }

/* ========== ALERT / NOTICE ========== */
.alert { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #f0fff4; border: 1px solid #b2dfdb; color: #1b5e20; }
.alert-error { background: #fff3f3; border: 1px solid #ffcdd2; color: #b71c1c; }
.alert-info { background: #e3f2fd; border: 1px solid #bbdefb; color: #0d47a1; }

/* ========== FOOTER ========== */
.footer { background: #0f0f0f; color: rgba(255,255,255,0.75); }
.footer-top { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 18px 0 20px; color: rgba(255,255,255,0.55); }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .logo-icon { width: 40px; height: 40px; }
.footer-logo-text { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--yellow); }
.footer-logo-sub { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; display: block; }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list a { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--yellow); }
.footer-contact-list a i { width: 16px; color: var(--yellow); }
.footer-col h4 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(197,245,0,0.3); }
.footer-col ul li { margin-bottom: 2px; }
.footer-col ul a { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--yellow); }
.footer-col ul a i { font-size: 11px; color: var(--yellow); }
.footer-bottom { background: #080808; padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--yellow); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 14px; transition: all var(--transition); }
.footer-social a:hover { background: var(--yellow); color: var(--black); }

/* ========== PAGE HERO ========== */
.page-hero { background: var(--black); padding: 56px 0; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 16px; }
.page-hero .accent { color: var(--yellow); }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeInUp 0.6s ease forwards; }
.fade-up-2 { animation: fadeInUp 0.6s 0.15s ease both; }
.fade-up-3 { animation: fadeInUp 0.6s 0.3s ease both; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .blog-main-grid { grid-template-columns: 1fr; }
    .admin-sidebar { width: 220px; }
    .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
    :root { --topbar-h: auto; }
    .topbar-inner { flex-direction: column; padding: 8px 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--white); flex-direction: column;
        padding: 16px; gap: 2px; box-shadow: var(--shadow-lg);
        display: none; border-top: 3px solid var(--yellow);
    }
    .nav-menu.open { display: flex; }
    .nav-menu > li > a { padding: 12px 16px; border-radius: 8px; }
    .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: var(--gray-light); border-radius: 8px; margin-top: 4px; border-top: none; }
    .has-dropdown:hover .dropdown, .has-dropdown .dropdown { display: block; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 60px 0; }
    .hero-card { order: -1; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .admin-wrap { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: relative; }
    .admin-main { margin-left: 0; }
    .steps-grid::before { display: none; }
}

@media (max-width: 480px) {
    .section { padding: 52px 0; }
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: center; }
    .hero-stats { gap: 20px; }
}
