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

html {
  scroll-behavior: smooth
}

.bg-dark { background: #1a1a2e !important; }
.text-white { color: #fff !important; }
.text-gray { color: rgba(255, 255, 255, 0.7) !important; }

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

.section-pad {
  padding: 80px 0
}

.gradient-text {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 8px 0 16px
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7
}

.section-header.light h2 {
  color: #fff
}

.section-header.light p {
  color: rgba(255, 255, 255, .75)
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 4px 16px;
  border-radius: 30px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .3s ease;
  cursor: pointer;
  border: none
}

.btn-primary {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, .5)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .7)
}

.btn-outline:hover {
  background: #fff;
  color: #ff6b35;
  border-color: #fff
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1a1a2e;
  padding: 8px 0;
  font-size: .82rem
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px
}

.top-bar-left {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, .8)
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px
}

.top-bar-left i {
  color: #ff6b35
}

.top-bar-right {
  display: flex;
  gap: 12px
}

.top-bar-right a {
  color: rgba(255, 255, 255, .7);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.top-bar-right a:hover {
  background: #ff6b35;
  color: #fff
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  transition: all .3s
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0
}

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

.logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2
}

.logo-sub {
  font-size: .65rem;
  color: #ff6b35;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px
}

/* Logo image styles */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block
}

.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 14px
}

.footer-logo {
  margin-bottom: 0
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: #444;
  transition: all .3s;
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff6b35;
  background: rgba(255, 107, 53, .08)
}

.nav-dropdown {
  position: relative
}

.dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12);
  padding: 10px;
  min-width: 200px;
  z-index: 200
}

.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: .85rem;
  color: #444
}

.dropdown-menu a:hover {
  background: rgba(255, 107, 53, .08);
  color: #ff6b35
}

.nav-dropdown:hover .dropdown-menu {
  display: block
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a2e;
  border-radius: 2px;
  transition: all .3s
}

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

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: url('images/hero-bg.png') center/cover no-repeat;
  color: #fff
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, .92) 0%, rgba(26, 26, 46, .75) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 120px 20px 80px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, .2);
  border: 1px solid rgba(255, 107, 53, .4);
  color: #f7931e;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 20px
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif
}

.hero-quote {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
  border-left: 3px solid #ff6b35;
  padding-left: 16px
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap
}

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

.hstat span {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35
}

.hstat small {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  margin-top: -4px
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite
}

.hero-scroll i {
  color: rgba(255, 255, 255, .6);
  font-size: 1.2rem
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ===== WHO WE ARE ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.who-img {
  position: relative
}

.who-img img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border-radius: 16px;
  padding: 16px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 107, 53, .4)
}

.exp-badge span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1
}

.exp-badge small {
  font-size: .75rem;
  font-weight: 500
}

.who-content h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif
}

.who-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: .95rem
}

.who-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0 28px
}

.wf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: .9rem;
  font-weight: 500
}

.wf-item i {
  color: #ff6b35;
  font-size: .9rem
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  padding: 50px 0
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center
}

.stat-card {
  color: #fff;
  padding: 10px
}

.stat-card i {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: .9
}

.stat-card span {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1
}

.stat-card p {
  font-size: .9rem;
  opacity: .85;
  margin-top: 6px
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #f0f0f0;
  transition: all .35s;
  position: relative;
  overflow: hidden
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  transform: scaleX(0);
  transition: transform .3s
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  border-color: transparent
}

.service-card:hover::before {
  transform: scaleX(1)
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, .1), rgba(247, 147, 30, .1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all .3s
}

.service-icon i {
  font-size: 1.5rem;
  color: #ff6b35
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e)
}

.service-card:hover .service-icon i {
  color: #fff
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px
}

.service-card p {
  color: #666;
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 18px
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff6b35;
  font-size: .85rem;
  font-weight: 600;
  transition: gap .3s
}

.service-link:hover {
  gap: 10px
}

/* ===== PROCESS ===== */
.process {
  background: #f8f9ff
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: all .3s
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .1)
}

.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, .1), rgba(247, 147, 30, .1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 16px;
  font-size: 1.4rem;
  color: #ff6b35
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px
}

.process-step p {
  font-size: .83rem;
  color: #666;
  line-height: 1.6
}

.process-connector {
  flex: 0 0 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #f7931e);
  margin-top: 70px;
  position: relative
}

.process-connector::after {
  content: '▶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #f7931e;
  font-size: .7rem
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%)
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.why-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all .35s;
  text-align: center
}

.why-card:hover {
  background: rgba(255, 107, 53, .1);
  border-color: rgba(255, 107, 53, .3);
  transform: translateY(-4px)
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 107, 53, .2), rgba(247, 147, 30, .2));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: #ff6b35
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px
}

.why-card p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.7
}

/* ===== FAQ + CONTACT ===== */
.faq-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.faq-side h2,
.contact-side h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a2e;
  margin: 8px 0 28px;
  font-family: 'Poppins', sans-serif
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .3s
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(255, 107, 53, .1);
  border-color: #ffcdb8
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .9rem;
  font-weight: 600;
  color: #1a1a2e;
  gap: 12px;
  transition: background .3s
}

.faq-item.open .faq-q {
  background: linear-gradient(135deg, rgba(255, 107, 53, .05), rgba(247, 147, 30, .05));
  color: #ff6b35
}

.faq-q i {
  font-size: .8rem;
  transition: transform .3s;
  flex-shrink: 0;
  color: #ff6b35
}

.faq-item.open .faq-q i {
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  padding: 0 20px 16px;
  color: #666;
  font-size: .88rem;
  line-height: 1.7
}

.faq-item.open .faq-a {
  display: block
}

.contact-side {
  background: #f8f9ff;
  border-radius: 20px;
  padding: 36px 32px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: #444
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .3s;
  background: #fff;
  outline: none
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, .1)
}

.form-group textarea {
  resize: vertical
}

.form-success {
  display: none;
  text-align: center;
  color: #22c55e;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 14px;
  gap: 8px
}

.form-success i {
  font-size: 1.1rem
}

/* ===== LOCATIONS ===== */
.locations {
  background: #f8f9ff
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

.loc-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  border: 1px solid #eee;
  transition: all .3s;
  cursor: pointer
}

.loc-card:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, .3)
}

.loc-card:hover i,
.loc-card:hover span {
  color: #fff
}

.loc-card i {
  font-size: 1.4rem;
  color: #ff6b35;
  display: block;
  margin-bottom: 8px
}

.loc-card span {
  font-size: .88rem;
  font-weight: 600;
  color: #1a1a2e
}

/* ===== FOOTER ===== */
.footer {
  background: #0d0d1a;
  color: #aaa;
  padding: 70px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px
}

.footer-brand .footer-logo .logo-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e)
}

.footer-brand .logo-main {
  color: #fff
}

.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 20px
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  margin-bottom: 10px
}

.footer-contact i {
  color: #ff6b35;
  margin-top: 3px;
  flex-shrink: 0
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all .3s;
  font-size: .85rem
}

.footer-socials a:hover {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff
}

.footer-col h4 {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 2px
}

.footer-col ul li {
  margin-bottom: 9px
}

.footer-col ul li a {
  font-size: .84rem;
  color: #aaa;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 6px
}

.footer-col ul li a::before {
  content: '›';
  color: #ff6b35;
  font-size: 1rem
}

.footer-col ul li a:hover {
  color: #ff6b35;
  padding-left: 4px
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 20px 0;
  text-align: center;
  font-size: .83rem
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255, 107, 53, .4);
  transition: transform .3s
}

.back-top:hover {
  transform: translateY(-3px)
}

.back-top.show {
  display: flex
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .who-img {
    max-width: 500px;
    margin: 0 auto
  }

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

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

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

  .locations-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
  }
}

@media(max-width:768px) {
  .top-bar-left {
    display: none
  }

  .nav-logo-img {
    height: 40px
  }

  .footer-logo-img {
    height: 40px
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 24px 40px;
    z-index: 999;
    overflow-y: auto;
    gap: 4px
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    border-bottom: 1px solid #f5f5f5
  }

  .nav-dropdown .dropdown-menu {
    display: block;
    position: static;
    box-shadow: none;
    padding: 4px 0 4px 20px
  }

  .hamburger {
    display: flex;
    z-index: 1000;
    position: relative
  }

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

  .hero-btns {
    flex-direction: column
  }

  .hero-btns .btn {
    text-align: center;
    justify-content: center
  }

  .hero-stats {
    gap: 20px
  }

  .services-grid {
    grid-template-columns: 1fr
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px
  }

  .process-connector {
    display: none
  }

  .process-step {
    max-width: 100%;
    width: 100%
  }

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

  .form-row {
    grid-template-columns: 1fr
  }

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

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

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

  .section-pad {
    padding: 50px 0
  }

  .section-header h2 {
    font-size: 1.7rem
  }

  .exp-badge {
    bottom: -10px;
    right: 0
  }

  .contact-side {
    padding: 24px 20px
  }
}

@media(max-width:480px) {
  .hero-content {
    padding: 100px 20px 60px
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-content h1 {
    font-size: 1.75rem
  }

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

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