/* ============================================
   FLORA - 生花・植物専門輸送
   Color: Rose #D4697A, Sage #7C9A7E, White #FFFFFF
   ============================================ */

:root {
  --rose: #D4697A;
  --rose-light: #F2D1D8;
  --rose-dark: #B8506A;
  --sage: #7C9A7E;
  --sage-light: #C8D9C9;
  --sage-dark: #5F7A61;
  --white: #FFFFFF;
  --off-white: #FBF9F8;
  --cream: #F7F3F0;
  --text: #2D2A27;
  --text-light: #6B6560;
  --text-muted: #9B9590;
  --border: #E8E2DD;
  --shadow: 0 4px 24px rgba(45, 42, 39, 0.08);
  --shadow-lg: 0 12px 48px rgba(45, 42, 39, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  --font-en: 'DM Sans', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
table { width: 100%; border-collapse: collapse; }
input, textarea, select { font-family: var(--font-jp); }

/* Container */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* Sample Banner */
.sample-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sample-banner a { color: var(--white); text-decoration: underline; }

/* Header */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 226, 221, 0.5);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(45, 42, 39, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-en {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.08em;
}
.logo-jp {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
}

/* Nav */
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
  transition: width 0.3s;
}
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--rose-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.1);
  padding-top: 120px;
}
.mobile-nav.active { right: 0; }
.mobile-nav-inner { padding: 0 32px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--rose); }
.mobile-nav-cta {
  margin-top: 16px;
  background: var(--rose);
  color: var(--white) !important;
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  border-bottom: none;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 42, 39, 0.4);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.overlay.active { opacity: 1; visibility: visible; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 105, 122, 0.3); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn-outline:hover { background: var(--white); color: var(--rose); }
.btn-full { width: 100%; }

/* Section Header */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.section-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc { margin: 0 auto; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,42,39,0.65) 0%, rgba(45,42,39,0.35) 50%, rgba(124,154,126,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
}
.hero-sub {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  color: var(--rose-light);
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-en);
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--rose-light);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* About */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { text-align: center; }
.about-icon-wrap {
  width: 240px;
  height: 240px;
  margin: 0 auto 40px;
}
.about-abstract { width: 100%; height: 100%; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-stat { text-align: center; }
.about-stat-num {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
}
.about-stat-unit {
  font-size: 16px;
  color: var(--rose);
  font-weight: 500;
}
.about-stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.about-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 16px;
}
.about-desc:last-child { margin-bottom: 0; }

/* Temperature */
.temperature { background: var(--white); }
.temp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.temp-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid transparent;
}
.temp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--rose-light);
}
.temp-icon { margin-bottom: 20px; }
.temp-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.temp-range {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 12px;
}
.temp-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Services */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}
.service-icon { margin-bottom: 20px; }
.service-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
  border: 2px solid var(--sage);
}

/* Fleet */
.fleet { background: var(--white); }
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fleet-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fleet-img-wrap {
  height: 220px;
  overflow: hidden;
}
.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.fleet-card:hover .fleet-img { transform: scale(1.05); }
.fleet-info { padding: 28px; }
.fleet-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--sage-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.fleet-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.fleet-spec {
  font-size: 13px;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 10px;
}
.fleet-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Works */
.works { background: var(--off-white); }
.works-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.work-card:hover { box-shadow: var(--shadow-lg); }
.work-card:nth-child(even) { direction: rtl; }
.work-card:nth-child(even) > * { direction: ltr; }
.work-img-wrap { height: 100%; min-height: 280px; overflow: hidden; }
.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.work-card:hover .work-img { transform: scale(1.03); }
.work-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-dark);
  background: var(--sage-light);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}
.work-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.work-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}
.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.work-tags span {
  font-size: 12px;
  color: var(--rose);
  background: var(--rose-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

/* Flow */
.flow { background: var(--white); }
.flow-steps {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose-light), var(--sage-light));
}
.flow-step {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}
.flow-num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--rose);
  z-index: 1;
}
.flow-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 4px;
}
.flow-step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.9;
}

/* Company */
.company { background: var(--off-white); }
.company-table {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.company-table th,
.company-table td {
  padding: 18px 28px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: none; }
.company-table th {
  background: var(--cream);
  font-weight: 600;
  width: 160px;
  white-space: nowrap;
  color: var(--text);
}
.company-table td {
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact */
.contact {
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-phone {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.contact-phone-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-phone-num {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.03em;
}
.contact-phone-hours {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.required {
  font-size: 11px;
  color: var(--rose);
  font-weight: 500;
  margin-left: 4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 105, 122, 0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Footer */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-name {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-addr {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-nav h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-nav a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--rose-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--rose-light); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--rose); }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SP only */
.sp-only { display: none; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .temp-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .services-grid { gap: 20px; }
  .service-card { padding: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section-title { font-size: 26px; }
  .section-header { margin-bottom: 40px; }

  /* Header */
  .nav { display: none; }
  .hamburger { display: flex; }
  .header { top: 36px; }
  .header-inner { height: 60px; }

  /* Hero */
  .hero { min-height: 100vh; }
  .hero-title { font-size: 34px; }
  .hero-desc { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .sp-only { display: inline; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-icon-wrap { width: 180px; height: 180px; }
  .about-stat-num { font-size: 32px; }

  /* Temperature */
  .temp-grid { grid-template-columns: 1fr; }
  .temp-card { padding: 28px 24px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px; }

  /* Fleet */
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-img-wrap { height: 200px; }

  /* Works */
  .work-card { grid-template-columns: 1fr; }
  .work-card:nth-child(even) { direction: ltr; }
  .work-img-wrap { min-height: 200px; }
  .work-content { padding: 28px; }

  /* Flow */
  .flow-steps::before { left: 28px; }
  .flow-step { gap: 20px; }
  .flow-num { width: 56px; height: 56px; font-size: 16px; }

  /* Company */
  .company-table th { width: 120px; padding: 14px 16px; font-size: 13px; }
  .company-table td { padding: 14px 16px; font-size: 13px; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 28px; }
  .hero-content { padding-top: 120px; }
  .section-title { font-size: 22px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about-stat-num { font-size: 28px; }
  .about-icon-wrap { width: 150px; height: 150px; }
  .contact-phone-num { font-size: 22px; }
  .contact-phone { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { grid-template-columns: 1fr; }
  .flow-step { gap: 16px; }
  .flow-num { width: 48px; height: 48px; font-size: 14px; }
  .flow-steps::before { left: 24px; }
  .work-tags { gap: 6px; }
  .work-tags span { font-size: 11px; padding: 3px 10px; }
  .fleet-info { padding: 20px; }
  .fleet-name { font-size: 16px; }
  .service-title { font-size: 18px; }
  .service-card { padding: 24px; }
  .temp-card { padding: 24px 20px; }
  .temp-title { font-size: 15px; }
}

/* ============================================
   Additional Flourishes & Micro-interactions
   ============================================ */

/* Petal floating animation for hero */
@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-20px) rotate(15deg); opacity: 1; }
}

/* Nav link active state */
.nav-link.active { color: var(--rose); }
.nav-link.active::after { width: 100%; }

/* Form input placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  font-size: 13px;
}

/* Select dropdown styling */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239B9590' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

/* Smooth border radius on cards */
.temp-card,
.service-card,
.fleet-card,
.work-card {
  will-change: transform;
}

/* Hero button group alignment */
.hero-btns .btn {
  min-width: 180px;
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--rose-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

/* Selection color */
::selection {
  background: var(--rose-light);
  color: var(--text);
}

/* Print styles */
@media print {
  .sample-banner,
  .header,
  .mobile-nav,
  .hero-scroll,
  .contact-form { display: none; }
  .section { padding: 40px 0; }
  .hero { min-height: auto; padding: 60px 0; }
}