/* ==========================================================================
   Aarudhra Caterings: Design tokens
   ========================================================================== */
:root {
  --navy: #0E1B2B;
  --navy-2: #16283F;
  --green: #63AD59;
  --green-dark: #4C8B44;
  --green-tint: #F1F7EF;
  --orange: #E07B30;
  --orange-dark: #C2621F;
  --ink: #1B2420;
  --ink-soft: #5B655F;
  --cream: #FDFBF7;
  --line: #E7E4DC;
  --white: #FFFFFF;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px rgba(14, 27, 43, 0.10);
  --font-display: 'Poppins', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; color: var(--navy); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--orange); }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius-pill); font-weight: 600;
  font-size: 0.98rem; border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; }

.btn-primary { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; box-shadow: 0 10px 24px rgba(224,123,48,.35); }
.btn-primary:hover { box-shadow: 0 14px 30px rgba(224,123,48,.45); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-light { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.topbar { background: var(--navy); color: #cfd8e3; font-size: 0.85rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; gap: 12px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-link { display: inline-flex; align-items: center; gap: 6px; color: #cfd8e3; }
.topbar-link:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-social-label { color: #7f8ea3; font-size: 0.78rem; }
.topbar-icon { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.08); color: #cfd8e3; }
.topbar-icon:hover { background: var(--green); color: #fff; }
@media (max-width: 640px) { .topbar-email { display: none; } }

.icon-sm { width: 16px; height: 16px; fill: currentColor; }
.icon-md { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; color: var(--green); }
.icon-check { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ==========================================================================
   Sticky header
   ========================================================================== */
.site-header { position: sticky; top: 0; z-index: 500; background: #fff; box-shadow: 0 2px 16px rgba(14,27,43,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 24px; gap: 16px; }
.brand-logo { height: 56px; width: auto; }

.main-nav ul { display: flex; gap: 28px; align-items: center; }
.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.main-nav a:hover { color: var(--green-dark); }
.mobile-cta { display: none; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call span { display: inline; }

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; border: none; background: transparent; cursor: pointer; padding: 0;
}
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay { position: fixed; inset: 0; background: rgba(14,27,43,.4); z-index: 400; opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.nav-overlay.active { opacity: 1; pointer-events: auto; }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; top: 0; right: -320px; bottom: 0; width: min(320px, 85vw);
    background: #fff; z-index: 450; padding: 90px 26px 26px; overflow-y: auto;
    box-shadow: -10px 0 30px rgba(0,0,0,.12); transition: right .25s ease;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav ul li { width: 100%; }
  .main-nav ul li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .mobile-cta { display: flex; margin-top: 24px; }
  .header-call span { display: none; }
  .menu-toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; background-color: var(--navy); background-size: cover; background-position: center;
  padding: 72px 0 88px;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(14,27,43,.96) 30%, rgba(14,27,43,.86) 100%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: center; }

.hero-media { display: flex; justify-content: center; }
.founder-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg);
  padding: 22px; text-align: center; width: 260px; backdrop-filter: blur(6px);
}
.founder-photo { width: 190px; height: 190px; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; border: 4px solid var(--orange); background: var(--navy-2); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-fallback { position: relative; }
.founder-fallback::after {
  content: attr(data-initials); position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 2.4rem; color: #fff; background: var(--green-dark);
}
.founder-name { color: #fff; font-weight: 700; margin: 0; font-size: 1.05rem; }
.founder-role { color: #b9c3d1; margin: 4px 0 0; font-size: 0.85rem; }

.eyebrow-tag { color: var(--orange); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; }
.hero-copy h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); max-width: 14ch; margin-bottom: 20px; }
.hero-desc { color: #c9d2df; max-width: 56ch; font-size: 1.02rem; }

.hero-stats { display: flex; gap: 32px; margin: 28px 0 32px; flex-wrap: wrap; }
.hero-stats strong { display: block; font-family: var(--font-display); font-size: 1.6rem; color: #fff; }
.hero-stats span { color: #9fabbd; font-size: 0.85rem; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-media { order: -1; }
  .hero-stats { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-desc { margin-inline: auto; }
}

/* ==========================================================================
   Section basics
   ========================================================================== */
.section { padding: 88px 0; }
.section-tint { background: var(--green-tint); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-kicker { color: var(--green-dark); font-family: var(--font-display); font-weight: 600; letter-spacing: .02em; margin-bottom: 8px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section-sub { max-width: 52ch; margin: 0 auto; }

/* About */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.about-copy h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.about-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 28px; }
.mission-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; }
.mission-card h3 { font-size: 1rem; color: var(--green-dark); margin-bottom: 8px; }
.mission-card p { font-size: 0.92rem; margin: 0; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr; }
}

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-number { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--green); opacity: .55; margin-bottom: 6px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; }
.service-features { display: flex; flex-direction: column; gap: 6px; margin: 14px 0 18px; }
.service-features li { font-size: 0.87rem; color: var(--ink-soft); padding-left: 18px; position: relative; }
.service-features li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.service-link { color: var(--orange-dark); font-weight: 600; font-size: 0.9rem; }
.service-link:hover { text-decoration: underline; }
@media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

/* Why choose us */
.why-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: start; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0 30px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; }
.why-achievements { display: flex; flex-direction: column; gap: 16px; }
.achievement-card { background: var(--navy); border-radius: var(--radius-md); padding: 22px; }
.achievement-card h3 { color: #fff; font-size: 1.02rem; margin-bottom: 8px; }
.achievement-card p { color: #b9c3d1; font-size: 0.9rem; margin: 0; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; position: relative; }
.quote-mark { width: 28px; height: 28px; color: var(--green); opacity: .35; margin-bottom: 10px; }
.testimonial-card p { font-size: 0.98rem; color: var(--ink); font-style: italic; }
.testimonial-author strong { display: block; font-family: var(--font-display); font-size: 0.95rem; color: var(--navy); }
.testimonial-author span { font-size: 0.82rem; color: var(--ink-soft); }
@media (max-width: 760px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-wrap { max-width: 780px; }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: none; padding: 20px 4px; text-align: left; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--navy);
}
.accordion-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform .2s ease; color: var(--orange); }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(180deg); }
.accordion-panel { padding: 0 4px 20px; }
.accordion-panel p { margin: 0; font-size: 0.95rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; margin-bottom: 40px; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-label { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-bottom: 2px; }
.contact-list a { font-weight: 600; color: var(--navy); }
.contact-list a:hover { color: var(--green-dark); }
.contact-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }

/* ==========================================================================
   Forms (shared: popup + contact)
   ========================================================================== */
.enquiry-form { display: flex; flex-direction: column; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.95rem; background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(99,173,89,.18); outline: none; background: #fff;
}
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea { border-color: #D64545; }
.field-error { font-size: 0.78rem; color: #D64545; min-height: 1em; }

.phone-input { display: flex; align-items: stretch; border: 1.5px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--cream); }
.phone-input:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(99,173,89,.18); }
.phone-prefix { display: flex; align-items: center; gap: 6px; padding: 0 12px; background: var(--green-tint); color: var(--navy); font-weight: 600; font-size: 0.9rem; }
.phone-input input { border: none; background: transparent; flex: 1; border-radius: 0; }
.phone-input input:focus { box-shadow: none; }
.flag { font-size: 1rem; }

.form-status { min-height: 1.2em; font-size: 0.88rem; font-weight: 600; margin: 0; }
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #D64545; }
.form-reassurance { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin: 0; }

/* ==========================================================================
   Popup
   ========================================================================== */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(14,27,43,.55); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 900;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.popup-overlay.active { opacity: 1; pointer-events: auto; }

.popup-card {
  position: relative; width: 100%; max-width: 430px; background: var(--white); border-radius: var(--radius-lg);
  max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 70px rgba(0,0,0,.35);
  transform: translateY(20px) scale(.98); opacity: 0; transition: transform .25s ease, opacity .25s ease;
}
.popup-overlay.active .popup-card { transform: translateY(0) scale(1); opacity: 1; }

.popup-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; border-radius: 50%;
  border: none; background: rgba(14,27,43,.06); color: var(--navy); font-size: 1.3rem; line-height: 1;
  cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: rgba(14,27,43,.14); }

.popup-timer {
  background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 22px 26px 18px; text-align: center; transition: background .25s ease;
}
.popup-timer.urgent { background: linear-gradient(135deg, #B23A3A, #8C2626); animation: pulse-timer 1s ease-in-out infinite; }
@keyframes pulse-timer { 0%, 100% { opacity: 1; } 50% { opacity: .85; } }
.popup-timer-label { display: flex; align-items: center; justify-content: center; gap: 6px; color: #dfe6ef; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.popup-timer-label svg { width: 14px; height: 14px; fill: var(--orange); }
.popup-timer-count { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-top: 4px; }

.popup-body { padding: 24px 26px 28px; text-align: center; }
.popup-badge {
  width: 56px; height: 56px; border-radius: var(--radius-sm); margin: -50px auto 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark)); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 22px rgba(224,123,48,.4); position: relative; z-index: 1;
}
.popup-badge .icon-md { color: #fff; width: 26px; height: 26px; }
.popup-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.popup-sub { font-size: 0.9rem; margin-bottom: 22px; }
.popup-body .enquiry-form { text-align: left; }

/* ==========================================================================
   Floating elements
   ========================================================================== */
.floating-badge {
  position: fixed; left: 18px; bottom: 18px; z-index: 300; width: 56px; height: 56px;
  border-radius: 50%; overflow: hidden; box-shadow: 0 8px 22px rgba(0,0,0,.25); background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.floating-badge img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.floating-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 300; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,.45); transition: transform .15s ease;
}
.floating-whatsapp:hover { transform: scale(1.06); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 480px) {
  .floating-badge { width: 46px; height: 46px; left: 12px; bottom: 12px; }
  .floating-whatsapp { width: 50px; height: 50px; right: 12px; bottom: 12px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: #b9c3d1; padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { height: 44px; margin-bottom: 14px; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: #b9c3d1; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; }
.footer-contact a { color: #b9c3d1; }
.footer-contact a:hover { color: var(--orange); }
.footer-about p { color: #9fabbd; font-size: 0.9rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 22px 24px; font-size: 0.8rem; color: #7f8ea3; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
