/* ============================================================
   Swastik Relocation Packers and Movers - Main Stylesheet
   ============================================================ */

:root {
  --primary: #7daacb;
  --primary-dark: #5a8ab0;
  --primary-light: #a8c6de;
  --secondary: rgb(247, 234, 194);
  --secondary-dark: rgb(236, 218, 160);
  --bg: #fffdeb;
  --accent: #ce2626;
  --accent-dark: #a81e1e;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-light: #6b6b8a;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(125, 170, 203, 0.12);
  --shadow-md: 0 8px 30px rgba(125, 170, 203, 0.18);
  --shadow-lg: 0 20px 60px rgba(125, 170, 203, 0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent);
}

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

.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 50px 0;
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--text-dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 6px 0;
}
.top-bar a {
  color: #ccc;
}
.top-bar a:hover {
  color: var(--secondary);
}
.top-bar .top-bar-left span,
.top-bar .top-bar-right span {
  margin-right: 18px;
}
.top-bar i {
  margin-right: 5px;
  color: var(--primary-light);
}
.phone-icon-right {
  display: inline-block;
  transform: scaleX(-1);
}
.btn-call .fa-phone,
.btn-call .fa-phone-alt,
.btn-submit .fa-phone,
.btn-submit .fa-phone-alt,
.btn-cta-white .fa-phone,
.btn-cta-white .fa-phone-alt,
.btn-primary-c .fa-phone,
.btn-primary-c .fa-phone-alt,
.btn-accent .fa-phone,
.btn-accent .fa-phone-alt {
  display: inline-block;
  transform: scaleX(-1);
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white) !important;
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 6px 0;
}
.navbar-brand img {
  height: 58px;
  width: auto;
}
.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-dark) !important;
  padding: 8px 14px !important;
  letter-spacing: 0.02em;
  transition: var(--transition);
  border-radius: 6px;
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent) !important;
  background: rgba(206, 38, 38, 0.06);
}
.navbar .btn-call {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 22px !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: pulse-btn 2s infinite;
}
.navbar .btn-call:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

@keyframes pulse-btn {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(206, 38, 38, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(206, 38, 38, 0);
  }
}

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--white);
  min-width: 220px;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown-item {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 8px;
  padding: 8px 14px;
}
.dropdown-item:hover {
  background: var(--primary);
  color: var(--white);
}
.dropdown-item:hover i {
  color: var(--white) !important;
}

/* ---- HERO ---- */
.hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><circle cx="200" cy="150" r="300" fill="rgba(125,170,203,0.05)"/><circle cx="1300" cy="600" r="250" fill="rgba(125,170,203,0.05)"/><circle cx="800" cy="400" r="200" fill="rgba(206,38,38,0.04)"/></svg>')
    no-repeat center/cover;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 20%,
      rgba(125, 170, 203, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(232, 219, 179, 0.06) 0%,
      transparent 50%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(125, 170, 203, 0.15);
  border: 1px solid rgba(125, 170, 203, 0.3);
  color: var(--primary-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-section h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-section h1 span {
  color: var(--secondary);
}
.hero-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--secondary);
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  animation: slideInRight 0.7s ease;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-form-card h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.hero-form-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ---- FORM STYLES ---- */
.form-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-mid);
  margin-bottom: 5px;
}
.form-control,
.form-select {
  border: 1.5px solid #e0e0ef;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: "Nunito", sans-serif;
  background: #fafafe;
  transition: var(--transition);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(125, 170, 203, 0.2);
  background: var(--white);
}
.btn-submit {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  width: 100%;
  transition: var(--transition);
  cursor: pointer;
}
.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(206, 38, 38, 0.35);
}
.enquiry-form-grid {
  display: block;
}
.form-alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  font-weight: 700;
}
.form-alert-success {
  background: rgba(30, 157, 80, 0.12);
  border: 1px solid rgba(30, 157, 80, 0.2);
  color: #157347;
}
.form-alert-error {
  background: rgba(206, 38, 38, 0.08);
  border: 1px solid rgba(206, 38, 38, 0.2);
  color: var(--accent-dark);
}

/* ---- SECTION HEADINGS ---- */
.section-heading {
  margin-bottom: 50px;
}
.section-heading .badge-label {
  display: inline-block;
  background: rgba(125, 170, 203, 0.12);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  border: 1px solid rgba(125, 170, 203, 0.25);
}
.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-heading h2 span {
  color: var(--accent);
}
.section-heading p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
}
.section-heading.centered {
  text-align: center;
}
.section-heading.centered p {
  margin: 0 auto;
}

/* ---- WHY CHOOSE US ---- */
.why-us-section {
  background: var(--white);
}
.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1.5px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.feature-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.5rem;
  color: var(--white);
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  transform: rotate(5deg) scale(1.1);
}
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- SERVICES SECTION ---- */
.services-section {
  background: var(--bg);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 1.5px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-card-img {
  height: 200px;
  background-color: #d9e6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-media-link {
  display: block;
  color: inherit;
}
.card-media-link:hover {
  color: inherit;
}
.card-image-cover {
  background-image:
    linear-gradient(180deg, rgba(15, 25, 35, 0.08), rgba(15, 25, 35, 0.22)),
    var(--card-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.service-card-body h3 a {
  color: var(--text-dark);
}
.service-card-body h3 a:hover {
  color: var(--accent);
}
.service-card-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: var(--transition);
}
.btn-service:hover {
  color: var(--accent);
  gap: 10px;
}

/* ---- PROCESS SECTION ---- */
.process-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.process-section .section-heading h2 {
  color: var(--white);
}
.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.6);
}
.process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
}
.process-step-num {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(125, 170, 203, 0.4);
}
.process-step h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}
.process-connector {
  position: absolute;
  top: 65px;
  right: -20%;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-light), transparent);
}

/* ---- LOCATIONS SECTION ---- */
.locations-section {
  background: var(--white);
}
.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid #e8e8f0;
  color: var(--text-mid);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.location-card-link {
  width: 100%;
  justify-content: flex-start;
}
.location-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.location-pill i {
  font-size: 0.8rem;
  color: var(--accent);
}
.location-pill:hover i {
  color: var(--white);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--bg);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
}
.stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
}
.reviewer-info h6 {
  font-size: 0.88rem;
  margin: 0 0 2px;
}
.reviewer-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ---- BLOG SECTION ---- */
.blog-section {
  background: var(--white);
}
.blog-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-card-img {
  height: 190px;
  background-color: #d9e6f1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(0, 0, 0, 0.24) 100%);
}
.blog-card-body {
  padding: 22px;
}
.blog-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}
.blog-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.blog-meta i {
  margin-right: 4px;
  color: var(--primary);
}
.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body h2 a,
.blog-card-body h3 a {
  color: var(--text-dark) !important;
}
.blog-card-body h2 a:hover,
.blog-card-body h3 a:hover {
  color: var(--accent) !important;
}
.blog-card-body p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* ---- CTA STRIP ---- */
.cta-strip {
  background: linear-gradient(135deg, var(--accent) 0%, #a81e1e 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "🚛";
  position: absolute;
  font-size: 12rem;
  opacity: 0.07;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}
.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}
.btn-cta-white {
  background: var(--white);
  color: var(--accent);
  border-radius: 50px;
  padding: 14px 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-cta-white:hover {
  background: var(--secondary);
  color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--bg);
}
.accordion-item {
  border: 1.5px solid #e8e8f0 !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion-button {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 18px 20px;
}
.accordion-button:not(.collapsed) {
  color: var(--primary-dark) !important;
  background: rgba(125, 170, 203, 0.06) !important;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: none;
}
.accordion-button:focus {
  box-shadow: none !important;
}
.accordion-body {
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 16px 20px;
  background: var(--white);
}

/* ---- FOOTER ---- */
.footer-main {
  background: #0f1923;
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px;
}
.footer-brand img {
  height: 65px;
  margin-bottom: 16px;
  background: #fff;
  padding: 5px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-heading {
  font-size: 0.88rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: "›";
  color: var(--primary-light);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-contact-item .icon {
  width: 34px;
  height: 34px;
  background: rgba(125, 170, 203, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.footer-contact-item .text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-item .text strong {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  margin-bottom: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  margin-top: 40px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a:hover {
  color: var(--primary-light);
}

/* ---- FLOATING BUTTONS ---- */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: var(--transition);
  animation: floatPulse 3s infinite;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  color: var(--white);
}
@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
  }
}
.float-call {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 6px 24px rgba(206, 38, 38, 0.4);
  z-index: 990;
  transition: var(--transition);
}
.float-call:hover {
  transform: scale(1.1);
  
}

/* ---- PAGE HERO (Inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  padding: 70px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(125, 170, 203, 0.1) 0%,
    transparent 60%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.35);
}
.breadcrumb-item a {
  color: var(--primary-light);
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.5);
}

/* ---- ABOUT PAGE ---- */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-box .num {
  font-size: 2rem;
  font-weight: 800;
  display: block;
}
.about-badge-box .lbl {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.stat-box:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
}
.stat-box .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
}
.stat-box .lbl {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ---- SERVICE DETAIL PAGE ---- */
.service-detail-section {
  background: var(--bg);
}
.service-sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.sidebar-stack {
  position: sticky;
  top: 104px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar-heading {
  color: var(--text-dark) !important;
  margin-bottom: 18px;
}
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav li {
  margin-bottom: 6px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-mid);
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.sidebar-nav a i {
  font-size: 0.8rem;
}
.sidebar-cta {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.sidebar-cta-title {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sidebar-cta-number {
  color: var(--white);
  font-size: 1.7rem;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}
.sidebar-cta-number:hover {
  color: var(--white);
}
.sidebar-cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  margin: 10px 0 0;
}
.service-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid #e8e8f0;
  height: 100%;
}
.service-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.service-info-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin: 0;
}
.service-info-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.service-benefits {
  padding-left: 20px;
  line-height: 2;
  font-size: 0.92rem;
}
.service-price-table {
  font-size: 0.9rem;
}
.service-price-table thead {
  background: var(--primary);
  color: #fff;
}
.location-pill-wide {
  font-size: 0.82rem;
  padding: 8px 14px;
}

/* ---- CONTACT PAGE ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--primary-light);
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

/* ---- BLOG PAGE ---- */
.blog-listing-section {
  background: var(--bg);
}
.blog-detail-section {
  background: var(--bg);
}
.blog-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.page-featured-media {
  margin-bottom: 28px;
}
.page-featured-image {
  width: 100%;
  height: auto;
  min-height: 260px;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}
.blog-article h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.blog-article h2 {
  font-size: 1.4rem;
  margin: 30px 0 12px;
  color: var(--primary-dark);
}
.blog-article h3 {
  font-size: 1.15rem;
  margin: 24px 0 10px;
}
.blog-article p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.blog-article ul,
.blog-article ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.blog-article ul li,
.blog-article ol li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ---- LOCALITY PAGE ---- */
.locality-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.locality-service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  border: 1.5px solid #e8e8f0;
  transition: var(--transition);
}
.locality-service-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.locality-service-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.locality-service-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- UTILITIES ---- */
.text-accent {
  color: var(--accent) !important;
}
.text-primary-c {
  color: var(--primary-dark) !important;
}
.bg-primary-c {
  background-color: var(--primary) !important;
}
.bg-accent {
  background-color: var(--accent) !important;
}
.border-primary-c {
  border-color: var(--primary) !important;
}

.btn-primary-c {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-primary-c:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 10px 26px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  display: inline-block;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 4px;
  margin: 14px 0 20px;
}
.divider.centered {
  margin: 14px auto 20px;
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-form-card {
    margin-top: 40px;
  }
  .process-connector {
    display: none;
  }
  .about-badge-box {
    position: static;
    margin-top: 16px;
  }
  .contact-form-card {
    padding: 24px;
  }
  .sidebar-stack {
    position: static;
  }
}
@media (min-width: 992px) {
  .hero-form-card .enquiry-form-hero .enquiry-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }
}
@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }
  
  .hero-stats {
    gap: 20px;
  }
  .float-whatsapp {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
  .float-call {
    bottom: 80px;
    right: 18px;
  }
  .blog-article {
    padding: 24px 18px;
  }
  .page-featured-image {
    min-height: 200px;
  }
}

/* ---- GSTIN badge ---- */
.gstin-badge {
  display: inline-block;
  background: rgba(125, 170, 203, 0.1);
  border: 1px solid rgba(125, 170, 203, 0.25);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed;
  bottom: 160px;
  right: 30px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 980;
  box-shadow: var(--shadow-sm);
}
#backToTop.show {
  opacity: 1;
  pointer-events: all;
}
#backToTop:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
