/* =====================================================
   RIYAS STOCK POINT — style.css
   Color Palette:
     Primary gradient: #f00505 → #7d0101
     Background: #ffffff
     Text: #111111 / #333333
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --red-bright: #f00505;
  --red-deep: #7d0101;
  --red-mid: #b50303;
  --gradient: linear-gradient(135deg, #f00505 0%, #7d0101 100%);
  --gradient-lr: linear-gradient(90deg, #f00505 0%, #7d0101 100%);
  --gradient-tb: linear-gradient(180deg, #f00505 0%, #7d0101 100%);
  --white: #ffffff;
  --black: #111111;
  --text: #222222;
  --text-soft: #555555;
  --bg: #ffffff;
  --bg-tint: #fff5f5;
  --border: #f5e0e0;
  --shadow: 0 8px 32px rgba(240, 5, 5, 0.12);
  --shadow-deep: 0 16px 48px rgba(125, 1, 1, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-accent: 'Lora', serif;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gradient-lr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-label.center { display: block; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em {
  font-family: var(--font-accent);
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240, 5, 5, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(240, 5, 5, 0.45);
}
.btn-outline {
  background: transparent;
  color: var(--red-bright);
  border: 2px solid var(--red-bright);
}
.btn-outline:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
.btn-large { padding: 18px 40px; font-size: 1rem; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(240,5,5,0.1); }

.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.02em;
}
.logo-accent {
  background: var(--gradient-lr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-lr);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--red-bright); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--red-bright);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-left: max(24px, calc((100vw - 1180px)/2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px)/2 + 24px));
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(240,5,5,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 90% 20%, rgba(240,5,5,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  color: var(--red-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.title-line {
  display: block;
  color: var(--black);
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.1s;
}
.title-line.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.2s;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.3s;
}
.hero-sub strong { color: var(--red-mid); }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.4s;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp 0.6s ease both;
  animation-delay: 0.5s;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient-lr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--text-soft); letter-spacing: 0.05em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

.hero-image-wrap {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: fadeSlideIn 0.8s ease both;
  animation-delay: 0.3s;
}
.hero-ring {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0.06;
  animation: pulse 3s ease-in-out infinite;
}
.hero-logo-img {
  width: 500px;
  height: 450px;
  border-radius: 50%;
  box-shadow: var(--shadow-deep);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 2px solid var(--red-bright);
  border-bottom: 2px solid var(--red-bright);
  transform: rotate(45deg);
  animation: bounce 1.5s ease-in-out infinite;
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
  background: var(--gradient-lr);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}

.about-text p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-text strong { color: var(--red-mid); }

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.feat-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  font-size: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
}
.about-card:hover {
  border-color: var(--red-bright);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.about-card.highlight {
  background: var(--gradient);
  border-color: transparent;
}
.about-card.highlight h3,
.about-card.highlight p { color: white; }
.card-icon { font-size: 2rem; margin-bottom: 12px; }
.about-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.about-card p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.65; }

/* =====================================================
   WHY FRESH
   ===================================================== */
.why-fresh { background: var(--bg-tint); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-lr);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-tb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.why-card p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.7; }

/* =====================================================
   MENU
   ===================================================== */
.menu { background: var(--white); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--bg);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.menu-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
  border-color: var(--red-bright);
}

.menu-img-placeholder {
  height: 160px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-img-placeholder.orange {
  background: linear-gradient(135deg, #ff6b35 0%, #c0392b 100%);
}
.menu-img-placeholder.dark {
  background: linear-gradient(135deg, #7d0101 0%, #3d0000 100%);
}
.menu-emoji { font-size: 3.5rem; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }

.menu-info { padding: 24px 20px; flex: 1; }
.menu-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.menu-info p { font-size: 0.875rem; color: var(--text-soft); line-height: 1.65; margin-bottom: 14px; }
.menu-tag {
  display: inline-block;
  background: var(--bg-tint);
  border: 1px solid var(--border);
  color: var(--red-mid);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

/* =====================================================
   CULTURE
   ===================================================== */
.culture { background: var(--bg-tint); }

.culture-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.culture-text p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}
.culture-text .btn { margin-top: 12px; }

.culture-visual { display: flex; justify-content: center; }
.culture-badge-wrap { position: relative; width: 320px; height: 320px; }
.culture-badge {
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 4px solid var(--red-bright);
}
.culture-badge img { width: 100%; height: 100%; object-fit: cover; }

.culture-tag {
  position: absolute;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red-deep);
  box-shadow: 0 4px 16px rgba(240,5,5,0.12);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.tag1 { top: 20px; right: -20px; animation-delay: 0s; }
.tag2 { bottom: 60px; right: -30px; animation-delay: 1s; }
.tag3 { bottom: 20px; left: -20px; animation-delay: 2s; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--bg-tint);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--red-bright);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.contact-icon { font-size: 2.5rem; margin-bottom: 16px; }
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.contact-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; }

.contact-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo { width: 72px; border-radius: 50%; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 300px; }

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gradient-lr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--red-bright); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.06; }
  50%       { transform: scale(1.08); opacity: 0.1; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll reveal */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .culture-inner { grid-template-columns: 1fr; gap: 48px; }
  .culture-visual { order: -1; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 14px 28px;
    font-size: 1rem;
    width: 100%;
  }
  .nav-links a::after { display: none; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--nav-h) + 32px);
    padding-bottom: 64px;
  }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image-wrap { order: -1; max-width: 240px; }
  .hero-logo-img { width: 240px; }
  .hero-ring { width: 240px; height: 240px; }

  .about-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .culture-badge-wrap { width: 240px; height: 240px; }
  .tag1, .tag2, .tag3 { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .why-grid { grid-template-columns: 1fr; }
  .btn-large { padding: 14px 24px; font-size: 0.9rem; }
}

/* =====================================================
   RIYAS STOCK POINT — contact.css
   Contact page–only additions. Reuses style.css tokens
   (--gradient, --red-bright, --shadow, --radius, etc.)
   ===================================================== */

/* ---------- CONTACT HERO ---------- */
.contact-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--bg-tint);
  overflow: hidden;
}
.contact-hero .hero-bg-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(240,5,5,0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(125,1,1,0.08), transparent 50%);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
}
.contact-hero .hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gradient);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.contact-hero .hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.contact-hero .title-line { display: block; }
.contact-hero .title-line.accent {
  font-family: var(--font-accent);
  font-style: italic;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-hero .hero-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 28px;
}

/* ---------- MARQUEE STRIP ---------- */
.marquee-strip {
  background: var(--gradient-lr);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.marquee-track span { font-size: 0.95rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- CONTACT INFO GRID ---------- */
.contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.contact-icon {
  font-size: 2.2rem;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg-tint);
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* ---------- CONTACT FORM ---------- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
}
.form-row label .opt {
  font-weight: 400;
  color: var(--text-soft);
  font-size: 0.8rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red-bright);
  box-shadow: 0 0 0 3px rgba(240, 5, 5, 0.15);
}
.form-row textarea { resize: vertical; }
.form-submit { margin-top: 8px; align-self: flex-start; }
.form-status {
  font-size: 0.9rem;
  margin-top: 8px;
  min-height: 1.2em;
}
.form-status.success { color: #0a7a2f; }
.form-status.error   { color: var(--red-bright); }

/* ---------- AREAS WE SERVE ---------- */
.areas-grid {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.area-chip {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--white);
  color: var(--red-deep);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.area-chip:hover {
  transform: translateY(-3px);
  background: var(--gradient);
  color: var(--white);
}

/* ---------- SOCIAL GRID ---------- */
.social-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.social-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block;
}
.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-deep);
}
.social-ico {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 10px;
}
.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 4px;
}
.social-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ---------- MAP ---------- */
.map-wrap {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border);
  aspect-ratio: 16 / 7;
  background: var(--bg-tint);
}
.map-wrap iframe {
  width: 100%; height: 100%; border: 0; display: block;
}

/* ---------- FAQ ---------- */
.faq-list {
  margin-top: 40px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.faq-item[open] { box-shadow: var(--shadow-deep); }
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--red-bright);
  transition: transform var(--transition);
}
.faq-item[open] summary::after {
  content: '–';
  transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-cards  { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .contact-hero { padding: calc(var(--nav-h) + 50px) 0 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .social-grid  { grid-template-columns: 1fr 1fr; }
  .about-cards  { grid-template-columns: 1fr !important; }
  .contact-form { padding: 24px; }
  .map-wrap     { aspect-ratio: 4 / 5; }
}

/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */

/* ---------- Large Tablet ---------- */

@media (max-width:1200px){

.container{
    padding:0 20px;
}

.hero{
    padding-left:20px;
    padding-right:20px;
}

.hero-logo-img{
    width:420px;
    height:420px;
}

}


/* ---------- Tablet ---------- */

@media (max-width:992px){

.hero{
    flex-direction:column-reverse;
    text-align:center;
    justify-content:center;
    padding-top:120px;
    gap:50px;
}

.hero-content{
    max-width:100%;
}

.hero-cta{
    justify-content:center;
}

.hero-stats{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-logo-img{
    width:360px;
    height:360px;
}

.about-grid,
.culture-inner{
    grid-template-columns:1fr;
    gap:50px;
}

.about-cards{
    grid-template-columns:repeat(2,1fr);
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.menu-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

:root{
    --nav-h:70px;
}

.section{
    padding:70px 0;
}

.section-title{
    font-size:2rem;
}

.section-sub{
    font-size:1rem;
}

.nav-container{
    padding:0 16px;
}

.logo-img{
    width:40px;
    height:40px;
}

.logo-text{
    font-size:1rem;
}

.hamburger{
    display:flex;
}

.nav-links{

    position:fixed;

    top:70px;

    right:-100%;

    width:270px;

    height:calc(100vh - 70px);

    background:#fff;

    flex-direction:column;

    justify-content:flex-start;

    align-items:flex-start;

    padding:35px;

    gap:24px;

    transition:.35s;

    box-shadow:-5px 0 30px rgba(0,0,0,.1);

    z-index:999;

}

.nav-links.open{

    right:0;

}

.hero{

    flex-direction:column-reverse;

    text-align:center;

    min-height:auto;

    gap:40px;

    padding-top:110px;

}

.hero-image-wrap{

    max-width:100%;

}

.hero-ring{

    width:280px;

    height:280px;

}

.hero-logo-img{

    width:280px;

    height:280px;

}

.hero-title{

    font-size:2.8rem;

}

.hero-sub{

    font-size:1rem;

}

.hero-cta{

    flex-direction:column;

    align-items:center;

}

.hero-cta .btn{

    width:100%;

    max-width:320px;

    justify-content:center;

}

.hero-stats{

    flex-direction:column;

    gap:18px;

}

.stat-divider{

    display:none;

}

.about-grid,

.culture-inner{

    grid-template-columns:1fr;

}

.about-cards{

    grid-template-columns:1fr;

}

.why-grid{

    grid-template-columns:1fr;

}

.menu-grid{

    grid-template-columns:1fr;

}

.contact-grid{

    grid-template-columns:1fr;

}

.culture-badge-wrap{

    width:260px;

    height:260px;

}

.marquee-track{

    animation-duration:18s;

}

}


/* ---------- Small Phones ---------- */

@media (max-width:480px){

.container{

    padding:0 16px;

}

.hero{

    padding-top:100px;

}

.hero-logo-img{

    width:250px;

    height:250px;

}

.hero-ring{

    width:250px;

    height:250px;

}

.hero-title{

    font-size:2.2rem;

}

.section-title{

    font-size:1.8rem;

}

.section-sub{

    font-size:.95rem;

}

.btn{

    width:100%;

    justify-content:center;

}

.logo-text{

    font-size:.9rem;

}

.logo-img{

    width:36px;

    height:36px;

}

}


/* ---------- Very Small Phones ---------- */

@media (max-width:360px){

.hero-title{

    font-size:1.9rem;

}

.hero-logo-img{

    width:220px;

    height:220px;

}

.hero-ring{

    width:220px;

    height:220px;

}

.logo-text{

    display:none;

}

}