/* Super 9 Station – match screenshot */
:root {
  --color-bg: #fff;
  --color-text: #1a1a1a;
  --color-muted: #555;
  --color-blue: #1565c0;
  --color-royal-blue: #0d47a1;
  --color-accent: #c62828;
  --color-hero-beige: #f5f0e8;
  --color-gray-bg: #eef0f2;
  --color-header-bg: #fff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --spacing-section: 4rem;
  /* Breakpoints (use in media queries) */
  --bp-tablet: 992px;
  --bp-mobile: 768px;
  --bp-sm: 480px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 110%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* Skip link: visible on focus for keyboard/screen reader users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-royal-blue);
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 480px) {
  body { font-size: 0.9375rem; }
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
}

/* Header: GLOBAL — reuse this exact markup and styles on every page (index, about, and any future pages). */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-header-bg);
  border-bottom: 1px solid #eee;
  padding: 0.75rem 1rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 64px;
  width: auto;
  max-width: 288px;
  object-fit: contain;
}

.header-spacer {
  width: 288px;
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: #273C8B;
  padding: 0.25rem 0;
}

.nav a:hover {
  color: #1a2d6b;
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-royal-blue);
  outline-offset: 2px;
}

@media (max-width: 992px) {
  .hero-content { margin-left: 4rem; }
  .nav { gap: 1rem; }
  .nav a { font-size: 0.9rem; }
  .logo-img { height: 58px; max-width: 259px; }
  .header-spacer { width: 259px; }
}

@media (max-width: 768px) {
  .header { padding: 0.5rem 1rem; }
  .header-inner {
    position: relative;
    justify-content: center;
  }
  .logo {
    justify-content: center;
  }
  .logo-img { height: 52px; max-width: 230px; }
  .header-spacer { display: none; }
  .nav { flex: none; justify-content: flex-start; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-header-bg);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    gap: 0;
  }
  .nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #273C8B;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav a:last-of-type { border-bottom: none; }
  .nav a:hover { color: #1a2d6b; }
  .nav.is-open { display: flex; }
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 480px) {
  .logo-img { height: 46px; max-width: 202px; }
}

/* Hero: background image, increased height, responsive */
.hero {
  background: var(--color-hero-beige) url("assets/images/hero-img.webp") center / cover no-repeat;
  padding: 3rem 0;
  position: relative;
  min-height: 572px;
  display: flex;
  align-items: center;
}

.hero .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-content {
  flex: 1;
  max-width: 50%;
  text-align: left;
  margin-left: 8rem;
}

.hero h1 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
}

.hero h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

.hero-tagline {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: var(--color-text);
}

.hero-content .btn-explore {
  margin-top: 1.25rem;
}

.btn-explore {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #c62828;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-explore:hover { opacity: 0.9; }

/* Tablet */
@media (max-width: 992px) {
  .hero {
    min-height: 506px;
    padding: 2.5rem 0;
  }
  .hero h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 462px;
    padding: 2rem 0;
  }
  .hero-inner { flex-direction: column; justify-content: center; }
  .hero-content { max-width: 100%; text-align: center; margin-left: 0; }
  .hero h1 { font-size: 1rem; }
  .hero h2 { font-size: 1.5rem; line-height: 1.25; }
  .hero-tagline { font-size: 0.95rem; }
  .btn-explore { padding: 0.875rem 1.5rem; width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .hero {
    min-height: 418px;
    padding: 1.5rem 0;
  }
  .hero h2 { font-size: 1.35rem; }
}

/* Intro: white, center text, Avenir bold 25px */
.intro {
  padding: var(--spacing-section) 0;
  background: #fff;
  text-align: center;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.intro-text {
  margin: 0 auto 0.5rem;
  max-width: 800px;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

.intro-text:first-of-type {
  font-weight: 700;
  font-size: 30px;
}

.intro-cta {
  margin: 1rem auto 1.5rem;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  display: block;
}

.features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  min-height: 44px;
  justify-content: center;
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f0e8;
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-item-icon svg {
  width: 28px;
  height: 28px;
  color: #333;
}

.feature-sep {
  width: 1px;
  height: 36px;
  background: #ddd;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .intro { padding: 3rem 0; }
  .feature-item { padding: 0 0.75rem; }
}

@media (max-width: 768px) {
  .intro { padding: 2.5rem 0; }
  .intro-text { font-size: 22px; }
  .intro-text:first-of-type { font-size: 26px; }
  .intro-cta { font-size: 22px; margin: 1rem 0 1.25rem; }
}

@media (max-width: 600px) {
  .feature-sep { display: none; }
  .features-row { gap: 1rem; padding: 0 0.5rem; }
  .feature-item { padding: 0.5rem; }
  .feature-item-icon { width: 40px; height: 40px; }
  .feature-item-icon svg { width: 22px; height: 22px; }
  .feature-item span { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .intro { padding: 2rem 0; }
}

/* Inside Super 9: gray bg, left-aligned, responsive */
.inside-super9 {
  padding: var(--spacing-section) 0;
  background: var(--color-gray-bg);
}

@media (max-width: 768px) {
  .inside-super9 { padding: 2.5rem 0; }
  .inside-super9 h2 { font-size: 2rem; }
  .inside-super9 h3 { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .inside-super9 { padding: 2rem 0; }
  .inside-super9 h2 { font-size: 1.5rem; }
  .inside-super9 h3 { font-size: 1.1rem; }
  .inside-image img { min-height: 180px; }
}

.inside-super9 h2 {
  margin: 0 0 0.25rem;
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
}

.inside-super9 h2 .text-brand {
  color: #273C8B;
}

.inside-super9 h3 {
  margin: 0 0 1.25rem;
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  color: var(--color-text);
}

.inside-image {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

.inside-image img {
  width: 100%;
  min-height: 220px;
}

/* Inside Super 9 carousel */
.inside-carousel {
  position: relative;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
}

.inside-carousel-track {
  position: relative;
  width: 100%;
  min-height: 280px;
}

.inside-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.inside-carousel-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.inside-carousel-slide img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.inside-carousel-prev,
.inside-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.inside-carousel-prev:hover,
.inside-carousel-next:hover {
  background: rgba(0,0,0,0.75);
}

.inside-carousel-prev { left: 12px; }
.inside-carousel-next { right: 12px; }

.inside-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.inside-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.inside-carousel-dot.is-active {
  background: #fff;
}

@media (max-width: 768px) {
  .inside-carousel-track { min-height: 220px; }
  .inside-carousel-slide img { min-height: 220px; }
}

@media (max-width: 480px) {
  .inside-carousel-track { min-height: 180px; }
  .inside-carousel-slide img { min-height: 180px; }
  .inside-carousel-prev, .inside-carousel-next { width: 36px; height: 36px; font-size: 1.25rem; }
}

/* Food Menu: heading + menu image */
.food-menu-section {
  padding: var(--spacing-section) 0;
  background: #fff;
}

.food-menu-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 72px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--color-blue);
}

.food-menu-image-wrap {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}

.food-menu-image-wrap .food-menu-image {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .food-menu-section h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
  .food-menu-section { padding: 2.5rem 0; }
  .food-menu-section h2 { font-size: 2rem; }
}

@media (max-width: 500px) {
  .food-menu-section { padding: 2rem 0; }
  .food-menu-section h2 { font-size: 1.5rem; }
}

/* Contact: royal blue, white text, map */
.contact-section {
  padding: var(--spacing-section) 0;
  background: var(--color-royal-blue);
  color: #fff;
}

.contact-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2rem;
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-block h3 {
  margin: 0 0 0.5rem;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #CD3B38;
}

.contact-block p {
  margin: 0.25rem 0;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.contact-block a {
  color: #fff;
  text-decoration: underline;
  font-family: "Avenir Next", "Avenir", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
}

.contact-block a:hover { opacity: 0.9; }

.contact-map {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
}

.contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

@media (max-width: 992px) {
  .contact-section { padding: 3rem 0; }
  .contact-grid { gap: 1.5rem; margin-bottom: 1.5rem; }
}

@media (max-width: 768px) {
  .contact-section { padding: 2.5rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.5rem; }
  .contact-section h2 { font-size: 2rem; margin-bottom: 1.5rem; }
  .contact-map iframe { height: 280px; }
}

@media (max-width: 480px) {
  .contact-section { padding: 2rem 0; }
  .contact-section h2 { font-size: 1.5rem; }
  .contact-block h3 { font-size: 1.5rem; }
  .contact-map iframe { height: 240px; }
  .contact-block p, .contact-block a { font-size: 1rem; }
}

/* Instagram: white, center, handle in red */
.instagram-section {
  padding: var(--spacing-section) 0;
  background: #fff;
  text-align: center;
}

.instagram-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
}

.instagram-handle {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.1rem;
}

.instagram-handle:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .instagram-section { padding: 2.5rem 0; }
  .instagram-section h2 { font-size: 1.15rem; }
}

@media (max-width: 480px) {
  .instagram-section { padding: 2rem 0; }
}

/* Popular Categories: heading left, circular images, beige circle bg */
.categories-section {
  padding: var(--spacing-section) 0;
  background: #fff;
}

.categories-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 33px;
  font-weight: 600;
  text-align: left;
  margin: 0 0 1.5rem;
  color: var(--color-text);
}

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

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.category-circle {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: var(--color-hero-beige);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.category-circle picture,
.category-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.category-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

@media (max-width: 992px) {
  .categories-section { padding: 3rem 0; }
  .categories-grid { gap: 1.25rem; }
  .category-circle { width: 120px; height: 120px; }
}

@media (max-width: 768px) {
  .categories-section { padding: 2.5rem 0; }
  .categories-section h2 { font-size: 1.75rem; margin-bottom: 1.25rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .category-circle { width: 108px; height: 108px; }
  .category-label { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .categories-section { padding: 2rem 0; }
  .categories-section h2 { font-size: 1.5rem; }
  .categories-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .category-circle { width: 120px; height: 120px; margin-left: auto; margin-right: auto; }
}

/* Get Connected: heading left, large square social icons */
.social-section {
  padding: var(--spacing-section) 0;
  background: #fff;
}

.social-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 33px;
  font-weight: 700;
  text-align: left;
  margin: 0 0 1rem;
  color: var(--color-text);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.social-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.social-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.social-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14%;
  filter: brightness(0) invert(1);
}

/* Brand colors: colored circle, white icon */
.social-icon-item--instagram .social-icon-circle {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon-item--facebook .social-icon-circle {
  background: #1877f2;
}

.social-icon-item--tiktok .social-icon-circle {
  background: #000000;
}

.social-icon-item--youtube .social-icon-circle {
  background: #ff0000;
}

.social-icon-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1565c0;
  text-decoration: underline;
}

.social-icon-item:hover .social-icon-label {
  color: #0d47a1;
}

@media (max-width: 768px) {
  .social-section { padding: 2.5rem 0; }
  .social-section h2 { font-size: 1.75rem; }
  .social-icons { gap: 1.5rem; }
  .social-icon-circle { width: 67px; height: 67px; }
}

@media (max-width: 480px) {
  .social-section { padding: 2rem 0; }
  .social-section h2 { font-size: 1.5rem; }
  .social-icons { justify-content: center; gap: 1.25rem; }
  .social-icon-circle { width: 62px; height: 62px; }
  .social-icon-label { font-size: 0.9rem; }
}

/* Now Delivering: blue heading, green button */
.delivery-section {
  padding: var(--spacing-section) 0;
  background: #fff;
  text-align: center;
}

.delivery-section h2 {
  margin: 0 0 0.5rem;
  font-family: Helvetica, sans-serif;
  font-weight: 700;
  font-size: 50px;
  color: #273C8B;
  text-align: center;
}

.delivery-section p {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-family: Helvetica, sans-serif;
  font-weight: 400;
  font-size: 35px;
  color: var(--color-text);
}

.btn-doordash {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: #CD3B38;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
}

.btn-doordash:hover { opacity: 0.9; }

@media (max-width: 768px) {
  .delivery-section { padding: 2.5rem 0; }
  .delivery-section h2 { font-size: 2rem; }
  .delivery-section p { font-size: 1.25rem; padding: 0 0.5rem; }
  .btn-doordash { min-height: 44px; padding: 0.875rem 1.5rem; }
}

@media (max-width: 480px) {
  .delivery-section { padding: 2rem 0; }
  .delivery-section h2 { font-size: 1.75rem; }
  .delivery-section p { font-size: 1rem; }
  .btn-doordash { width: 100%; max-width: 280px; }
}

/* Footer: dark navy, 3-column, compact, no payment section */
/* Footer: GLOBAL — reuse this exact markup and styles on every page. All pages must load styles.css so header and footer stay identical. */
.footer {
  background: #2B2E8C;
  color: #fff;
  width: 100%;
}

.footer-main {
  padding: 50px 60px;
}

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

/* Desktop: contact col1, brand+social col2, nav col3 */
.footer-col-contact { grid-column: 1; grid-row: 1 / -1; }
.footer-col-brand { grid-column: 2; grid-row: 1; }
.footer-col-nav { grid-column: 3; grid-row: 1 / -1; }
.footer-col-social { grid-column: 2; grid-row: 2; }

/* Column 1 - Contact (left-aligned) */
.footer-col-contact {
  text-align: left;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
  color: #fff;
}

.footer-contact-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: #fff;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* Column 2 - Brand + social (center) */
.footer-col-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand-name {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer-col-social {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-social-icons {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #fff;
}

.footer-social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-social-icon:hover {
  opacity: 0.75;
}

/* Column 3 - Nav (right-aligned) */
.footer-col-nav {
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-end;
}

.footer-nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}

.footer-nav-link:hover {
  text-decoration: underline;
  opacity: 0.75;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  background: #1E2070;
}

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

.footer-copy {
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: #fff;
}

.footer-copy-link {
  color: #fff;
  text-decoration: underline;
}

.footer-copy-link:hover {
  opacity: 0.9;
}

/* Tablet: stack columns, center all (< 900px) — mobile order: Brand, Nav, Contact, Social */
@media (max-width: 900px) {
  .footer-main { padding: 40px 24px; }
  .footer-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    align-items: center;
  }
  .footer-col-contact {
    order: 3;
    text-align: center;
  }
  .footer-col-brand { order: 1; }
  .footer-col-nav {
    order: 2;
    text-align: center;
  }
  .footer-col-social { order: 4; }
  .footer-contact { align-items: center; }
  .footer-nav { align-items: center; }
  .footer-bottom-inner { padding: 0 24px; }
}

/* Mobile: single column, reduce font sizes (< 600px) */
@media (max-width: 600px) {
  .footer-main { padding: 32px 16px; }
  .footer-brand-name { font-size: 20px; margin-bottom: 12px; }
  .footer-contact-item { font-size: 13px; }
  .footer-nav-link { font-size: 14px; }
  .footer-social-icon { width: 20px; height: 20px; }
  .footer-social-icons { gap: 14px; }
  .footer-bottom { padding: 14px; }
  .footer-bottom-inner { padding: 0 16px; }
  .footer-copy { font-size: 12px; }
  .footer-copy-line2 { display: block; margin-top: 0.25em; }
}
