/* ========================================
   CHANDNI SOFTWARE GROUP – MAIN STYLESHEET
   With Premium Animations
   ======================================== */

/* === RESET & BASE === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e01b24;
  --red-dark: #b5151d;
  --red-light: #ff4d5a;
  --pink-bg: #fff0f0;
  --pink-soft: #fde8e8;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: #e8e8f0;
  --shadow: 0 8px 32px rgba(224, 27, 36, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
  --font: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 90px 0;
}

.bg-light {
  background: var(--pink-bg);
}

.w-full {
  width: 100%;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #fde8e8;
}

::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}

/* =====================
   TOP BAR ANIMATIONS
   ===================== */
.topbar {
  background: var(--red);
  padding: 8px 0;
  transform: translateY(-100%);
  animation: slideDownFade 0.6s cubic-bezier(.4, 0, .2, 1) 0.1s forwards;
}

@keyframes slideDownFade {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.topbar-left a,
.topbar-right a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: #fff;
}

.topbar-right span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.topbar-right a {
  font-size: 13px;
  transition: transform var(--transition), color var(--transition);
}

.topbar-right a:hover {
  transform: scale(1.25) rotate(8deg);
  color: #fff;
}

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 12px 0;
  transition: all var(--transition);
  animation: navSlideIn 0.5s ease 0.3s both;
}

@keyframes navSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(224, 27, 36, 0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo image (real logo) */
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition), filter var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 2px 8px rgba(224, 27, 36, 0.25));
}

.footer-logo-img {
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-img:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Illustration images (transparent background) */
.hero-illustration {
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 20px 40px rgba(224, 27, 36, 0.12));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-g {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  color: var(--red);
  z-index: 1;
  position: relative;
}

.logo-ring {
  position: absolute;
  inset: 0;
  border: 3px solid var(--red);
  border-radius: 50%;
  animation: spinRing 8s linear infinite;
}

.logo-ring::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes spinRing {
  to {
    transform: rotate(360deg);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-sub {
  font-size: 10px;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: var(--pink-soft);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-links .fas.fa-chevron-down {
  font-size: 10px;
  transition: transform var(--transition);
}

.nav-links li:hover .fas.fa-chevron-down {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
  padding: 8px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  display: block;
  transition: all var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--pink-soft);
  color: var(--red);
  padding-left: 22px;
}

/* Contact button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--red);
  color: var(--white) !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(224, 27, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-contact:hover::before {
  transform: translateX(100%);
}

.btn-contact:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 27, 36, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(224, 27, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(224, 27, 36, 0.45);
  background: var(--red-dark);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text-dark);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--pink-soft);
  transform: translateY(-2px);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-bg) 40%, var(--pink-soft) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 27, 36, 0.08) 0%, transparent 70%);
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -200px;
  animation: floatCircle 8s ease-in-out infinite;
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: floatCircle 10s ease-in-out infinite reverse;
}

@keyframes floatCircle {

  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.05) translate(20px, -20px);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.15;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 0.15;
  }

  90% {
    opacity: 0.15;
  }

  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 560px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-soft);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease 0.7s both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--red) 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.9s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp 0.6s ease 1.1s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeInUp 0.6s ease 1.3s both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--red);
}

.stat-unit {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
}

/* Hero visual */
.hero-visual {
  animation: fadeInRight 0.8s ease 0.6s both;
}

.hero-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: imgFloat 5s ease-in-out infinite;
}

@keyframes imgFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  animation: badgePop 0.5s cubic-bezier(.34, 1.56, .64, 1) both;
}

.hero-badge i {
  color: var(--red);
  font-size: 16px;
}

.hero-badge-1 {
  bottom: 30px;
  left: -30px;
  animation-delay: 1.5s;
}

.hero-badge-2 {
  top: 30px;
  right: -20px;
  animation-delay: 1.8s;
}

@keyframes badgePop {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Brands ticker */
.brands-ticker {
  margin-top: 60px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.8);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.brand-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-mid);
  transition: color var(--transition);
  white-space: nowrap;
}

.brand-item i {
  color: var(--red);
  font-size: 18px;
}

.brand-item:hover {
  color: var(--red);
}

/* =====================
   AOS ANIMATIONS
   ===================== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos-delay="100"] {
  transition-delay: 0.1s;
}

[data-aos-delay="200"] {
  transition-delay: 0.2s;
}

[data-aos-delay="300"] {
  transition-delay: 0.3s;
}

@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);
  }
}

/* =====================
   SECTION HEADER
   ===================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
}

/* =====================
   FEATURES / SUCCESS
   ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card-highlight {
  background: var(--red);
  color: var(--white);
}

.feature-card-highlight .feature-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.feature-card-highlight .feature-link {
  color: rgba(255, 255, 255, 0.8);
}

.feature-card-highlight h3,
.feature-card-highlight p {
  color: var(--white);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--pink-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.feature-card:not(.feature-card-highlight):hover .feature-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(5deg) scale(1.1);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.feature-card-highlight p {
  color: rgba(255, 255, 255, 0.85);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  transition: gap var(--transition);
}

.feature-link:hover {
  gap: 10px;
}

/* =====================
   SEGMENTS GRID
   ===================== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
}

.segment-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.segment-item i {
  font-size: 28px;
  color: var(--red);
  transition: transform var(--transition);
}

.segment-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.segment-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.segment-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.segment-highlight {
  background: var(--red);
  border-color: var(--red);
}

.segment-highlight i,
.segment-highlight span {
  color: var(--white);
}

/* =====================
   STATS BANNER
   ===================== */
/* New Stats Banner */
.stats-banner-new {
  background: #FFEBEB;
  /* Light soft pink/peach */
  text-align: center;
}

.stats-header {
  max-width: 900px;
  margin: 0 auto 50px;
}

.stats-main-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 20px;
}

.stats-sub-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.stats-info-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  flex: 1;
  min-width: 250px;
  justify-content: center;
}

.stat-info-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-info-text {
  text-align: left;
}

.stat-info-text h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.stat-info-text p {
  font-size: 13px;
  font-weight: 600;
  color: #444;
  line-height: 1.3;
}

.stat-info-divider {
  width: 1px;
  height: 60px;
  background: #ddd;
}

@media (max-width: 992px) {
  .stat-info-divider {
    display: none;
  }

  .stat-info-card {
    border-bottom: 1px solid #eee;
  }

  .stat-info-card:last-child {
    border-bottom: none;
  }
}

/* =====================
   GST SECTION
   ===================== */
.gst-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.gst-text .section-title {
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li i {
  color: var(--red);
  font-size: 16px;
  flex-shrink: 0;
}

.check-list li:hover {
  color: var(--red);
}

.gst-visual {
  position: relative;
}

.gst-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
}

.float-card i {
  color: var(--red);
  font-size: 18px;
}

.float-card-1 {
  bottom: 24px;
  left: -24px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 24px;
  right: -24px;
  animation-delay: 2s;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* =====================
   BLOGS
   ===================== */
.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.blog-img-wrap {
  position: relative;
  overflow: hidden;
}

.blog-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrap img {
  transform: scale(1.06);
}

.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.blog-date i {
  margin-right: 3px;
  color: var(--red);
}

.blog-content h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: gap var(--transition);
}

.read-more:hover {
  gap: 14px;
}

/* =====================
   FAQ MINI
   ===================== */
.faq-mini-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--pink-soft);
  border-radius: 12px;
  margin: 24px 0 28px;
}

.contact-quick i {
  font-size: 22px;
  color: var(--red);
}

.contact-quick small {
  display: block;
  font-size: 11px;
  color: var(--text-light);
}

.contact-quick strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}

.quick-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-tag {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.quick-form input,
.quick-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  display: block;
  margin-bottom: 16px;
}

.quick-form input:focus,
.quick-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 27, 36, 0.1);
}

.quick-form textarea {
  resize: vertical;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.06;
  position: absolute;
  top: -10px;
  left: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.stars {
  color: #f5a623;
  margin-bottom: 16px;
  font-size: 16px;
}

.test-quote {
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.8;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--red);
}

.test-author strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
}

.test-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* =====================
   NEWSLETTER
   ===================== */
.newsletter-section {
  background: var(--red);
  padding: 48px 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.newsletter-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 400px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
  border: none;
  outline: none;
  padding: 13px 20px;
  font-size: 14px;
  width: 280px;
  font-family: var(--font);
}

.btn-subscribe {
  padding: 13px 24px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: #333;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #111122;
  padding: 30px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .logo-name,
.footer-brand .logo-sub {
  color: var(--white);
}

.footer-brand p,
.footer-col p {
  /* font-size: 13px; */
  color: var(--white);
  /* line-height: 1.8;
  margin-bottom: 20px; */
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--red);
  font-size: 16px;
  transition: transform var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col ul li a:hover::before {
  transform: translateX(4px);
}

.footer-nl-form {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-nl-form input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 13px;
}

.footer-nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-nl-sub {
  padding: 11px 16px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-nl-sub:hover {
  background: var(--red-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--white);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--red);
}

.footer-bottom-links span {
  color: rgba(255, 255, 255, 0.2);
}

/* =====================
   PAGE HERO (Inner Pages)
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--white) 0%, var(--pink-bg) 100%);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 27, 36, 0.08), transparent 70%);
  top: -100px;
  right: -100px;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 27, 36, 0.05), transparent 70%);
  bottom: -50px;
  left: -50px;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.page-hero .breadcrumb {
  font-size: 14px;
  color: var(--text-mid);
  animation: fadeInUp 0.6s ease 0.5s both;
}

.page-hero .breadcrumb a {
  color: var(--red);
}

.page-hero .breadcrumb a:hover {
  text-decoration: underline;
}

/* =====================
   FAQ PAGE
   ===================== */
.faq-section {
  padding: 80px 0;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}



.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-item.open {
  border-color: var(--red);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--white);
  transition: background var(--transition);
}

.faq-item.open .faq-question {
  background: var(--red);
  color: var(--white);
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 600;
  flex: 1;
  margin-right: 16px;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
  font-size: 14px;
  color: var(--red);
}

.faq-item.open .faq-question .faq-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.open .faq-answer {
  max-height: 300px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* =====================
   STATS CARDS (Who We Are)
   ===================== */
.who-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.who-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--border);
  text-align: left;
  transition: all var(--transition);
}

.who-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.who-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--pink-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
  transition: all var(--transition);
}

.who-card:hover .who-card-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(5deg);
}

.who-card h3 {
  color: var(--red);
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.who-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.who-card .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
  transition: gap var(--transition);
}

.who-card .arrow-link:hover {
  gap: 14px;
}

/* =====================
   CONTACT PAGE
   ===================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 72px;
}
.footer-col p{
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.ci-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all var(--transition);
}

.contact-info-card:hover .ci-icon {
  background: var(--red);
  color: var(--white);
}

.footer-brand img {
  max-width: 170px;
  height: auto;
}

.ci-text small {
  font-size: 12px;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.ci-text strong {
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.ci-text p {
  font-size: 14px;
  color: var(--text-mid);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text-dark);
  transition: all var(--transition);
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224, 27, 36, 0.1);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
  margin-top: 60px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =====================
   BLOG PAGE
   ===================== */
.blogs-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.latest-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 120px 1fr;
  transition: all var(--transition);
}

.article-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.article-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content {
  padding: 16px;
}

.article-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.article-content p {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.big-article {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.big-article:hover {
  box-shadow: var(--shadow);
}

.big-article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.big-article .blog-content {
  padding: 28px;
}

/* =====================
   ABOUT PAGE
   ===================== */
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.vm-card {
  background: var(--pink-soft);
  border-radius: var(--radius);
  padding: 20px;
  transition: all var(--transition);
}

.vm-card:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
}

.vm-card h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.vm-card p {
  font-size: 13px;
}

/* =====================
   BACK TO TOP
   ===================== */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(224, 27, 36, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(224, 27, 36, 0.5);
}

/* =====================
   SCROLL REVEAL (JS driven)
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered child reveals */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.revealed>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.revealed>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.revealed>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children.revealed>*:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children.revealed>*:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children.revealed>*:nth-child(6) {
  transition-delay: 0.5s;
}

.stagger-children.revealed>*:nth-child(n+7) {
  transition-delay: 0.6s;
}

.stagger-children.revealed>* {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   LOADING OVERLAY
   ===================== */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  width: 0%;
  animation: loadProgress 1s ease-out forwards;
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar-left {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.12);
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 999;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .btn-contact {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .gst-inner,
  .faq-mini-inner,
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .blogs-grid,
  .blogs-page-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-info-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
    flex: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .faq-inner {
    grid-template-columns: 1fr;
  }

  .latest-articles-grid {
    grid-template-columns: 1fr;
  }

  .who-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =====================
   PRODUCT PAGE STYLES
   ===================== */

/* Hero */
.product-hero {
  background: linear-gradient(rgba(224, 27, 36, 0.05), rgba(224, 27, 36, 0.05)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?w=1600&q=80') center/cover;
}

/* Tags */
.product-tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.product-tag {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--transition);
}

.product-tag:hover,
.product-tag.active {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: 0 4px 15px rgba(224, 27, 36, 0.2);
}

/* Benefits */
.benefits-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.benefit-item {
  max-width: 250px;
}

.benefit-item img {
  width: 180px;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item p {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 16px;
}

/* 9-Grid Features */
.features-9-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feat-card-9 {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.feat-card-9:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.feat-9-icon {
  width: 50px;
  height: 50px;
  background: var(--pink-soft);
  color: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.feat-9-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feat-9-content h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feat-9-content p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Segments with Mockup */
.segments-with-mockup {
  display: flex;
  align-items: center;
  gap: 60px;
}

.mockup-left {
  flex: 1;
}

.mockup-left img {
  width: 100%;
  max-width: 450px;
}

.segments-grid-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  flex: 1.5;
}

.seg-grid-item {
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  cursor: pointer;
}

.seg-grid-item i {
  font-size: 24px;
  color: var(--red);
}

.seg-grid-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
}

.seg-grid-item:hover,
.seg-grid-item.active {
  background: var(--red);
  border-color: var(--red);
  color: white;
}

.seg-grid-item:hover i,
.seg-grid-item.active i,
.seg-grid-item:hover span,
.seg-grid-item.active span {
  color: white;
}

/* Alternating Choose Us Rows */
.choose-us-alternating {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.choose-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.choose-row.reverse {
  flex-direction: row-reverse;
}

.choose-text {
  flex: 1;
}

.choose-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.choose-text p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.8;
}

.choose-img {
  flex: 1;
  text-align: center;
}

.choose-img img {
  width: 100%;
  max-width: 400px;
}

@media (max-width: 992px) {
  .features-9-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .segments-with-mockup {
    flex-direction: column;
    text-align: center;
  }

  .segments-grid-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .features-9-grid {
    grid-template-columns: 1fr;
  }

  .choose-row,
  .choose-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .segments-grid-right {
    grid-template-columns: repeat(2, 1fr);
  }
}