/* JACKPOT Readymade Garments - Design System */
:root {
  --bg-light: #F8F8F8;
  --bg-white: #ffffff;
  --bg-dark: #1A202C;
  --text-dark: #1A202C;
  --text-muted: #4a5568;
  --accent: #e07c24;
  --accent-hover: #c96b1a;
  --border: #e2e8f0;
  --font: "Inter", -apple-system, sans-serif;
  /* Primary brand colors (hero / image) */
  --primary-white: #FFFFFF;
  --primary-orange: #F97316;
  --primary-dark: #363636;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Top Bar */
.top-bar {
  background: #2d3748;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left span,
.top-bar-right span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-left span:first-child,
.top-bar-left .contact-phone-trigger {
  margin-right: 1.5rem;
}

.top-bar-left a.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
}

.top-bar-left a.contact-email-link:hover {
  text-decoration: underline;
}

.contact-phone-trigger {
  cursor: pointer;
}

.top-bar i {
  font-size: 0.75rem;
}

/* Main Header */
.main-header {
  background: var(--bg-white);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: "Oleo Script", "Fredoka One", cursive;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-red);
  letter-spacing: 0.02em;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  line-height: 1.1;
}

.logo-sub {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-dark);
}

.icon-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
}

.icon-btn:hover {
  color: var(--text-dark);
}

/* Hamburger (visible only on mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 102;
  position: relative;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-overlay.active {
  opacity: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.8);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-hero-primary {
  background: var(--primary-orange);
  color: var(--primary-white);
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(249, 115, 22, 0.4);
}

.btn-hero-primary:hover {
  background: #ea580c;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
}

.btn-hero-secondary {
  background: var(--primary-dark);
  color: var(--primary-white);
  border: none;
  border-radius: 5px;
}

.btn-hero-secondary:hover {
  background: #2d2d2d;
}

/* Hero - matches image: relative h-[85vh] min-h-[600px] flex items-center overflow-hidden */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* absolute inset-0 z-0 */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('images/bg-banner.png') center/cover;
  filter: blur(4px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

/* container mx-auto px-6 relative z-10 */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* max-w-2xl text-white */
.hero-content {
  max-width: 42rem;
  color: var(--primary-white);
}

/* Welcome to - part of heading block, tight above JACKPOT */
.hero-welcome {
  color: var(--primary-white);
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
  line-height: 1.25;
}

/* h1: text-5xl md:text-7xl font-extrabold leading-tight mb-6 */
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffc700;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

/* p: text-xl md:text-2xl text-slate-200 mb-4 font-light */
.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* p: text-slate-300 mb-10 max-w-lg leading-relaxed */
.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.625;
}

/* flex flex-col sm:flex-row gap-4 */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Features */
.features {
  background: var(--bg-light);
  padding: 4rem 1.5rem;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Section Tag */
.section-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

/* Collection */
.collection {
  padding: 4rem 1.5rem;
  background: white;
}

.collection-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.collection-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.collection-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.collection-desc {
  max-width: 400px;
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: right;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.collection-item {
  border-radius: 12px;
  overflow: hidden;
}

.collection-img {
  aspect-ratio: 3/4;
  border-radius: 12px;
}

/* About */
.about {
  padding: 4rem 1.5rem;
  background: white;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #a8c5e8 0%, #7ba3d4 100%);
  border-radius: 12px;
}

.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.about-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2rem;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  padding: 4rem 1.5rem;
  background: white;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
}

.title-underline {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 0.5rem;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  background: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--text-dark);
}

.accordion-trigger i {
  color: var(--text-muted);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-trigger i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  padding: 4rem 1.5rem;
}

.contact-card {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.contact-left {
  background: var(--bg-dark);
  color: white;
  padding: 3rem;
}

.contact-left h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-left-sub {
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrap {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(224, 124, 36, 0.35);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-info-text {
  font-size: 0.95rem;
  color: white;
  line-height: 1.5;
}

.contact-info-text strong {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.95;
  font-weight: 600;
}

.contact-info-text a.contact-email-link-inline {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}

.contact-info-text a.contact-email-link-inline:hover {
  border-bottom-color: white;
}

.copy-feedback {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  margin-bottom: 4px;
  padding: 4px 8px;
  font-size: 0.75rem;
  background: var(--bg-dark, #1a1a1a);
  color: white;
  border-radius: 4px;
  white-space: nowrap;
  animation: copyFade 1.5s ease forwards;
}

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

.social-intro {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: white;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s;
}

.social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.contact-right {
  background: white;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-call {
  text-align: center;
  max-width: 320px;
}

.contact-call-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e8dfd0;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.contact-call h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-call-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-contact-call {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
  margin-bottom: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.btn-contact-call:hover {
  background: var(--accent-hover);
  color: white;
}

.btn-contact-call-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.95;
}

.btn-contact-call-number {
  font-size: 1.35rem;
  font-weight: 700;
}

.contact-call-tagline {
  font-size: 0.85rem;
  color: var(--accent);
  font-style: italic;
  margin: 0;
}

/* Footer */
.footer {
  background: var(--bg-light);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo-main {
  font-size: 1.25rem;
  color: var(--primary-red);
}

.footer-brand .logo-sub {
  font-size: 0.6rem;
  color: var(--primary-blue);
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-links h4,
.footer-newsletter h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-newsletter p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
}

.newsletter-form .btn {
  padding: 0.6rem 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent);
}

/* ========== RESPONSIVE ========== */

/* Mobile spacing tokens for equal rhythm */
@media (max-width: 768px) {
  :root {
    --mobile-section: 2rem;   /* vertical padding between sections */
    --mobile-gap: 1.25rem;    /* gap between items within a section */
    --mobile-pad: 1.25rem;    /* horizontal page padding */
  }
}

@media (max-width: 480px) {
  :root {
    --mobile-section: 1.75rem;
    --mobile-gap: 1rem;
    --mobile-pad: 1rem;
  }
}

@media (max-width: 1024px) {
  .collection-header {
    flex-direction: column;
  }
  .collection-desc {
    text-align: left;
  }
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet and mobile: top bar, nav, hero, sections */
@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 85vw);
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .nav-links.nav-open {
    transform: translateX(0);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .header-inner {
    padding: 0 var(--mobile-pad);
    gap: var(--mobile-gap);
  }

  .logo-main {
    font-size: 1.5rem;
  }

  .logo-sub {
    font-size: 0.7rem;
  }

  /* Hero mobile */
  .hero {
    min-height: 420px;
    height: 75vh;
    padding: var(--mobile-section) 0;
  }

  .hero-container {
    padding-left: var(--mobile-pad);
    padding-right: var(--mobile-pad);
  }

  .hero-welcome {
    font-size: 1.75rem;
    margin-bottom: 0.1rem;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: var(--mobile-gap);
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: var(--mobile-gap);
  }

  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: var(--mobile-section);
  }

  /* Features */
  .features {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .features-inner {
    grid-template-columns: 1fr;
    gap: var(--mobile-gap);
  }

  .feature-card {
    padding: var(--mobile-gap);
  }

  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.875rem;
  }

  .collection-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .about-inner {
    gap: var(--mobile-gap);
  }

  .about-image {
    order: 1;
  }

  .about-content {
    order: 2;
  }

  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--mobile-gap);
  }

  .about-content p {
    font-size: 0.95rem;
    margin-bottom: var(--mobile-gap);
  }

  .about-stats {
    flex-wrap: wrap;
    gap: var(--mobile-gap);
    margin-top: var(--mobile-section);
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  /* Contact */
  .contact {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .contact-left,
  .contact-right {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .contact-left h2 {
    font-size: 1.5rem;
    margin-bottom: var(--mobile-gap);
  }

  .contact-left-sub {
    margin-bottom: var(--mobile-gap);
    font-size: 0.9rem;
  }

  .contact-info {
    gap: var(--mobile-gap);
    margin-bottom: var(--mobile-gap);
  }

  .contact-info-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-info-text {
    font-size: 0.9rem;
    word-break: break-word;
  }

  .contact-call h2 {
    font-size: 1.4rem;
    margin-bottom: var(--mobile-gap);
  }

  .contact-call-sub {
    font-size: 0.85rem;
    margin-bottom: var(--mobile-gap);
  }

  .btn-contact-call {
    padding: var(--mobile-gap) var(--mobile-pad);
    max-width: 100%;
    min-height: 52px;
    margin-bottom: var(--mobile-gap);
  }

  .btn-contact-call-number {
    font-size: 1.1rem;
  }

  .contact-call-tagline {
    font-size: 0.8rem;
  }

  /* Footer */
  .footer {
    padding: var(--mobile-section) var(--mobile-pad) var(--mobile-section);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--mobile-section);
    margin-bottom: var(--mobile-section);
  }

  .footer-links h4,
  .footer-newsletter h4 {
    margin-bottom: var(--mobile-gap);
  }

  .footer-links {
    gap: 0.5rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    margin-top: var(--mobile-gap);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--mobile-gap);
    text-align: center;
    padding-top: var(--mobile-section);
    font-size: 0.8rem;
  }
}

/* Nav overlay visible on mobile when menu open */
@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay.active {
    pointer-events: auto;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 var(--mobile-pad);
  }

  .logo-main {
    font-size: 1.35rem;
  }

  .logo-sub {
    font-size: 0.6rem;
  }

  .hero {
    min-height: 380px;
    height: 70vh;
  }

  .hero-welcome {
    font-size: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .features {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .feature-card {
    padding: var(--mobile-gap);
  }

  .about {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .about-content h2 {
    font-size: 1.35rem;
  }

  .about-stats {
    gap: var(--mobile-gap);
  }

  .stat {
    min-width: 0;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .contact {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .contact-left,
  .contact-right {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .contact-left h2 {
    font-size: 1.35rem;
  }

  .contact-call h2 {
    font-size: 1.25rem;
  }

  .btn-contact-call-number {
    font-size: 1rem;
  }

  .footer {
    padding: var(--mobile-section) var(--mobile-pad);
  }

  .footer-bottom span {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Touch-friendly and safe area (notch devices) */
@media (max-width: 768px) {
  @supports (padding: env(safe-area-inset-bottom)) {
    .footer {
      padding-bottom: calc(var(--mobile-section) + env(safe-area-inset-bottom));
    }

    .nav-links {
      padding-right: max(var(--mobile-pad), env(safe-area-inset-right));
    }
  }
}
