:root {
  --pink: #fde4e6;
  --pink-soft: #fff1f3;
  --dark: #7a1f3d;
  --button: #e7a2ad;
  --shadow: 0 18px 40px rgba(0,0,0,0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  color: #333;
  background: linear-gradient(180deg, var(--pink), #ffffff);
}

/* =========================
   HEADER – BRAND FIRST
   ========================= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 40px 20px 26px;
  background: var(--pink-soft);
  border-bottom: 1px solid rgba(122,31,61,0.08);
}

/* LOGO – BIG + VISUAL WEIGHT */
.logo {
  height: 260px;          /* 🔥 BIG */
  width: auto;
  display: block;

  /* Compensate for PNG transparent padding */
  transform: scale(1.15);
  transform-origin: center;
}

/* NAV BELOW LOGO */
nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}

nav a:hover {
  background: rgba(122,31,61,0.08);
  transform: translateY(-1px);
}

/* DRIVER CTA */
nav a:last-child {
  background: rgba(231,162,173,0.45);
  border: 1px solid rgba(231,162,173,0.65);
}

/* =========================
   HERO
   ========================= */
.hero {
  text-align: center;
  padding: 100px 20px 90px;
}

.hero h1 {
  font-size: 54px;
  color: var(--dark);
  margin: 0 0 16px;
  line-height: 1.05;
}

.hero p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* STORE BUTTONS */
.store-buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}

.store-buttons img {
  height: 54px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-buttons img:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 40px rgba(0,0,0,0.18);
}

/* =========================
   SECTIONS
   ========================= */
.section {
  padding: 90px 20px;
  text-align: center;
}

.section h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 36px;
  border-radius: 36px;
  width: 270px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

/* =========================
   FORMS
   ========================= */
input {
  padding: 16px 20px;
  width: min(360px, 92vw);
  margin: 10px;
  border-radius: 26px;
  border: 1px solid rgba(0,0,0,0.18);
  font-size: 15px;
}

button {
  background: var(--button);
  color: white;
  padding: 16px 38px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--dark);
  color: white;
  padding: 26px;
  text-align: center;
}

/* =========================
   ANIMATIONS
   ========================= */
.fade-in {
  animation: fadeIn 1.1s ease forwards;
}

.slide-up {
  animation: slideUp 1.1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 600px) {
  .logo {
    height: 200px;
    transform: scale(1.08);
  }

  .hero h1 {
    font-size: 38px;
  }

  nav {
    gap: 14px;
  }
}
.card {
  line-height: 1.4;
}
/* Embedded Google Form */
.form-embed{
  max-width: 980px;
  margin: 32px auto 0;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.form-embed iframe{
  display: block;
  border: 0;
}
/* =========================
   DRIVER FORM – CLEAN POLISH
   ========================= */

/* Outer card polish */
.form-embed{
  padding: 14px;
  background: rgba(255,255,255,0.9);
  border-radius: 32px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Smooth the iframe edges */
.form-embed iframe{
  border-radius: 24px;
}

/* Reduce visual heaviness on small screens */
@media (max-width: 600px){
  .form-embed{
    padding: 8px;
    border-radius: 22px;
  }

  .form-embed iframe{
    border-radius: 18px;
  }
}
/* =========================
   FAQ (Driver Page)
   ========================= */
.faq{
  max-width: 980px;
  margin: 34px auto 0;
  text-align: left;
  background: rgba(255,255,255,0.78);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.faq h3{
  margin: 0 0 14px;
  color: var(--dark);
  font-size: 22px;
}

.faq details{
  border-top: 1px solid rgba(122,31,61,0.12);
  padding: 14px 0;
}

.faq details:first-of-type{
  border-top: none;
}

.faq summary{
  cursor: pointer;
  font-weight: 800;
  color: #333;
  list-style: none;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary::after{
  content: "＋";
  float: right;
  color: var(--dark);
  font-weight: 900;
}

.faq details[open] summary::after{
  content: "—";
}

.faq p{
  margin: 10px 0 0;
  line-height: 1.6;
  color: #444;
}
/* =========================
   HOW PETALS IS DIFFERENT
   ========================= */
.compare{
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-col{
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: left;
}

.compare-col h3{
  margin: 0 0 12px;
  color: var(--dark);
  font-size: 20px;
}

.compare-col ul{
  margin: 0;
  padding-left: 18px;
  line-height: 1.7;
}

/* =========================
   EARLY SUPPORTER QUOTES
   ========================= */
.quotes{
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quote-card{
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: left;
}

.quote-text{
  margin: 0;
  font-weight: 800;
  line-height: 1.5;
}

.quote-meta{
  margin: 10px 0 0;
  color: #555;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px){
  .compare{
    grid-template-columns: 1fr;
  }

  .quotes{
    grid-template-columns: 1fr;
  }
}
/* =========================
   COMMITMENT TO SAFETY
   ========================= */
.commitment-grid{
  max-width: 980px;
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.commit-card{
  background: rgba(255,255,255,0.85);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: left;
}

.commit-card h3{
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 20px;
}

.commit-card p{
  margin: 0;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 900px){
  .commitment-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   SAFETY PROMISE BADGE
   ========================= */
.safety-badge{
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.safety-badge span{
  background: rgba(255,255,255,0.85);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow);
}
/* =========================
   404 PAGE (PETALS THEME)
   ========================= */
.notfound-body{
  min-height: 100vh;
  background: var(--bg);
}

.notfound{
  padding: 40px 18px 70px;
}

.notfound-card{
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  border-radius: 34px;
  padding: 34px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}

.notfound-card h1{
  margin: 12px 0 10px;
  color: var(--dark);
}

.notfound-card p{
  margin: 0 auto;
  max-width: 560px;
  color: #444;
  line-height: 1.7;
}

.notfound-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-primary{
  display: inline-block;
  background: var(--button);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.btn-ghost{
  display: inline-block;
  background: rgba(255,255,255,0.7);
  color: var(--dark);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.08);
}

.notfound-small{
  margin-top: 18px;
  font-size: 14px;
  color: #666;
}

/* Rotating Petals flower */
.flower-spinner{
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  animation: petalsSpin 8s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flower-img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.15));
}

@keyframes petalsSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .flower-spinner{
    animation: none;
  }
}
/* =========================
   COOKIE BANNER
   ========================= */
.cookie-banner{
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 960px;
  width: calc(100% - 32px);
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 9999;
}

.cookie-banner p{
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.cookie-actions{
  display: flex;
  gap: 10px;
}
/* =========================
   BACK TO TOP LINK
   ========================= */
.back-to-top{
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--dark);
}

.back-to-top:hover{
  text-decoration: underline;
}
/* =========================
   ACCESSIBILITY: FOCUS STATES
   ========================= */
a:focus-visible,
button:focus-visible{
  outline: 3px solid rgba(153, 63, 84, 0.6);
  outline-offset: 3px;
  border-radius: 6px;
}


