/*
Theme Name: あおい運転代行
Theme URI: https://aoi-daikou.com
Author: Aoi Daikou
Description: 千葉市あおい運転代行の公式WordPressテーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aoi-daikou
*/

/* ===== CSS Variables ===== */
:root {
  --navy: #0a1628;
  --navy-light: #132240;
  --gold: #c8a84e;
  --gold-light: #e0c874;
  --blue: #1e5799;
  --blue-light: #3a7bd5;
  --orange: #e8741a;
  --orange-light: #f49542;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #888;
  --text: #333;
  --shadow: 0 4px 20px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,168,78,0.2);
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--navy);
  font-weight: 900;
}
.site-logo .logo-text {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.site-logo .logo-text span {
  color: var(--gold);
}
.site-logo .logo-sub {
  color: var(--gold-light);
  font-size: 0.7rem;
  display: block;
  letter-spacing: 0.1em;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-phone {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.header-phone i { margin-right: 6px; }
.header-hours {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,116,26,0.4);
  color: var(--white) !important;
}

/* Navigation */
.main-nav {
  background: rgba(0,0,0,0.2);
}
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
}
.main-nav li { position: relative; }
.main-nav a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(200,168,78,0.08);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2137 50%, var(--navy-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,168,78,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,87,153,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-content { flex: 1; }
.hero-content h1 {
  font-size: 2.6rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero-content h1 .accent { color: var(--gold); }
.hero-content .hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.8;
}
.hero-badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.hero-badge {
  background: rgba(200,168,78,0.15);
  border: 1px solid rgba(200,168,78,0.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy) !important;
}
.hero-simulator {
  flex: 0 0 380px;
}

/* ===== Fare Simulator ===== */
.fare-simulator {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  overflow: hidden;
}
.fare-simulator-header {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 18px 24px;
  text-align: center;
}
.fare-simulator-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.fare-simulator-header p {
  font-size: 0.75rem;
  opacity: 0.8;
}
.fare-simulator-body {
  padding: 24px;
}
.sim-field {
  margin-bottom: 16px;
}
.sim-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.sim-field label i {
  color: var(--orange);
  margin-right: 6px;
}
.sim-field input,
.sim-field select {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
}
.sim-field input:focus,
.sim-field select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30,87,153,0.1);
}
.sim-or-divider {
  text-align: center;
  color: var(--gray);
  font-size: 0.8rem;
  margin: 10px 0;
  position: relative;
}
.sim-or-divider::before,
.sim-or-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: #e0e0e0;
}
.sim-or-divider::before { left: 0; }
.sim-or-divider::after { right: 0; }
.btn-calc {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.btn-calc:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,22,40,0.3);
}
.sim-result {
  margin-top: 20px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  display: none;
}
.sim-result.show { display: block; }
.sim-result .result-label {
  color: var(--gold-light);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.sim-result .result-price {
  color: var(--gold);
  font-size: 2rem;
  font-weight: 900;
}
.sim-result .result-price small {
  font-size: 0.9rem;
  font-weight: 400;
}
.sim-result .result-distance {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  margin-top: 4px;
}
.sim-result .result-note {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  margin-top: 10px;
  line-height: 1.5;
}

/* ===== Section Common ===== */
.section {
  padding: 80px 0;
}
.section-alt {
  background: var(--off-white);
}
.section-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
}
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.section-dark .section-title h2 { color: var(--white); }
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
}
.section-title .section-sub {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

/* ===== Features Grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,168,78,0.3);
}
.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
}
.feature-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* ===== Price Table ===== */
.price-section { background: var(--off-white); }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.price-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.price-card:hover { transform: translateY(-5px); }
.price-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 24px;
  text-align: center;
}
.price-card-header.gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
}
.price-card-header.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}
.price-card-header h3 { font-size: 1.2rem; margin-bottom: 4px; }
.price-card-body { padding: 30px; }
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.price-item:last-child { border-bottom: none; }
.price-item .label { font-size: 0.9rem; color: #555; }
.price-item .value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

/* ===== Flow Section ===== */
.flow-timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.flow-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
}
.flow-step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}
.flow-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(200,168,78,0.3);
}
.flow-content {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  flex: 1;
}
.flow-content h4 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.flow-content p {
  font-size: 0.9rem;
  color: #666;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question .q-icon {
  background: var(--gold);
  color: var(--navy);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-right: 12px;
  flex-shrink: 0;
}
.faq-question .q-text { flex: 1; }
.faq-toggle {
  font-size: 1.2rem;
  color: var(--gold);
  transition: var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px 0 64px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #666;
  line-height: 1.8;
  font-size: 0.92rem;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 64px;
}

/* ===== Area Map ===== */
.area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.area-list h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.area-tag {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.area-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.area-map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
}
.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--gold);
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail .cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,168,78,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-detail .cd-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-detail .cd-text span {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--orange);
  font-size: 0.7rem;
  margin-left: 4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30,87,153,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== Company Info ===== */
.company-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid #eee; }
.company-table th {
  text-align: left;
  padding: 16px 20px;
  width: 180px;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--off-white);
  font-weight: 700;
  vertical-align: top;
}
.company-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #555;
}

/* ===== Blog ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); }
.blog-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
}
.blog-body { padding: 24px; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 10px;
}
.blog-body h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.5;
}
.blog-body p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ===== Recruitment ===== */
.recruit-hero {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 40px;
}
.recruit-hero h2 { font-size: 2rem; margin-bottom: 10px; }
.recruit-hero p { font-size: 1.1rem; opacity: 0.9; }
.recruit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.recruit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.recruit-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-about .footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-about .footer-logo span { color: var(--gold); }
.footer-about p { font-size: 0.88rem; line-height: 1.7; }
.footer-nav h4 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-nav li { margin-bottom: 8px; }
.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* ===== Page Header (sub pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 50px 0;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}
.page-header .breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.page-header .breadcrumb a { color: var(--gold-light); }

/* ===== Page Content ===== */
.page-content {
  padding: 60px 0;
}
.page-body {
  max-width: 900px;
  margin: 0 auto;
}
.page-body h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}
.page-body h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 30px 0 12px;
}
.page-body p {
  margin-bottom: 16px;
  line-height: 1.9;
  color: #555;
}
.page-body ul,
.page-body ol {
  margin: 0 0 16px 24px;
  list-style: disc;
}
.page-body li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.7;
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  padding: 50px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cta-banner p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
}
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--navy) !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== Sidebar ===== */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}
.sidebar-widget {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  overflow: hidden;
}
.sidebar-widget-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 16px 20px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}
.sidebar-widget-body { padding: 20px; }

/* ===== Privacy / Terms ===== */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 30px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}
.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  line-height: 1.9;
  color: #555;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-inner { flex-direction: column; text-align: center; }
  .hero-simulator { flex: none; width: 100%; max-width: 420px; }
  .hero-badges { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .area-content { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-with-sidebar { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-top { flex-direction: column; gap: 10px; text-align: center; }
  .header-contact { flex-direction: column; }
  .menu-toggle { display: block; }
  .main-nav ul {
    display: none;
    flex-direction: column;
  }
  .main-nav.open ul { display: flex; }
  .main-nav a { text-align: center; }
  .hero { padding: 50px 0; }
  .hero-content h1 { font-size: 1.8rem; }
  .features-grid,
  .price-cards,
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .recruit-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .flow-timeline::before { left: 20px; }
  .flow-num { width: 42px; height: 42px; font-size: 1rem; }
}


/* ===== Contact Form 7 Styles ===== */
.wpcf7 label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.wpcf7 .required {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    font-weight: 600;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,168,78,0.15);
    outline: none;
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: inherit;
}

.wpcf7 input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232,116,26,0.4);
}

.wpcf7 p {
    margin-bottom: 0;
}

.wpcf7-response-output {
    border: none !important;
    background: rgba(200,168,78,0.1);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
    font-weight: 500;
    margin: 20px 0 0 !important;
}