/* =========================================
   1. GLOBAL & VARIABLES
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --navy: #0A1F44;
  --blue: #1A56DB;
  --blue-light: #2D6EFD;
  --bg: #F0F4FF;
  --white: #FFFFFF;
  --gold: #F5A623;
  --text: #1a1a2e;
  --muted: #5a6a8a;
}

body {
  font-family: 'Noto Sans Thai', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* =========================================
   2. UTILITIES & TYPOGRAPHY
   ========================================= */
.seperator {
  display: block;
  height: 3px;
  width: 60px;
  background: var(--blue);
  border-radius: 2px;
}

.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-start;
}

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

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.12);
  transition: box-shadow 0.2s;
  border-bottom: 1px solid var(--blue-light);
  padding: 0 5%;
  height: 64px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header:hover {
  box-shadow: 0 2px 16px rgba(10, 31, 68, 0.18);
}

.header ul {
  display: none;
}

.header ul a,
.desktop-menu a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header ul a:hover,
.desktop-menu a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--blue-light) !important;
}

.logo {
  display: flex;
}

.logo img {
  align-items: center;
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Hamburger Menu Icon */
.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.line {
  width: 100%;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open .line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Drawer & Overlay */
.mobile-menu {
  list-style: none;
  background: #0a2450;
  position: fixed;
  right: 0;
  z-index: 99;
  width: 260px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  top: 64px;
  height: calc(100vh - 64px);
  padding: 1.5rem 2rem;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu li a {
  display: block;
  padding: 0.85rem 0;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.mobile-menu li:last-child a {
  border-bottom: none;
}

.mobile-menu li a:hover {
  color: white;
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}

.overlay.open {
  display: block;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
#hero {
  background: var(--navy);
  padding: 80px 5% 60px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--navy) 20%, transparent 100%),
    url('./images/Hero-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Prompt', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
}

.hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
}

.hidden-content {
  display: none !important;
}

.active-content {
  display: flex !important;
}

/* =========================================
   5. SERVICES SECTION
   ========================================= */
#services {
  background: var(--white);
  padding: 50px 5%;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1.5px solid #c9d6ff;
  border-radius: 12px;
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(10, 31, 68, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.3s, background 0.2s;
}

.service-item.soon {
  opacity: 0.5;
  filter: grayscale(0.5);
  cursor: default;
}

.service-item:not(.soon):hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.15);
  background: #e4eaff;
}

.service-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  border-radius: 10px;
}

.service-text h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.service-text p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   7. WHY CHOOSE US
   ========================================= */
#why {
  background: var(--navy);
  padding: 60px 5%;
  overflow: hidden;
  /* Prevents horizontal scroll bleed */
}

#why .section-label {
  color: #90b4ff;
}

#why .section-title {
  color: var(--white);
}

#why .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

/* Base wrapper style */
.why-carousel-wrapper {
  position: relative;
  width: 100%;
}

/* Container that sits between the two arrows */
.why-slides-container {
  flex: 1;
  position: relative;
}

/* Hide all slides by default */
.why-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

/* Only show the active slide. On mobile, stacks vertically */
.why-slide.active {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.why-left img {
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 25px 50px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  border-radius: 12px;
}

.why-left {
  flex: 1;
  min-width: 0;
}

.why-right {
  flex: 1;
  min-width: 0;
}

.why-right img {
  display: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2), 0 25px 50px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  border-radius: 12px;
}

.why-btn-container {
  display: flex;
  align-items: center;
  justify-content: end;
}

.why-btn {
  color: var(--blue);
  background: var(--white);
  border: 1.5px solid var(--blue);
  border-radius: 8px;
  padding: 0.6rem 1.25rem;
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  animation: bounceHorizontal 0.6s ease-in-out infinite alternate;
  transition: background 0.2s, border-color 0.2s;
}

.why-btn:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

@keyframes bounceHorizontal {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(12px);
  }
}

.why-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.25rem;
  padding-bottom: 1rem;
  /* Space for scrollbar */
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  scroll-behavior: smooth;
}

.why-grid::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.why-card {
  flex: 0 0 85%;
  /* 85% width so the next card peeks out */
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.2s;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26, 86, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Simple fade animation when changing pages */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (min-width: 992px) {
  /* Layout the wrapper to put buttons on the extreme sides */

}

/* =========================================
   8. PRICING SECTION
   ========================================= */
#pricing {
  background: var(--white);
  padding: 50px 5%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  border: 1.5px solid #e0e8ff;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  background: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 86, 219, 0.1);
}

.price-card.featured {
  border-color: var(--blue);
  background: var(--navy);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 4px;
}

.price-tier {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.price-card.featured .price-tier {
  color: rgba(255, 255, 255, 0.7);
}

.price-amount {
  font-family: 'Prompt', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-amount span {
  font-size: 1rem;
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-unit {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.price-card.featured .price-unit {
  color: rgba(255, 255, 255, 0.45);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, 0.65);
}

.price-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.price-card.featured .price-features li::before {
  color: var(--gold);
}

.btn-price {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.2s;
}

.btn-price-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
}

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

.btn-price-fill {
  background: var(--blue);
  color: var(--white);
}

.btn-price-fill:hover {
  background: var(--blue-light);
}

.pricing-note {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* =========================================
   FAQ SECTION
   ========================================= */
#faq {
  background: var(--navy);
  padding: 90px 5%;
}

#faq .section-label {
  color: #90b4ff;
}

#faq .section-title {
  color: var(--white);
}

#faq .section-sub {
  color: rgba(255, 255, 255, 0.55);
}

.faq-list {
  color: rgba(255, 255, 255, 0.55);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s
}

.faq-item.open {
  border-color: rgba(26, 86, 219, 0.6);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  color: var(--white);
  font-family: 'Noto Sans Thai', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.07);
}

.faq-item.open .faq-question {
  background: rgba(26, 86, 219, 0.15);
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 1.5rem 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9 rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0.75rem 0;
}

.faq-answer ul li {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

/* =========================================
   9. CONTACT SECTION
   ========================================= */
#contact {
  background: var(--bg);
  padding: 50px 5%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-item {
  display: inline-flex;
  gap: 1rem;
  align-items: flex-start;
  text-decoration: none;
}

.contact-ico {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-item-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item-val {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-card {
  background: var(--white);
  border: 1.5px solid #e0e8ff;
  border-radius: 14px;
  padding: 2rem;
}

.contact-card h3 {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.contact-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-checklist li {
  font-size: 0.88rem;
  color: var(--text);
  display: flex;
  gap: 0.6rem;
}

.contact-checklist li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  border: 1.5px solid #e0e8ff;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-group textarea {
  resize: vertical;
}

.btn-form-submit {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-form-submit:hover {
  background: var(--blue-light);
}

/* =========================================
   10. FOOTER
   ========================================= */
footer {
  background: var(--navy);
  padding: 3.5rem 5% 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
}

.footer-logo img {
  align-items: center;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Prompt', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.footer-links a,
.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-copyright {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.contact-ico-footer {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-ico-footer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* =========================================
   11. ANIMATION
   ========================================= */
.slide-in {
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.slide-in.slide-left {
  transform: translateX(-100px);
}

.slide-in.slide-right {
  transform: translateX(100px);
}

.slide-in.active {
  opacity: 1;
  transform: translateX(0);
}

/* =========================================
   12. MEDIA QUERIES (DESKTOP / 1200px+)
   ========================================= */
@media (min-width: 1200px) {

  /* Navigation */
  .header ul {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  /* Hero Section */
  #hero::before {
    background-image:
      linear-gradient(to right, var(--navy) 20%, transparent 100%),
      url('./images/Hero-banner.png');
    opacity: 1;
  }

  .hero-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-sub {
    max-width: 600px;
  }

  /* Services */
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }

  /* How It Works (If present in HTML) */
  .timeline {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 4rem;
  }

  .how-content {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .how-right {
    display: block;
    flex: 1;
  }

  .how-right img {
    width: 100%;
    border-radius: 16px;
  }

  .why-detail-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  .why-carousel-wrapper {
    display: block;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  /* The active slide becomes a row on desktop */
  .why-slide.active {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .why-left {
    flex: 1;
  }

  .why-left img {
    display: flex;
  }

  .why-right {
    flex: 1;
  }

  .why-right img {
    display: flex;
  }

  .why-grid {
    display: grid;
    /* Forces grid into 2 rows, columns are added automatically */
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    /* Calculates column width: 50% minus half the gap */
    grid-auto-columns: calc(50% - 0.625rem);
    overflow-x: hidden;
    /* Hide the scroll completely on desktop */
  }

  .why-card {
    flex: none;
    /* remove mobile flex */
    width: 100%;
    scroll-snap-align: start;
  }

  #why-prev {
    left: -3.5rem;
    animation: bounceRight 0.6s ease-in-out infinite alternate;
  }

  /*#why-next {
    animation: bounceLeft 0.6s ease-in-out infinite alternate,
      pulseBorder 1.2s ease-in-out infinite alternate;
  }*/

  /*
  @keyframes bounceRight {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(13px);
    }
  }

  @keyframes bounceLeft {
    from {
      transform: translateY(-50%) translateX(0);
    }

    to {
      transform: translateY(-50%) translateX(-10px);
    }
  }*/

  .why-slides-container {
    flex: 1;
    min-width: 0;
    position: relative;
    transition: width 0.4s ease, height 0.4s ease;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
  }

  .price-card.featured {
    transform: scale(1.05);
  }

  .price-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
  }

  /* Contact */
  #contact {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }

  /* Footer */
  .footer-links,
  .footer-contact {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
  }

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