/*
Theme Name: Taxi25
Theme URI: https://taxingaigiao.vn
Author: Blue
Author URI: https://mywebsite.vn
Description: Taxi booking theme dựa trên core DQ25, lấy cảm hứng từ Remons Taxi demo.
Version: 1.0.0
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxi25
Tags: one-column, custom-logo, custom-menu, taxi, booking
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #5E5F63;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: #FDB900; text-decoration: none; transition: color 0.3s; }
a:hover { color: #e5a700; text-decoration: none; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: #222;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px;
}
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0 0 15px; }

:root {
  --primary: #FDB900;
  --primary-dark: #e5a700;
  --primary-light: rgba(253, 185, 0, 0.1);
  --primary-glow: rgba(253, 185, 0, 0.25);
  --dark-bg: #0F245A;
  --dark-bg2: #060B1A;
  --heading: #1a1a2e;
  --text: #5E5F63;
  --light-bg: #F8F6F1;
  --border: #EDEEEE;
  --container: 1290px;
  --gap: 30px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-glow: 0 8px 30px rgba(253,185,0,0.2);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

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

/* ===== UTILITY ===== */
.section-padding { padding: 110px 0; }
.section-padding-sm { padding: 70px 0; }
.text-center { text-align: center; }
.text-white { color: #fff; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  background: linear-gradient(135deg, #FDB900 0%, #F5A623 100%);
  color: #000;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(253,185,0,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: linear-gradient(135deg, #F5A623 0%, #e09500 100%);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253,185,0,0.4);
}
.btn-primary i { font-size: 12px; transition: transform 0.3s; }
.btn-primary:hover i { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-glow);
}

.section-heading {
  margin-bottom: 40px;
}
.section-heading .sub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 45px;
}
.section-heading .sub-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 3px;
}
.text-center .section-heading .sub-title,
.section-heading.text-center .sub-title {
  padding-left: 0;
  padding-bottom: 15px;
}
.text-center .section-heading .sub-title::before,
.section-heading.text-center .sub-title::before {
  left: 50%;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
}
.section-heading .title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--heading);
  letter-spacing: -0.5px;
}
.section-heading .title.text-white { color: #fff; }
.section-heading .description {
  color: var(--text);
  margin-top: 15px;
  font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-15px) translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(253,185,0,0.4); }
  50% { box-shadow: 0 0 0 15px rgba(253,185,0,0); }
}

/* Admin bar fix */
.admin-bar .header-main.is-sticky { top: 32px !important; }
@media screen and (max-width: 782px) {
  .admin-bar .header-main.is-sticky { top: 0 !important; }
}
