/*
Theme Name: Shahi Trucking
Theme URI: https://shahitrucking.com
Author: Shahi Trucking Inc.
Author URI: https://shahitrucking.com
Description: A modern, professional trucking company WordPress theme with fully editable sections via WordPress Customizer.
Version: 1.3.0
License: GNU General Public License v2 or later
Text Domain: shahi-trucking
Tags: trucking, logistics, transport, business
*/

/* ===================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
=================================================== */
:root {
  --color-primary: #0077E6;
  --color-primary-dark: #005BB5;
  --color-primary-light: #3399FF;
  --color-dark: #0D0D0D;
  --color-dark-2: #1A1A2E;
  --color-white: #FFFFFF;
  --color-light: #F0F7FF;
  --color-light-2: #E8F1FB;
  --color-gray: #555555;
  --color-gray-light: #AAAAAA;
  --color-border: #D6E4F5;
  --color-overlay: rgba(0, 0, 0, 0.55);

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 119, 230, 0.10);
  --shadow-md: 0 6px 24px rgba(0, 119, 230, 0.18);
  --shadow-lg: 0 16px 48px rgba(0, 119, 230, 0.22);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.25);

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.55s cubic-bezier(0.23, 1, 0.32, 1);

  --container-width: 1200px;
  --header-height: 80px;
}

/* ===================================================
   RESET & BASE
=================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray);
  background: var(--color-white);
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===================================================
   TYPOGRAPHY
=================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

/* ===================================================
   CONTAINER
=================================================== */
.shahi-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===================================================
   BUTTONS
=================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Ripple effect */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.5);
  transition: transform var(--transition-slow), opacity var(--transition-med);
  z-index: -1;
}

.btn:hover::after {
  opacity: 1;
  transform: scale(1);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0, 119, 230, 0.35);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 119, 230, 0.5);
  color: var(--color-white);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.btn-dark:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

/* Arrow icon in button */
.btn .btn-arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* ===================================================
   SECTION STYLES
=================================================== */
.shahi-section {
  padding: 90px 0;
}

.shahi-section--dark {
  background: var(--color-dark-2);
  color: var(--color-white);
}

.shahi-section--dark h2,
.shahi-section--dark h3,
.shahi-section--dark h4 {
  color: var(--color-white);
}

.shahi-section--light {
  background: var(--color-light);
}

.shahi-section--blue {
  background: var(--color-primary);
  color: var(--color-white);
}

.shahi-section--blue h2,
.shahi-section--blue h3 {
  color: var(--color-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0, 119, 230, 0.1);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  max-width: 640px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: 1.05rem;
}

/* ===================================================
   ANIMATE ON SCROLL
=================================================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.88);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* ===================================================
   HEADER
=================================================== */
.shahi-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-dark);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.shahi-header.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.shahi-header .shahi-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

/* ── Logo wrapper (div now, not <a>, to avoid nested <a> with WP custom logo) ── */
.shahi-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

/* WordPress outputs .custom-logo-link as the <a> inside .shahi-logo */
.shahi-logo .custom-logo-link,
.shahi-logo .shahi-logo-fallback {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.shahi-logo .custom-logo-link:hover,
.shahi-logo .shahi-logo-fallback:hover {
  opacity: 0.85;
}

/* The actual logo image — show white version on dark header for better visibility */
.shahi-logo img,
.shahi-logo .custom-logo {
  height: 58px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  /* Turns logo white */
  transition: transform var(--transition-fast);
}

.shahi-logo .custom-logo-link:hover img,
.shahi-logo .shahi-logo-fallback:hover img {
  filter: none;
  /* Yeh filter ko hata dega aur original color dikhayega */
  transform: scale(1.04);
  /* Pehle se maujood scale effect */
}

.shahi-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  /* Allow nav to shrink on medium screens so logo & CTA fit */
  flex: 1;
  justify-content: center;
}

/* Target both walker-generated links AND fallback links */
.shahi-nav a,
.shahi-nav .shahi-nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.shahi-nav a::after,
.shahi-nav .shahi-nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition-med);
}

.shahi-nav a:hover,
.shahi-nav .shahi-nav-link:hover,
.shahi-nav a.current-menu-item,
.shahi-nav .shahi-nav-link.current-menu-item {
  color: var(--color-primary);
}

.shahi-nav a:hover::after,
.shahi-nav .shahi-nav-link:hover::after,
.shahi-nav a.current-menu-item::after,
.shahi-nav .shahi-nav-link.current-menu-item::after {
  width: 100%;
}

.shahi-header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.shahi-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.shahi-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.shahi-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.shahi-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.shahi-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.shahi-mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-dark);
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 999;
  flex-direction: column;
  gap: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--transition-med);
}

.shahi-mobile-nav.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.shahi-mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.shahi-mobile-nav a:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

/* ===================================================
   FOOTER
=================================================== */
.shahi-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
}

.shahi-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shahi-footer-brand .shahi-logo img {
  filter: brightness(0) invert(1);
  height: 48px;
  margin-bottom: 1rem;
}

.shahi-footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.shahi-footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.2rem;
}

.shahi-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.shahi-footer-col ul li a,
.shahi-footer-col ul li span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.shahi-footer-col ul li a:hover {
  color: var(--color-primary);
  padding-left: 6px;
}

.shahi-footer-col ul li i {
  margin-top: 4px;
  flex-shrink: 0;
}

.shahi-social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.shahi-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.shahi-social-links a:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.shahi-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.shahi-footer-bottom a {
  color: var(--color-primary);
}

/* ===================================================
   BACK TO TOP BUTTON
=================================================== */
.shahi-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition-med);
  z-index: 999;
}

.shahi-back-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.shahi-back-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
}

/* ===================================================
   HERO SECTION
=================================================== */
.shahi-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
  padding-top: var(--header-height);
}

.shahi-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.82) 0%,
      rgba(0, 119, 230, 0.35) 100%);
}

.shahi-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.shahi-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 119, 230, 0.2);
  border: 1px solid rgba(0, 119, 230, 0.5);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}

.shahi-hero h1 {
  color: var(--color-white);
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.shahi-hero h1 span {
  color: var(--color-primary-light);
}

.shahi-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  animation: fadeInUp 0.9s 0.4s ease both;
}

.shahi-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s ease both;
}

.shahi-hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  animation: fadeInUp 0.9s 0.8s ease both;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat-num span {
  color: var(--color-primary-light);
}

.hero-stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.25rem;
}

/* Scroll indicator */
.shahi-hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}

.shahi-hero-scroll span {
  font-size: 1.5rem;
}

/* ===================================================
   ABOUT/DESCRIPTION SECTION
=================================================== */
.shahi-about-section {
  padding: 100px 0;
}

.shahi-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.shahi-about-content .section-label {
  text-align: left;
}

.shahi-about-content h2 {
  margin-bottom: 1.2rem;
}

.shahi-about-content p {
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.shahi-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 1.8rem 0 2.2rem;
}

.shahi-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--color-dark);
  font-weight: 600;
}

.shahi-feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.shahi-about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.shahi-about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.shahi-about-image:hover img {
  transform: scale(1.04);
}

.shahi-about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--color-primary);
  color: white;
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.shahi-about-image-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.shahi-about-image-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* ===================================================
   BRAND SLIDER
=================================================== */
.shahi-brands {
  background: var(--color-dark);
  padding: 50px 0;
  overflow: hidden;
}

.shahi-brands-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 2rem;
}

.shahi-slider-track-wrap {
  overflow: hidden;
  position: relative;
}

.shahi-slider-track-wrap::before,
.shahi-slider-track-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.shahi-slider-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--color-dark), transparent);
}

.shahi-slider-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--color-dark), transparent);
}

.shahi-slider-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  animation: slideLoop 25s linear infinite;
  width: max-content;
}

.shahi-slider-track:hover {
  animation-play-state: paused;
}

.shahi-brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-med);
}

.shahi-brand-item:hover {
  background: rgba(0, 119, 230, 0.15);
  border-color: rgba(0, 119, 230, 0.4);
  transform: scale(1.05);
}

.shahi-brand-item img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.6);
  transition: filter var(--transition-med);
}

.shahi-brand-item:hover img {
  filter: brightness(0) invert(1) opacity(1);
}

/* ===================================================
   SERVICES SECTION
=================================================== */
.shahi-services {
  padding: 90px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.shahi-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 119, 230, 0.09) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.shahi-services .section-label {
  color: var(--color-primary-light);
  background: rgba(0, 119, 230, 0.15);
  border: 1px solid rgba(0, 119, 230, 0.3);
}

.shahi-services .section-title {
  color: var(--color-white);
}

.shahi-services .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.shahi-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}

/* Home Service Card - styled like services page */
.shahi-service-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  display: flex;
  flex-direction: column;
}

.shahi-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 119, 230, 0.4);
}

.shahi-service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.shahi-service-card:hover img {
  transform: scale(1.05);
}

.shahi-service-card-img-wrap {
  overflow: hidden;
}

.shahi-service-card-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: white;
  padding-top: 5px;
}

.shahi-service-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: transform var(--transition-fast);
}

.shahi-service-card:hover .shahi-service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.shahi-service-card-body h3 {
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.shahi-service-desc-text {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.shahi-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  margin-top: auto;
}

.shahi-service-link i {
  transition: transform var(--transition-fast);
}

.shahi-service-link:hover i {
  transform: translateX(5px);
}

.shahi-services-cta {
  text-align: center;
}

/* ===================================================
   CUSTOM APPROACH SECTION
=================================================== */
.shahi-custom-approach {
  background: var(--color-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.shahi-custom-approach::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 119, 230, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.shahi-approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 5rem;
}

.shahi-approach-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.shahi-approach-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.shahi-approach-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: block;
}

.shahi-approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shahi-approach-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .shahi-approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ===================================================
   AFFORDABLE SECTION
=================================================== */
.shahi-affordable-section {
  background: var(--color-white);
  padding: 100px 0;
  position: relative;
}

.shahi-affordable-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.shahi-affordable-content h2 {
  color: var(--color-dark);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.shahi-affordable-text {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.shahi-affordable-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.shahi-affordable-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shahi-affordable-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .shahi-affordable-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .shahi-affordable-image {
    order: 2;
    /* Image below text on mobile */
  }

  .shahi-affordable-content {
    order: 1;
    /* Text above image on mobile */
  }
}

/* ===================================================
   FAQ SECTION
=================================================== */
.shahi-faqs {
  padding: 90px 0;
}

.shahi-faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.shahi-faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.shahi-faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 119, 230, 0.1);
}

.shahi-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--color-white);
  transition: color var(--transition-fast), background var(--transition-fast);
  user-select: none;
}

.shahi-faq-item.active .shahi-faq-question {
  color: var(--color-primary);
  background: var(--color-light);
}

.shahi-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition-fast);
  color: var(--color-primary);
}

.shahi-faq-item.active .shahi-faq-icon {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}

.shahi-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding var(--transition-med);
  background: var(--color-white);
  font-size: 0.92rem;
  color: var(--color-gray);
  line-height: 1.8;
}

.shahi-faq-item.active .shahi-faq-answer {
  max-height: 400px;
}

.shahi-faq-answer-inner {
  padding: 0 1.5rem 1.3rem;
}

/* ===================================================
   PAGE TEMPLATES - ABOUT
=================================================== */
/* ===================================================
   PAGE TEMPLATES - ABOUT
=================================================== */
.shahi-page-banner {
  background: linear-gradient(135deg, rgba(14, 25, 36, 0.87) 0%, rgba(14, 25, 36, 0.75) 60%, rgba(0, 119, 230, 0.5) 100%),
    var(--banner-bg, url('./assets/images/hero-bg.jpg')) center center / cover no-repeat;
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.shahi-page-banner h1 {
  color: white !important;
  position: relative;
  z-index: 2;
}

.shahi-page-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0.8rem auto 0;
  position: relative;
  z-index: 2;
}

/* ===================================================
   PAGE TEMPLATES - ABOUT REDESIGN
=================================================== */
.shahi-about-interactive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .shahi-about-interactive {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.shahi-about-text .section-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

.shahi-about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.8rem;
  margin-top: 0.2rem;
}

.feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: var(--color-dark);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.shahi-about-visual {
  position: relative;
  z-index: 1;
}

.shahi-about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.shahi-about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
  z-index: 1;
}

.shahi-about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-med);
}

/* ===================================================
   INTERACTIVE WHY CHOOSE SECTION
=================================================== */
.shahi-why-interactive {
  padding: 100px 0;
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.shahi-interactive-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 6rem;
  align-items: center;
}

/* Image Stack Effects */
.shahi-images-stack {
  position: relative;
  height: 540px;
}

.shahi-img-main {
  width: 80%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-med);
}

.shahi-img-sub {
  width: 60%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 8px solid var(--color-white);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.shahi-images-stack:hover .shahi-img-main {
  transform: translate(-10px, -10px);
}

.shahi-images-stack:hover .shahi-img-sub {
  transform: translate(15px, 15px);
  box-shadow: var(--shadow-dark);
}

/* Accordion Styling */
.shahi-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.shahi-acc-item {
  background: var(--color-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: all var(--transition-med);
}

.shahi-acc-item.active {
  background: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.shahi-acc-header {
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.shahi-acc-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shahi-acc-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform var(--transition-med);
}

.shahi-acc-item.active .shahi-acc-icon {
  transform: rotate(180deg);
  background: var(--color-dark);
}

.shahi-acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med) ease-out, padding var(--transition-med);
  padding: 0 1.8rem;
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.shahi-acc-item.active .shahi-acc-content {
  max-height: 200px;
  /* Large enough to fit content */
  padding-bottom: 1.6rem;
}

/* Responsive */
@media (max-width: 992px) {
  .shahi-interactive-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .shahi-images-stack {
    height: 480px;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .shahi-images-stack {
    height: 380px;
  }

  .shahi-img-main {
    height: 300px;
  }

  .shahi-img-sub {
    height: 220px;
  }
}

.shahi-about-main-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shahi-about-image-wrapper:hover .shahi-about-main-img {
  transform: scale(1.05);
}

/* Floating Stats inside About Image */
.shahi-floating-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 25, 36, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  z-index: 2;
  border-top: 3px solid var(--color-primary);
}

.shahi-stats-grid-mini {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

.shahi-stat-mini .num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.shahi-stat-mini .lbl {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .shahi-stats-grid-mini {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .shahi-stat-mini {
    flex: 1 1 40%;
  }
}

.shahi-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.shahi-stat-item {
  color: white;
}

.shahi-stat-item .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.shahi-stat-item .lbl {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 0.4rem;
  display: block;
}

/* ===================================================
   PAGE TEMPLATES - ABOUT REDESIGN ADVANTAGES
=================================================== */
.shahi-advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.advantage-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--color-primary);
  z-index: -1;
  transition: height 0.4s ease;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.advantage-card:hover::before {
  height: 6px;
}

.advantage-card .adv-icon {
  width: 70px;
  height: 70px;
  background: var(--color-light-2);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.advantage-card:hover .adv-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.advantage-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.advantage-card p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================================
   CONTACT PAGE
=================================================== */
.shahi-contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.shahi-contact-form-wrap {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.shahi-form-group {
  margin-bottom: 1.3rem;
}

.shahi-form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.shahi-form-group input,
.shahi-form-group select,
.shahi-form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-light);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.shahi-form-group input:focus,
.shahi-form-group select:focus,
.shahi-form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 119, 230, 0.12);
  background: white;
}

.shahi-form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.shahi-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .shahi-form-row {
    grid-template-columns: 1fr;
  }
}

.shahi-alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

.shahi-alert.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  display: block;
}

.shahi-alert.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ef9a9a;
  display: block;
}

.shahi-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.shahi-contact-info-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.shahi-contact-info-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.shahi-contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.shahi-contact-info-text h4 {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 0.3rem;
}

.shahi-contact-info-text p {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 600;
  margin: 0;
}

/* ===================================================
   SERVICES PAGE (FULL LISTING)
=================================================== */
.shahi-services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shahi-service-full-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.shahi-service-full-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.shahi-service-full-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.shahi-service-full-card-body {
  padding: 1.8rem;
}

.shahi-service-full-card-body .service-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.shahi-service-full-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.shahi-service-full-card-body p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ===================================================
   KEYFRAME ANIMATIONS
=================================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 119, 230, 0.5);
  }

  50% {
    box-shadow: 0 0 0 12px rgba(0, 119, 230, 0);
  }
}

/* ===================================================
   MULTI-STEP FORM
=================================================== */
.shahi-multistep-form {
  background: var(--color-white) url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MDAiIGhlaWdodD0iNDAwIj48ZyBmaWxsPSIjZThlOGU4IiBvcGFjaXR5PSIwLjciPjxjaXJjbGUgY3g9IjEwMCIgY3k9IjEwMCIgcj0iOSIvPjxjaXJjbGUgY3g9IjI1MCIgY3k9IjgwIiByPSIxMiIvPjxjaXJjbGUgY3g9IjE1MCIgY3k9IjI1MCIgcj0iMTUiLz48Y2lyY2xlIGN4PSIyODAiIGN5PSIyMTAiIHI9IjgiLz48Y2lyY2xlIGN4PSIzNTAiIGN5PSIzMDAiIHI9IjEzIi8+PGNpcmNsZSBjeD0iNTAiIGN5PSIzMjAiIHI9IjExIi8+PGxpbmUgeDE9IjEwMCIgeTE9IjEwMCIgeDI9IjI1MCIgeTI9IjgwIiBzdHJva2U9IiNlN2U3ZTciIHN0cm9rZS13aWR0aD0iMiIvPjxsaW5lIHgxPSIxMDAiIHkxPSIxMDAiIHgyPSIxNTAiIHkyPSIyNTAiIHN0cm9rZT0iI2U3ZTdlNyIgc3Ryb2tlLXdpZHRoPSIyIi8+PGxpbmUgeDE9IjE1MCIgeTE9IjI1MCIgeDI9IjI4MCIgeTI9IjIxMCIgc3Ryb2tlPSIjZTdlN2U3IiBzdHJva2Utd2lkdGg9IjIiLz48bGluZSB4MT0iMjUwIiB5MT0iODAiIHgyPSIyODAiIHkyPSIyMTAiIHN0cm9rZT0iI2U3ZTdlNyIgc3Ryb2tlLXdpZHRoPSIyIi8+PGxpbmUgeDE9IjI4MCIgeTE9IjIxMCIgeDI9IjM1MCIgeTI9IjMwMCIgc3Ryb2tlPSIjZTdlN2U3IiBzdHJva2Utd2lkdGg9IjIiLz48bGluZSB4MT0iMTUwIiB5MT0iMjUwIiB4Mj0iNTAiIHkyPSIzMjAiIHN0cm9rZT0iI2U3ZTdlNyIgc3Ryb2tlLXdpZHRoPSIyIi8+PC9nPjwvc3ZnPg==') center center / cover no-repeat;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid #eaeaea;
}

.shahi-steps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.shahi-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  color: #3b7b9f;
  /* Blueish gray from screenshot */
  flex: 1;
}

.shahi-step.active {
  color: #bd2a2a;
  /* Dark Red from screenshot */
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid #3b7b9f;
  color: #3b7b9f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  transition: all 0.3s ease;
}

.shahi-step.active .step-circle {
  background: var(--color-white);
  border-color: #bd2a2a;
  color: #bd2a2a;
}

.step-label {
  font-size: 0.95rem;
  font-weight: 500;
}

.shahi-step-line {
  flex-grow: 2;
  height: 1px;
  background: #b2c6d3;
  margin: 0 -15px;
  margin-top: -26px;
  z-index: 1;
}

.shahi-step-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.shahi-step-content.active {
  display: block;
}

/* Form Groups and Inputs exactly like screenshot */
.shahi-form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.shahi-form-row>div {
  flex: 1;
}

.shahi-form-row-3>div {
  flex: 1;
}

.shahi-form-group {
  margin-bottom: 1.2rem;
  text-align: left;
}

.shahi-form-group label {
  display: block;
  font-size: 1.05rem;
  font-weight: 400;
  /* Normal weight */
  color: #333;
  margin-bottom: 0.3rem;
}

.shahi-form-group input[type="text"],
.shahi-form-group input[type="email"],
.shahi-form-group input[type="tel"],
.shahi-form-group select,
.shahi-form-group textarea {
  width: 100%;
  padding: 0.75rem 0.8rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
  background: #fff;
  color: #444;
}

.shahi-form-group input[type="file"] {
  border: none;
  padding: 0;
  font-size: 0.95rem;
}

.shahi-step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  gap: 10px;
}

.shahi-step-actions .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 0;
  background-color: #808080;
  /* Gray flat button */
  color: white;
  border: none;
  transition: 0.2s;
}

.shahi-step-actions .btn:hover {
  background-color: #666;
}

/* Adjust if there are 2 buttons (Prev and Next) */
.shahi-step-actions .btn-secondary {
  background-color: #999;
}

.shahi-radio-group .wpcf7-list-item {
  margin-right: 1.5rem;
  display: inline-flex;
  align-items: center;
}

.shahi-radio-group input[type="radio"] {
  margin-right: 0.4rem;
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .shahi-steps-header {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .shahi-step-line {
    display: none;
  }

  .shahi-form-row,
  .shahi-form-row-3 {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }

  .shahi-multistep-form {
    padding: 1.5rem;
  }
}

/* ===================================================
   FOOTER BACKGROUND & OVERLAY
=================================================== */
.shahi-footer {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax effect for premium feel */
  color: white;
  overflow: hidden;
}

.shahi-footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  /* Dark overlay for text contrast */
  z-index: 1;
}

.shahi-footer .shahi-container {
  position: relative;
  z-index: 2;
  /* Ensure content is above overlay */
}

/* Ensure footer logo is visible against dark background if it's not white */


/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .shahi-about-grid {
    gap: 3rem;
  }

  .shahi-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shahi-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shahi-services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .shahi-nav,
  .shahi-header-cta .btn {
    display: none;
  }

  .shahi-hamburger {
    display: flex;
  }

  .shahi-hero-content {
    max-width: 100%;
  }

  .shahi-hero-stats {
    gap: 1.5rem;
  }

  .shahi-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shahi-about-image {
    order: -1;
  }

  .shahi-about-image img {
    height: 320px;
  }

  .shahi-services-grid {
    grid-template-columns: 1fr;
  }

  .shahi-faqs-grid {
    grid-template-columns: 1fr;
  }

  .shahi-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .shahi-contact-grid {
    grid-template-columns: 1fr;
  }

  .shahi-team-grid {
    grid-template-columns: 1fr;
  }

  .shahi-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shahi-services-full-grid {
    grid-template-columns: 1fr;
  }

  .shahi-form-row {
    grid-template-columns: 1fr;
  }

  .shahi-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .shahi-hero h1 {
    font-size: 1.5em;
  }

  .hero-stat-label {
    font-size: 0.62rem;
  }

  .shahi-hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stat-num {
    font-size: 1.8rem;
  }

  .shahi-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shahi-hero-badge {

    margin-bottom: 1.5rem;
    margin-top: 3rem;

  }

  .shahi-hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.8rem 1rem;
    font-size: 0.8rem;
  }

  .section-label {
    margin-bottom: 1rem;
    margin-top: 3rem;
  }
}

/* ===================================================
   INTERACTIVE IMAGE GALLERY (SWIPER)
=================================================== */
.shahi-gallery-slider {
  padding-bottom: 3rem !important;
  /* space for pagination */
}

.shahi-gallery-item {
  display: block;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.shahi-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.shahi-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 119, 230, 0.7);
  /* Primary color overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-med);
  z-index: 2;
}

.shahi-gallery-overlay i {
  color: white;
  font-size: 2.5rem;
  transform: scale(0.5);
  transition: transform var(--transition-med) cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover Effects */
.shahi-gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.shahi-gallery-item:hover img {
  transform: scale(1.1);
}

.shahi-gallery-item:hover .shahi-gallery-overlay {
  opacity: 1;
}

.shahi-gallery-item:hover .shahi-gallery-overlay i {
  transform: scale(1);
}

/* Swiper Controls Customization */
.shahi-gallery-slider .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.5;
}

.shahi-gallery-slider .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 10px;
}

.shahi-gallery-slider .swiper-button-next,
.shahi-gallery-slider .swiper-button-prev {
  color: var(--color-primary);
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.shahi-gallery-slider .swiper-button-next:after,
.shahi-gallery-slider .swiper-button-prev:after {
  font-size: 1.2rem;
  font-weight: 900;
}

.shahi-gallery-slider:hover .swiper-button-next,
.shahi-gallery-slider:hover .swiper-button-prev {
  opacity: 1;
}

.shahi-gallery-slider .swiper-button-next:hover,
.shahi-gallery-slider .swiper-button-prev:hover {
  transform: scale(1.1);
  background: var(--color-primary);
  color: white;
}