/* ============================================
   Sheikh Auto Transport â€” Main Stylesheet
   ============================================ */

:root {
  --primary: #1B2264;
  --primary-dark: #0F1340;
  --primary-light: #2D3899;
  --accent: #ff0015;
  --accent-dark: #ff0015;
  --light-bg: #ECEDF8;
  --lighter-bg: #F5F5FC;
  --white: #FFFFFF;
  --text-dark: #1B2264;
  --text-body: #4A4E6A;
  --text-muted: #9098B1;
  --border: #E2E4F0;
  --shadow-sm: 0 4px 15px rgba(27, 34, 100, 0.08);
  --shadow-md: 0 8px 30px rgba(27, 34, 100, 0.12);
  --shadow-lg: 0 16px 50px rgba(27, 34, 100, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 100px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }

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

.topbar {
  background: var(--primary);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item i { color: var(--accent); font-size: 11px; }
.topbar-link { color: rgba(255,255,255,0.82); text-decoration: none; transition: color 0.2s; }
.topbar-link:hover { color: var(--accent); }
.topbar-sep { color: rgba(255,255,255,0.25); }

.sat-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(27,34,100,0.07);
  transition: var(--transition);
  z-index: 1030;
}
.sat-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(27,34,100,0.12);
}

/* Logo */
.sat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sat-logo-badge {
    flex-shrink: 0;
    background: #fff;
    border-radius: 100px;
}
.sat-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sat-logo-top {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.06em;
}
.sat-logo-bottom {
  font-size: 9.5px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.14em;
  opacity: 0.7;
}
/* Footer logo text white */
.footer-brand .sat-logo-top,
.footer-brand .sat-logo-bottom { color: #fff; opacity: 1; }
.footer-brand .sat-logo-bottom { opacity: 0.7; }

/* Nav links */
.sat-nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-body) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.sat-nav-link:hover,
.sat-nav-link.active {
  color: var(--primary) !important;
  background: var(--light-bg);
}
.sat-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

/* Quote button in nav */
.sat-btn-quote {
  background: var(--primary);
  color: #fff !important;
  border: none;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 13.5px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.sat-btn-quote:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(40,199,111,0.35);
}

/* Phone in nav */
.nav-phone {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.3;
  padding: 0 8px;
  border-left: 1px solid var(--border);
}
.nav-phone-icon {
  width: 34px; height: 34px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 13px;
  flex-shrink: 0;
}
.nav-phone small { font-size: 10px; color: var(--text-muted); font-weight: 400; }
.nav-phone strong { font-size: 14px; color: var(--primary); }

/* Hamburger toggler */
.sat-toggler {
  border: none;
  background: transparent;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.toggler-bar {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
@media (max-width: 991.98px) {
  .sat-navbar .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    margin: 10px -12px -10px;
    padding: 16px 20px 20px;
    box-shadow: 0 12px 30px rgba(27,34,100,0.1);
  }
  .sat-nav-link { padding: 10px 12px !important; border-radius: 8px; }
  .nav-cta { flex-direction: column; align-items: flex-start; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px; }
  .sat-btn-quote { width: 100%; justify-content: center; }
  .nav-phone { border-left: none; padding: 0; }
  .sat-nav-link.active::after { display: none; }
}

/* ---- Hero Section ---- */
.hero-section {
  padding-top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /*background: linear-gradient(135deg, #F8F8FF 0%, #ECEDF8 50%, #E8E9F8 100%);*/
    background: url(../images/header-bg.png);
    background-repeat: no-repeat;
    background-position-x: right;
    background-attachment: fixed;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(27,34,100,0.07) 0%, rgba(27,34,100,0.03) 100%);
}

.hero-bg-circle-1 {
  width: 700px; height: 700px;
  top: -200px; right: -150px;
}

.hero-bg-circle-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(42 52 143 / 8%);
  color: #1b2264;
  border: 1px solid rgb(27 34 100);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge i { font-size: 10px; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
  position: relative;
  color: var(--accent-dark);
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 30px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.stat-item { }
.stat-number { font-size: 26px; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.hero-image {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.hero-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  bottom: 24px; left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 3s ease-in-out infinite;
}

.hero-image-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.hero-image-badge strong { display: block; font-size: 15px; color: var(--primary); }
.hero-image-badge span { font-size: 12px; color: var(--text-muted); }

.hero-truck-svg {
  width: 100%;
  height: auto;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 25px rgba(27,34,100,0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px rgba(27,34,100,0.4);
  color: #fff;
}

.btn-primary-custom:hover::before { opacity: 1; }

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--primary);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Section Common ---- */
.section-badge {
  display: inline-block;
  background: rgba(27, 34, 100, 0.08);
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 50px;
}

/* ---- Services Section ---- */
.services-section {
  padding: 90px 0;
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

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

.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover { gap: 10px; color: var(--accent-dark); }

/* ---- Why Choose Us ---- */
.why-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.why-section .section-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.why-section .section-title { color: #fff; }
.why-section .section-subtitle { color: rgba(255,255,255,0.75); }

.why-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  height: 100%;
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-card h5 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin: 0; }

/* ---- How It Works ---- */
.how-section {
  padding: 90px 0;
  background: var(--lighter-bg);
  overflow-x: hidden;
}

.steps-container { position: relative; }

.step-connector {
  position: absolute;
  top: 40px;
  left: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 5%, var(--primary) 50%, var(--border) 100%);
  z-index: 0;
  transform: translateX(-50%);
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(27,34,100,0.35);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(27,34,100,0.2);
  animation: spinSlow 15s linear infinite;
}

.step-item h4 { font-size: 18px; margin-bottom: 10px; }
.step-item p { font-size: 14px; color: var(--text-body); max-width: 240px; margin: 0 auto; }

/* ---- Testimonials ---- */
.testimonials-section {
  padding: 90px 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.stars { color: #FFB800; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 15px; color: var(--primary); }
.author-location { font-size: 12px; color: var(--text-muted); }

/* ---- CTA Banner ---- */
.cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-section::before { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-section::after { width: 500px; height: 500px; bottom: -250px; right: -100px; }

.cta-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.8); margin-bottom: 30px; font-size: 17px; position: relative; z-index: 1; }
.cta-section .btn-wrapper { position: relative; z-index: 1; }

.btn-white {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius-pill);
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.3);
  color: var(--primary);
}

/* ---- FAQ Section ---- */
.faq-section {
  padding: 90px 0;
  background: var(--lighter-bg);
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  gap: 16px;
  user-select: none;
}

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 12px;
  color: var(--primary);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.active .faq-answer { max-height: 400px; }

/* ---- Trust Badges ---- */
.trust-section {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.trust-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
  flex-shrink: 0;
}

.trust-text strong { display: block; font-size: 15px; color: var(--primary); font-weight: 700; }
.trust-text span { font-size: 11px; color: var(--text-muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.site-footer { background: var(--primary-dark); }

.footer-top { padding: 70px 0 50px; }

.footer-desc {
  color: rgba(255,255,255,0.62);
  font-size: 13.5px;
  line-height: 1.8;
}

/* Contact list inside brand col */
.footer-contact-list {
  list-style: none;
  padding: 0; margin: 18px 0 0;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-list i {
  color: var(--accent);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-list a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--accent); }

/* Social icons */
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

/* Footer link columns */
.footer-links-col { }
.footer-col-title {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.footer-links-col ul {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links-col ul li { margin-bottom: 9px; }
.footer-links-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 13.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.footer-links-col ul li a i { font-size: 11px; color: var(--accent); }
.footer-links-col ul li a:hover { color: var(--accent); padding-left: 4px; }

/* Phone badge in footer */
.footer-phone-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: var(--transition);
}
.footer-phone-badge i { color: var(--accent); font-size: 13px; }
.footer-phone-badge:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: var(--accent);
}

/* Footer bottom bar */
.footer-bottom {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin: 0;
}
.footer-bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 12.5px; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-section {padding-top: 50px;min-height: auto;padding-bottom: 60px; background: linear-gradient(135deg, #F8F8FF 0%, #ECEDF8 50%, #E8E9F8 100%);}
  .hero-image {margin-top: 0;}
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 22px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .phone-text { display: none; }
  .services-section, .how-section, .testimonials-section,
  .faq-section, .why-section { padding: 60px 0; }
  .hero-subtitle {
    font-size: 14px;
}

.trust-item {
    flex-direction: column;
    text-align: center;
}

.section-title {
}

.section-subtitle {
    font-size: 14px;
}

.service-card {
    padding: 1rem;
}

.why-section::before {
    width: 300px;
    right: 0;
    height: 300px;
}

.btn-white {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
}

.cta-section h2 {
    font-size: 1.75rem;
}

.cta-section p {
    font-size: 14px;
}

section {
    padding: 2rem 0 !important;
}
.trust-text span {
    font-size: 11px;
}
}

@media (max-width: 576px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary-custom, .btn-outline-custom {width: 100%;justify-content: center;font-size: 14px;padding: 12px;}
  .trust-section .row > div + div {border-top: none;}
}

.sat-logo-badge img {
    width: 50px;
}