/* =============================================
   SWOT ALYNI TRANSPORT — styles.css (v3)
   ============================================= */

:root {
  --green: #3aaa5c;
  --green-dark: #2d8a4a;
  --gold: #b8882a;
  --gold-light: #d4a832;
  --dark: #1e1e1e;
  --dark2: #2c2c2c;
  --dark3: #383838;
  --gray-section: #f0f0f0;
  --gray-card: #9e9e9e;
  --border: #d8d8d8;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #777777;
  --radius: 10px;
  --T: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Kanit', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

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

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 999;
  background: transparent;
  display: flex;
  align-items: center;
  transition: background var(--T), box-shadow var(--T);
}

.navbar.scrolled {
  background: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  margin: 0;
  padding: 0 40px;
  width: 100%;
  max-width: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0;
  /* ซ่อนโลโก้ตอนอยู่บนสุด (เพราะติดโลโก้ในวิดีโอ) */
  transition: opacity 0.4s ease;
  pointer-events: none;
  /* ไม่ให้คลิกตอนที่มองไม่เห็น */
}

.navbar.scrolled .nav-logo {
  opacity: 1;
  /* แสดงโลโก้เมื่อเลื่อนลงมา */
  pointer-events: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  position: fixed;
  top: 0;
  right: -100%;
  /* ซ่อนไว้ด้านขวา */
  width: 300px;
  height: 100vh;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.nav-menu.open {
  right: 0;
  /* เลื่อนออกมาเมื่อกด */
}

.nav-menu a {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 15px 0;
  width: 100%;
  text-align: center;
  transition: color var(--T);
}

.nav-menu a:hover {
  color: #7deba0;
}

.hamburger {
  display: flex;
  /* แสดงตลอดเวลา */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
  transition: var(--T);
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger span {
  display: block;
  width: 32px;
  height: 3px;
  background: white;
  border-radius: 0;
  transition: var(--T);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   BANNER — เต็มจอ พร้อมวิดีโอ
   ============================================= */
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* พื้นหลังสีเทาเข้มเวลายังไม่มีวิดีโอ */
  background: #5a5a5a;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.banner-content h1 {
  font-size: clamp(1.8rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: 2px;
  /* ลดระยะห่างตัวอักษรเพื่อให้พอดี */
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  text-transform: uppercase;
}

.banner-sub {
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 4px;
  opacity: 0.7;
  margin-top: 10px;
}

/* =============================================
   ABOUT — พื้นขาว
   ============================================= */
.about {
  padding: 56px 0 60px;
  background: #ffffff;
}

.about-header-new {
  text-align: center;
  margin-bottom: 40px;
}

.about-title-centered {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 2px;
  color: var(--text);
}

.about-cards-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-card-outline {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  height: 120px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: transparent;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
  text-align: center;
}

.about-card-outline strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.about-card-outline p {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}

.card-icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2px;
}

.about-card-outline:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
}

/* 2-col grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.about-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  overflow: hidden;
  background: #fff;
  min-height: 420px;
}

.about-left.show {
  opacity: 1;
  transform: translateX(0);
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.about-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
  background: #f2f2f2;
  padding: 36px 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-right.show {
  opacity: 1;
  transform: translateX(0);
}

.about-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.about-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  overflow: hidden;
  flex-shrink: 0;
}

.about-logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-logo-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
}

.about-cards-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.about-stat-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.about-text-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-right h2 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.about-right p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-stats {
  display: flex;
  gap: 0;
  margin-bottom: 26px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 8px;
  border-right: 1.5px solid var(--border);
}

.stat:last-child {
  border-right: none;
}

.num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

.btn-green {
  display: inline-block;
  padding: 11px 28px;
  background: var(--green);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--T);
  box-shadow: 0 4px 14px rgba(58, 170, 92, 0.3);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(58, 170, 92, 0.38);
}

/* =============================================
   VEHICLES — พื้นเทาอ่อน
   ============================================= */
.vehicles {
  padding: 56px 0 60px;
  background: var(--gray-section);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.vehicle-img-box {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.13);
}

.vehicle-img-box.show {
  opacity: 1;
  transform: translateX(0);
}

.vehicle-img-box img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
}

.vehicle-info {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
}

.vehicle-info.show {
  opacity: 1;
  transform: translateX(0);
}

#main-vehicle-title,
#main-vehicle-desc {
  transition: opacity 0.4s ease-in-out;
}

.vehicle-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.vehicle-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 18px;
}

.vehicle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
}

.vehicle-list li {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text);
}

.btn-outline {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--T);
}

.btn-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   TRUCKS — พื้นขาว
   ============================================= */
.trucks {
  padding: 100px 0 60px;
  /* เพิ่ม padding บนเพื่อให้รูปรถมีที่ยื่นออกมา */
  background: var(--gray-section);
}

.trucks-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.truck-card {
  background: #000;
  border: 4px solid transparent;
  border-radius: 120px 120px 0 0;
  /* นำ overflow: hidden ออกเพื่อให้รูปยื่นได้ */
  position: relative;
  cursor: pointer;
  transition: transform var(--T), box-shadow var(--T), border-color var(--T);
  opacity: 0;
  transform: translateY(22px);
  padding: 0px 0 35px;
  /* ปรับ padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  /* เพิ่ม margin เพื่อให้รูปไม่ชนกัน */
}

.truck-card.active {
  border-color: var(--green);
  box-shadow: 0 0 25px rgba(58, 170, 92, 0.4);
}

.truck-card.show {
  opacity: 1;
  transform: translateY(0);
}

.truck-card:nth-child(2) {
  transition-delay: 0.1s;
}

.truck-card:nth-child(3) {
  transition-delay: 0.2s;
}

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

.truck-card img {
  width: 110%;
  /* ขยายรูปให้ใหญ่นิดนึง */
  height: auto;
  object-fit: contain;
  margin-top: -70px;
  /* ดันรูปขึ้นไปข้างบนกรอบดำ */
  margin-bottom: 5px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  /* เพิ่มเงาให้รูปดูมีมิติ */
}

.truck-cap {
  color: white;
  text-align: center;
}

.truck-cap strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.truck-cap span {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.95;
}

.cta-bar {
  text-align: center;
}

.cta-bar-btn {
  display: inline-block;
  padding: 16px 80px;
  background: #4a4a4a;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: var(--T);
}

.cta-bar-btn:hover {
  background: #333;
}

/* =============================================
   SERVICE GRID 2x2
   ============================================= */

.sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  /* ช่องว่างบางระหว่างช่อง */
  background: #ccc;
  /* สีช่องว่าง */
}

.sg-item {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease, filter 0.25s ease;
}

.sg-item.show {
  opacity: 1;
  transform: translateY(0);
}

.sg-item:nth-child(2).show {
  transition-delay: 0.08s;
}

.sg-item:nth-child(3).show {
  transition-delay: 0.15s;
}

.sg-item:nth-child(4).show {
  transition-delay: 0.22s;
}

.sg-item:hover {
  filter: brightness(1.12);
}

/* รูปภาพ */
.sg-item.photo {
  background-size: cover;
  background-position: center;
}

.sg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.sg-item>span {
  position: relative;
  z-index: 1;
  color: white;
  font-size: 1.45rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ช่องสีเทาเข้ม */
.sg-item.dark {
  background: var(--gray-card);
}

.sg-item.dark:nth-child(2) {
  background: #b0b0b0;
}

.sg-item.dark:nth-child(3) {
  background: #9a9a9a;
}

.sg-item.dark:nth-child(4) {
  background: #8a8a8a;
}

/* =============================================
   CONTACT — NEW MOCKUP STYLE
   ============================================= */
.contact {
  padding-top: 80px;
  /* ช่องว่างจาก section บน */
  background: var(--gray-section);
  padding-bottom: 80px;
}

.contact-new-box {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  max-width: 1024px;
  margin: 0 auto;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 550px;
}

/* ฝั่งซ้าย — สีทองน้ำตาลเข้ม (Brown Gradient) */
.contact-left-panel {
  background: linear-gradient(160deg, #9b7241 0%, #6d4d2a 100%);
  padding: 60px 40px;
  color: white;
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.swot-label-box {
  text-align: right;
  margin-bottom: 40px;
  padding-right: 20px;
}

.swot-label-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.swot-label-box p {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.8;
}

.mini-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.mini-form input {
  background: #d9e6ff;
  /* สีฟ้าอ่อนแบบในรูป */
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Kanit', sans-serif;
  font-size: 0.95rem;
  color: #333;
  outline: none;
}

.mini-form input::placeholder {
  color: #7a8ba3;
  opacity: 0.7;
}

.contact-bottom-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: auto;
}

.info-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.icon-placeholder {
  width: 60px;
  height: 45px;
  background: #ccc;
  /* สีเทาตามรูป */
  border-radius: 4px;
}

.icon-line {
  width: 50px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* ฝั่งขวา — สีขาว */
.contact-right-panel {
  background: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.data-text {
  margin: auto;
  font-size: 0.95rem;
  color: #333;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}

/* Social Media Bar */
.social-media-footer {
  background: linear-gradient(90deg, #9b7241 0%, #6d4d2a 100%);
  border-radius: 60px 60px 0 0;
  padding: 20px 20px;
  /* ลด Padding นิดนึงเพื่อให้มีพื้นที่ข้างในมากขึ้น */
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* กันของที่ล้นออกมา (ถ้ามี) */
}

.social-header {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* ลด Gap ลงกันล้น */
  align-items: center;
  flex-wrap: wrap;
  /* เผื่อกรณีจอมือถือเล็กมากให้ลงแถวใหม่ได้ */
}

.social-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  /* ลด Gap ระหว่างปุ่มกับเส้น */
}

.fs-circle {
  width: 38px;
  /* ลดขนาดลงนิดนึงเพื่อให้พอดีขอบ */
  height: 38px;
  background: white;
  border-radius: 10px;
  /* โค้งมนแบบในรูป */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.fs-circle svg {
  width: 20px;
  height: 20px;
}

.fs-circle.fb {
  background: #1877f2;
}

.fs-circle.ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.fs-circle.tt {
  background: #000;
}

.social-line {
  width: 50px;
  /* ลดความยาวเส้นลงเพื่อให้ทุกอย่างอยู่ในกรอบพอดี */
  height: 12px;
  background: #dcdcdc;
  /* สีเทาตามรูปเป๊ะๆ */
  border-radius: 2px;
}

@media (max-width: 768px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .social-media-footer {
    position: relative;
    border-radius: 0;
    margin-top: 40px;
  }

  .contact-bottom-row {
    margin-bottom: 40px;
  }
}

/* =============================================
   FOOTER — สีเข้ม
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 20px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-left span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 300;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-label {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.fs-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  transition: transform var(--T);
}

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

.fs-btn.fb {
  background: #1877f2;
}

.fs-btn.ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fs-btn.tt {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 13px 24px;
  text-align: center;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.72rem;
  font-weight: 300;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(12, 12, 12, 0.97);
    flex-direction: column;
    padding: 74px 24px 40px;
    gap: 0;
    transition: right 0.35s ease;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-menu a {
    display: block;
    padding: 13px 0;
    font-size: 0.95rem;
  }

  .about-grid,
  .vehicles-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-photo {
    height: 280px;
  }

  .trucks-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .truck-card img {
    height: 210px;
  }

  .sg-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .sg-item {
    height: 175px;
  }

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

  .contact-left,
  .contact-right {
    padding: 36px 24px;
  }

  .about-title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-stats {
    border-radius: var(--radius);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width:480px) {
  .banner-content h1 {
    font-size: 2.8rem;
    letter-spacing: 4px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .stat {
    padding: 14px 6px;
  }
}