/* ==========================================================
   Kongu Chicken Centre — Premium Stylesheet
   Design: Warm parchment + deep maroon + bronze accents
   Type pairing: Playfair Display (serif display) + Outfit (body)
   ========================================================== */

:root {
  /* Brand */
  --maroon-deep: #5a0f1a;
  --maroon: #7a1828;
  --maroon-light: #9b2235;
  --bronze: #b8893d;
  --bronze-soft: #d4a85e;
  --gold: #e8c876;

  /* Surfaces */
  --cream: #faf5ec;
  --parchment: #f3ead7;
  --warm-white: #fdfaf3;
  --ink: #2b1810;
  --ink-soft: #5a4030;
  --muted: #8a7560;

  /* System */
  --shadow-sm: 0 2px 8px rgba(90, 15, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(90, 15, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(90, 15, 26, 0.18);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  /* Subtle paper texture using SVG noise */
  background-image:
    radial-gradient(at 20% 0%, rgba(184, 137, 61, 0.06) 0, transparent 40%),
    radial-gradient(at 80% 100%, rgba(122, 24, 40, 0.05) 0, transparent 40%);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--maroon); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--maroon-light); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: 1.15; color: var(--maroon-deep); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p { color: var(--ink-soft); }

/* ===== Urgency Strip ===== */
.urgency-strip {
  background: linear-gradient(90deg, var(--maroon-deep), var(--maroon), var(--maroon-deep));
  color: var(--gold);
  font-size: 13.5px;
  padding: 9px 0;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.urgency-strip .container { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.urgency-strip a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.urgency-strip .sep { opacity: .5; }
.pulse-dot {
  width: 10px; height: 10px; background: #ff5a4f; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,90,79,.7); animation: pulse 1.6s infinite;
  display: inline-block;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,90,79,.7); }
  70% { box-shadow: 0 0 0 12px rgba(255,90,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,79,0); }
}

/* ===== Glassmorphism Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(253, 250, 243, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(184, 137, 61, 0.18);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(90,15,26,.08); background: rgba(253,250,243,.92); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 24px; }

.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bronze-soft); box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--maroon-deep); }
.brand-tag { font-size: 11.5px; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav a {
  color: var(--ink); font-weight: 500; font-size: 15px;
  padding: 8px 14px; border-radius: 8px; display: inline-block;
  transition: all .2s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--maroon-deep); background: rgba(184, 137, 61, 0.12);
}
.main-nav a.active { font-weight: 600; }
.has-sub .caret { font-size: 10px; opacity: .7; }
.sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: rgba(253, 250, 243, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(184, 137, 61, 0.25);
  border-radius: var(--radius);
  padding: 8px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .25s ease;
}
.has-sub:hover .sub-menu, .has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(4px); }
.sub-menu li { display: block; }
.sub-menu a { display: block; width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 18px rgba(90,15,26,.25);
  letter-spacing: 0.01em;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(90,15,26,.35); background: linear-gradient(135deg, var(--maroon-light), var(--maroon)) !important; color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--maroon-deep); border-radius: 2px; transition: all .3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px; font-weight: 600; font-size: 15px;
  font-family: var(--font-body); letter-spacing: 0.01em;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  cursor: pointer; text-decoration: none; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: #fff;
  box-shadow: 0 8px 24px rgba(90,15,26,.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(90,15,26,.4); color: #fff; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.28);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(37,211,102,.4); color: #fff; }
.btn-outline {
  background: transparent; color: var(--maroon-deep);
  border-color: var(--maroon-deep);
}
.btn-outline:hover { background: var(--maroon-deep); color: #fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--bronze-soft), var(--bronze));
  color: var(--maroon-deep); font-weight: 700;
  box-shadow: 0 8px 24px rgba(184,137,61,.3);
}
.btn-gold:hover { transform: translateY(-2px); }

.btn-lg { padding: 18px 36px; font-size: 16.5px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(184,137,61,.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(122,24,40,.12), transparent 50%),
    linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(184,137,61,.04) 0 2px, transparent 2px 18px);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 60px; align-items: center; position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,137,61,.14); color: var(--maroon-deep);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 24px;
  border: 1px solid rgba(184,137,61,.3);
  animation: fadeUp .8s ease both;
}
.hero-eyebrow .dot { width: 8px; height: 8px; background: var(--maroon); border-radius: 50%; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 24px;
  animation: fadeUp .8s .1s ease both;
}
.hero h1 .accent { color: var(--maroon); font-style: italic; font-weight: 700; position: relative; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 6px; background: var(--gold); opacity: .6; border-radius: 4px;
  z-index: -1;
}
.hero-lede {
  font-size: 1.15rem; color: var(--ink-soft); max-width: 540px;
  margin-bottom: 36px; animation: fadeUp .8s .2s ease both;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .8s .3s ease both; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
  padding-top: 32px; border-top: 1px solid rgba(184,137,61,.25);
  animation: fadeUp .8s .4s ease both;
}
.hero-stats .stat { }
.hero-stats .num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--maroon-deep); line-height: 1; }
.hero-stats .lbl { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px; font-weight: 500; }

.hero-visual {
  position: relative;
  animation: fadeUp 1s .2s ease both;
}
.hero-card {
  position: relative;
  background: linear-gradient(135deg, var(--warm-white), var(--parchment));
  border-radius: 32px;
  padding: 32px;
  box-shadow:
    0 30px 80px rgba(90,15,26,.18),
    inset 0 1px 0 rgba(255,255,255,.5);
  border: 1px solid rgba(184,137,61,.25);
  transform: rotate(-1.5deg);
}
.hero-card-inner {
  background: var(--maroon-deep);
  border-radius: 22px;
  padding: 28px 24px;
  color: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-card-inner::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(232,200,118,.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(232,200,118,.1), transparent 40%);
  pointer-events: none;
}
.hero-card-inner .ornament { font-size: 24px; color: var(--bronze-soft); }
.hero-card-inner h3 {
  color: var(--gold); font-family: var(--font-display); font-style: italic;
  font-weight: 700; font-size: 1.5rem; margin: 8px 0 4px;
}
.hero-card-inner .sub { color: rgba(232,200,118,.7); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.hero-products {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding-top: 16px; border-top: 1px dashed rgba(232,200,118,.3);
}
.hp-item { color: var(--gold); font-size: 13px; font-weight: 500; }
.hp-item .ic { display: block; font-size: 28px; margin-bottom: 6px; }
.hero-badge {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); color: var(--maroon-deep);
  width: 110px; height: 110px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; font-family: var(--font-display); font-style: italic;
  font-weight: 700; font-size: 14px; line-height: 1.1;
  box-shadow: 0 12px 30px rgba(184,137,61,.4);
  border: 4px solid var(--warm-white);
  transform: rotate(12deg);
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: rotate(12deg) translateY(0); } 50% { transform: rotate(12deg) translateY(-8px); } }

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

/* ===== Section Base ===== */
.section { padding: 90px 0; position: relative; }
.section-alt { background: var(--warm-white); }
.section-dark { background: linear-gradient(135deg, var(--maroon-deep), #3a0810); color: var(--gold); }
.section-dark h2 { color: var(--gold); }
.section-dark p { color: rgba(232,200,118,.8); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block; color: var(--bronze); font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px;
  margin-bottom: 14px;
}
.section-head .eyebrow::before, .section-head .eyebrow::after {
  content: '—'; margin: 0 10px; opacity: .5;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; }

/* ===== Why Choose Us ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--warm-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184,137,61,.18);
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--bronze), var(--gold), var(--bronze));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--bronze-soft); }
.why-card:hover::before { transform: scaleX(1); }
.why-card .icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(90,15,26,.2);
}
.why-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.why-card p { font-size: 14.5px; }

/* ===== Products We Supply ===== */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.product-card {
  background: linear-gradient(180deg, var(--warm-white), var(--parchment));
  border: 1px solid rgba(184,137,61,.25);
  border-radius: var(--radius-lg); padding: 28px 22px;
  text-align: center; transition: all .3s ease;
  position: relative; overflow: hidden;
}
.product-card::after {
  content: ''; position: absolute; bottom: 0; left: 50%; width: 0;
  height: 4px; background: var(--maroon); border-radius: 2px;
  transform: translateX(-50%); transition: width .35s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card:hover::after { width: 60%; }
.product-card .pic {
  width: 90px; height: 90px; margin: 0 auto 16px;
  border-radius: 50%; background: var(--maroon-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; color: var(--gold);
  box-shadow: inset 0 -4px 0 rgba(0,0,0,.2), 0 10px 24px rgba(90,15,26,.2);
}
.product-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.product-card .tamil { font-family: var(--font-display); font-style: italic; color: var(--bronze); font-size: 1.05rem; margin-bottom: 12px; }
.product-card .desc { font-size: 14px; color: var(--ink-soft); }
.product-card .badge {
  display: inline-block; background: rgba(122,24,40,.08); color: var(--maroon);
  font-size: 11.5px; font-weight: 600; padding: 4px 10px;
  border-radius: 999px; margin-top: 12px; letter-spacing: 0.04em;
}

/* ===== Service Areas ===== */
.areas-section { background: linear-gradient(135deg, var(--parchment), var(--cream)); }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.area-card {
  background: rgba(253,250,243,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184,137,61,.3);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: block; transition: all .3s ease;
  position: relative;
}
.area-card .pin {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--bronze-soft), var(--bronze));
  display: flex; align-items: center; justify-content: center;
  color: var(--maroon-deep); margin-bottom: 14px;
}
.area-card h3 { font-size: 1.4rem; margin-bottom: 4px; color: var(--maroon-deep); }
.area-card p { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; line-height: 1.5; }
.area-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--maroon); font-weight: 600; font-size: 14px;
}
.area-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--bronze); }
.area-card:hover .arrow { gap: 12px; }

/* ===== Testimonials ===== */
.testimonials { background: var(--warm-white); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}
.testimonial {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 36px 30px; position: relative;
  border: 1px solid rgba(184,137,61,.15);
}
.testimonial::before {
  content: '"'; position: absolute; top: -10px; left: 24px;
  font-family: var(--font-display); font-size: 100px; color: var(--bronze-soft);
  line-height: 1; opacity: .5;
}
.testimonial .stars { color: var(--gold); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.testimonial .quote { font-size: 15.5px; color: var(--ink); margin-bottom: 22px; line-height: 1.7; font-style: italic; font-family: var(--font-display); font-weight: 500; }
.testimonial .author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid rgba(184,137,61,.2); }
.testimonial .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
}
.testimonial .name { font-weight: 600; color: var(--maroon-deep); font-size: 15px; }
.testimonial .role { font-size: 13px; color: var(--muted); }

/* ===== CTA Banner ===== */
.cta-banner {
  padding: 70px 0;
  background:
    radial-gradient(ellipse at top, rgba(232,200,118,.15), transparent 60%),
    linear-gradient(135deg, var(--maroon-deep), #3a0810);
  color: var(--gold);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(232,200,118,.04) 0 1px, transparent 1px 30px);
  pointer-events: none;
}
.cta-banner h2 { color: var(--gold); margin-bottom: 14px; }
.cta-banner p { color: rgba(232,200,118,.85); max-width: 620px; margin: 0 auto 28px; font-size: 1.1rem; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--warm-white);
  border: 1px solid rgba(184,137,61,.2);
  border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden;
  transition: all .3s ease;
}
.faq-item.open { border-color: var(--bronze); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; padding: 22px 26px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--maroon-deep); cursor: pointer;
}
.faq-q .plus {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--maroon-deep); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 20px; font-weight: 400;
  transition: transform .3s ease;
}
.faq-item.open .plus { transform: rotate(45deg); background: var(--maroon); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 22px; }
.faq-a p { color: var(--ink-soft); }

/* ===== Forms ===== */
.form-card {
  background: var(--warm-white);
  border: 1px solid rgba(184,137,61,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: 13.5px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px; letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid rgba(184,137,61,.3); background: var(--warm-white);
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  transition: all .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(122,24,40,.1);
}
.field textarea { resize: vertical; min-height: 80px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.actions .btn { flex: 1; min-width: 160px; }

/* ===== Floating Order Form ===== */
.float-order-btn {
  position: fixed; bottom: 88px; right: 22px;
  background: linear-gradient(135deg, var(--bronze), var(--maroon));
  color: var(--gold);
  padding: 12px 18px; border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 12px 30px rgba(90,15,26,.35);
  z-index: 80; transition: all .3s ease;
  border: 2px solid var(--gold);
}
.float-order-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 16px 36px rgba(90,15,26,.45); }

.float-order-panel {
  position: fixed; top: 0; right: -460px; height: 100vh; width: 420px; max-width: 100%;
  background: var(--warm-white);
  z-index: 200; box-shadow: -20px 0 60px rgba(90,15,26,.25);
  padding: 28px; overflow-y: auto;
  transition: right .35s cubic-bezier(.2,.8,.2,1);
  border-left: 4px solid var(--maroon-deep);
}
.float-order-panel.open { right: 0; }
.fop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.fop-header h3 { font-size: 1.5rem; color: var(--maroon-deep); }
.fop-close { font-size: 32px; color: var(--maroon); width: 36px; height: 36px; line-height: 1; }
.fop-sub { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 22px; padding-bottom: 16px; border-bottom: 1px dashed rgba(184,137,61,.3); }

.fop-overlay {
  position: fixed; inset: 0; background: rgba(43,24,16,.5);
  backdrop-filter: blur(4px); z-index: 150; opacity: 0; visibility: hidden;
  transition: all .3s ease;
}
.fop-overlay.open { opacity: 1; visibility: visible; }

/* ===== Sticky CTA ===== */
.sticky-cta { position: fixed; bottom: 22px; right: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 80; }
.scta {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: all .25s ease;
}
.scta-call { background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); }
.scta-wa { background: linear-gradient(135deg, #25d366, #128c7e); animation: ring 2.5s infinite; }
.scta:hover { transform: translateY(-3px) scale(1.06); }
@keyframes ring {
  0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
  50% { box-shadow: 0 10px 30px rgba(0,0,0,.25), 0 0 0 14px rgba(37,211,102,0); }
}

/* ===== Toast ===== */
.toast {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-100px);
  background: var(--maroon-deep); color: var(--gold);
  padding: 14px 24px; border-radius: 999px; font-weight: 500; font-size: 14.5px;
  box-shadow: 0 16px 40px rgba(90,15,26,.4);
  z-index: 300; transition: transform .35s ease;
  border: 1px solid rgba(232,200,118,.3);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { background: #1f6f3f; color: #fff; }
.toast.error { background: #8b1a1a; color: #fff; }

/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(135deg, #2a0608, var(--maroon-deep));
  color: rgba(232,200,118,.85);
  padding: 80px 0 0;
  position: relative;
}
.footer-decoration {
  height: 8px;
  background:
    repeating-linear-gradient(90deg,
      var(--maroon) 0 14px,
      var(--bronze) 14px 28px,
      var(--gold) 28px 42px,
      var(--bronze) 42px 56px);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
  gap: 48px; padding: 60px 24px 50px;
}
.f-col h3 { color: var(--gold); font-size: 1.4rem; margin-bottom: 14px; }
.f-col h4 { color: var(--gold); font-size: 1.05rem; margin-bottom: 18px; letter-spacing: 0.04em; }
.f-col p { color: rgba(232,200,118,.7); font-size: 14.5px; line-height: 1.7; }
.f-col ul li { margin-bottom: 10px; }
.f-col ul a { color: rgba(232,200,118,.75); font-size: 14.5px; }
.f-col ul a:hover { color: var(--gold); padding-left: 4px; }
.f-brand img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 16px; border: 2px solid var(--bronze-soft); }
.f-contact { margin-bottom: 16px; font-size: 14px; }
.f-contact strong { color: var(--gold); display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; font-weight: 600; }
.f-contact a { color: rgba(232,200,118,.85); }
.f-contact a:hover { color: var(--gold); }
.f-social { display: flex; gap: 10px; margin-top: 18px; }
.f-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(232,200,118,.1); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease; border: 1px solid rgba(232,200,118,.2);
}
.f-social a:hover { background: var(--gold); color: var(--maroon-deep); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(232,200,118,.15);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { color: rgba(232,200,118,.55); font-size: 13.5px; margin: 0; }
.footer-bottom .sep { margin: 0 8px; opacity: .5; }

/* ===== City Landing Pages ===== */
.city-hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(184,137,61,.2), transparent 50%),
    linear-gradient(135deg, var(--cream), var(--parchment));
  position: relative;
}
.breadcrumbs {
  font-size: 13.5px; color: var(--muted);
  margin-bottom: 18px;
}
.breadcrumbs a { color: var(--maroon); }
.breadcrumbs .sep { margin: 0 8px; opacity: .5; }

.two-col {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start;
}
.feature-list { list-style: none; padding: 0; margin: 22px 0; }
.feature-list li {
  padding: 12px 0 12px 36px; position: relative;
  border-bottom: 1px dashed rgba(184,137,61,.25);
  color: var(--ink); font-size: 15px;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓'; position: absolute; left: 0; top: 12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--maroon-deep); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}

/* ===== Service Page Cards ===== */
.service-detail {
  background: var(--warm-white);
  border: 1px solid rgba(184,137,61,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 28px;
  display: grid; grid-template-columns: 100px 1fr; gap: 28px;
  align-items: start;
  transition: all .3s ease;
}
.service-detail:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--bronze-soft); }
.service-detail .ic-big {
  width: 90px; height: 90px; border-radius: 24px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 42px; box-shadow: 0 10px 28px rgba(90,15,26,.25);
}
.service-detail h3 { color: var(--maroon-deep); margin-bottom: 8px; }

/* ===== Map ===== */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184,137,61,.3);
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: 0; }

/* ===== Page Hero (smaller) ===== */
.page-hero {
  padding: 70px 0 60px;
  background: linear-gradient(135deg, var(--maroon-deep), #3a0810);
  color: var(--gold); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,200,118,.1), transparent 60%);
}
.page-hero h1 { color: var(--gold); position: relative; }
.page-hero p { color: rgba(232,200,118,.85); max-width: 640px; margin: 14px auto 0; position: relative; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 440px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 80px; right: -100%; height: calc(100vh - 80px);
    width: 86%; max-width: 360px;
    background: var(--warm-white);
    flex-direction: column; align-items: flex-start;
    padding: 24px; gap: 0; box-shadow: -16px 0 50px rgba(90,15,26,.2);
    transition: right .35s ease; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; gap: 4px; }
  .main-nav a { padding: 12px 14px; width: 100%; }
  .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 16px; background: transparent; border: none; backdrop-filter: none; }
  .has-sub:hover .sub-menu { transform: none; }
  .nav-cta { width: 100%; text-align: center; margin-top: 16px; }

  .hero { padding: 50px 0 70px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 36px; }
  .hero-stats .num { font-size: 1.6rem; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 50px 24px 40px; }
  .float-order-panel { width: 100%; padding: 22px; }
  .float-order-btn { padding: 10px 14px; font-size: 13px; bottom: 88px; right: 16px; }
  .sticky-cta { right: 16px; bottom: 16px; }
  .row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .service-detail { grid-template-columns: 1fr; padding: 26px; }
  .service-detail .ic-big { width: 64px; height: 64px; font-size: 30px; border-radius: 16px; }
  .urgency-strip { font-size: 12px; }
  .urgency-strip .container { gap: 6px; }
  .urgency-strip .sep { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}
