/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #003791;
  --primary-light: #0050c8;
  --primary-dark: #001d4a;
  --bg-light: #f5f7fa;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --whatsapp: #25D366;
  --gold: #FFD700;
  --gold-dark: #b8860b;
  --border: #e0e0e0;
  --danger: #cc0000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

button,
input,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-light);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  border: none;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

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

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

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

.btn-whatsapp:hover {
  background: #1ebe5d;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

/* ===== HEADER / NAVBAR ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.navbar-logo {
  z-index: 1001;
  order: 2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: -20px 20px -48px;
  background: var(--white);
  border-radius: 50%;
}

.navbar-logo img {
  height: 72px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.navbar-menu-left {
  order: 1;
  justify-content: flex-end;
}

.navbar-menu-right {
  order: 3;
  justify-content: flex-start;
}

.navbar-menu > a,
.nav-dropdown-toggle {
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
}

.navbar-menu > a:hover,
.navbar-menu > a.active,
.nav-dropdown-toggle:hover {
  background: rgba(0, 55, 145, 0.08);
  color: var(--primary-dark);
}

.arrow {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.nav-dropdown:hover .arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.nav-dropdown-content a:hover {
  background: var(--primary);
  color: var(--white);
  padding-left: 26px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 120px 20px 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
  font-weight: 700;
}

.card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.card-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 10px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 80px 20px 60px;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.page-header p {
  margin-top: 12px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ===== TABLES ===== */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  min-width: 500px;
}

.table-wrapper th,
.table-wrapper td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table-wrapper th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.table-wrapper tbody tr:hover {
  background: var(--bg-light);
}

.table-wrapper td {
  font-size: 0.95rem;
}

.day-closed {
  color: var(--danger);
  font-weight: 600;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.comparison-table tbody tr:hover {
  background: var(--bg-light);
}

.check {
  color: var(--whatsapp);
  font-weight: 700;
  font-size: 1.2rem;
}

.cross {
  color: var(--danger);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ===== MEMBERSHIP CARDS ===== */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.membership-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary);
  text-align: center;
}

.membership-card.gold {
  border-top-color: var(--gold);
}

.membership-card.premium {
  border-top-color: var(--primary-light);
}

.membership-card h3 {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.membership-card.gold h3 {
  color: var(--gold-dark);
}

.membership-card .price-list {
  text-align: left;
}

.membership-card .price-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.membership-card .price-list li:last-child {
  border-bottom: none;
}

.membership-card .price-list .price {
  font-weight: 700;
  color: var(--primary);
}

.membership-card.gold .price-list .price {
  color: var(--gold-dark);
}

.membership-card.premium .price-list .price {
  color: var(--primary-light);
}

.pricing-notes {
  margin-top: 40px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

.pricing-notes a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.pricing-notes a:hover {
  color: var(--primary-light);
}

/* ===== WHY US + VIDEO LAYOUT ===== */
.why-us-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.why-us-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  max-width: 280px;
}

.why-us-video {
  flex-shrink: 0;
}

.video-player-frame {
  width: 280px;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid #1a1a1a;
}

.video-player-frame video {
  width: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

@media (max-width: 900px) {
  .why-us-layout {
    flex-wrap: wrap;
    gap: 32px;
  }

  .why-us-column {
    flex-direction: row;
    max-width: 100%;
    flex-basis: 100%;
  }

  .why-us-video {
    order: -1;
  }

  .video-player-frame {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .why-us-column {
    flex-direction: column;
  }

  .video-player-frame {
    width: 240px;
  }
}

/* ===== RULES ===== */
.rule-block {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.rule-block h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rule-block ul li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.7;
}

.rule-block ul li::before {
  content: "\2022";
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.rule-block .rule-desc {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* ===== TRANSPORT ===== */
.transport-block {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.transport-block h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.transport-block p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===== VIDEO TOGGLE ===== */
.video-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.video-toggle-btn:hover {
  background: var(--primary-light);
}

.video-toggle-btn.active {
  background: var(--primary-dark);
}

.video-toggle {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.video-toggle.open {
  max-height: 700px;
  margin-top: 16px;
}

.video-toggle .video-player-frame {
  width: 280px;
}

@media (max-width: 480px) {
  .video-toggle .video-player-frame {
    width: 240px;
  }
}

.bus-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.bus-item {
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bus-number {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  min-width: 40px;
  text-align: center;
}

/* ===== RECIPE CARDS ===== */
.recipe-category {
  margin-bottom: 60px;
}

.recipe-category h2 {
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 30px;
  font-weight: 800;
  text-transform: uppercase;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.recipe-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.recipe-card h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin-bottom: 16px;
  font-weight: 700;
}

.recipe-card h4 {
  font-size: 1rem;
  color: var(--primary);
  margin: 16px 0 8px;
  font-weight: 700;
}

.recipe-card ul li {
  padding: 4px 0 4px 24px;
  position: relative;
  font-size: 0.95rem;
}

.recipe-card ul li::before {
  content: "\2022";
  position: absolute;
  left: 8px;
  color: var(--primary);
}

.recipe-card ol {
  padding-left: 24px;
  margin: 8px 0;
}

.recipe-card ol li {
  padding: 4px 0;
  font-size: 0.95rem;
}

.recipe-card .recipe-note {
  background: var(--bg-light);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 16px;
  border-left: 3px solid var(--primary);
}

.recipe-card .recipe-tip {
  background: #fffde7;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 12px;
  border-left: 3px solid var(--gold);
}

/* ===== PLACEHOLDER PAGE ===== */
.placeholder-content {
  text-align: center;
  padding: 100px 20px;
}

.placeholder-content .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.placeholder-content h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.placeholder-content p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-section p {
  font-size: 1.15rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ===== WHY US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.why-us-item {
  padding: 30px 20px;
}

.why-us-item .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-us-item h4 {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.why-us-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== INFO BOX ===== */
.info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin-top: 30px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== WORKING HOURS DISPLAY ===== */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.hours-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hours-card.closed {
  opacity: 0.6;
}

.hours-card .day {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1rem;
  margin-bottom: 8px;
}

.hours-card .time {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.hours-card.closed .time {
  color: var(--danger);
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== FAQ ===== */
.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.faq-item h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about p {
  opacity: 0.8;
  line-height: 1.7;
  margin-top: 16px;
  font-size: 0.95rem;
}

.footer-about img {
  height: 120px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  opacity: 0.8;
  transition: opacity 0.2s, padding-left 0.2s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 6px;
}

.footer-contact p {
  opacity: 0.8;
  padding: 6px 0;
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

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

/* Tablet */
@media (max-width: 1023px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .navbar-logo {
    order: 0;
  }

  .hamburger {
    order: 1;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    order: 3;
    width: 100%;
    background: var(--white);
    padding: 8px 0;
    gap: 4px;
    flex: unset;
    border-top: 1px solid var(--border);
  }

  .navbar-menu-left,
  .navbar-menu-right {
    justify-content: center;
  }

  .navbar-menu-right {
    border-top: none;
    padding-top: 0;
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-menu > a {
    width: 100%;
    text-align: center;
    padding: 12px;
    color: var(--primary);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: center;
    padding: 12px;
    justify-content: center;
    color: var(--primary);
  }

  .nav-dropdown-content {
    position: static;
    box-shadow: none;
    background: var(--bg-light);
    border-radius: 8px;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-content {
    display: block;
  }

  .nav-dropdown:hover .nav-dropdown-content {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-content {
    display: block;
  }

  .nav-dropdown-content a {
    text-align: center;
    color: var(--text);
  }

  .nav-dropdown-content a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 20px;
  }

  .hamburger {
    display: flex;
  }

  .navbar-logo {
    width: 80px;
    height: 80px;
    margin: -12px 0 -32px;
  }

  .navbar-logo img {
    height: 52px;
  }

  .hero {
    padding: 80px 20px 60px;
  }

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

  .hero p {
    font-size: 1.05rem;
  }

  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .cards-grid,
  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .page-header {
    padding: 60px 20px 40px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

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

  .bus-list {
    grid-template-columns: 1fr;
  }
}
