/* ============================================================
   CLCompany - Main Stylesheet
   Color Theme: Orange (#E8500A, #FF6B35) & Red (#C0392B, #E74C3C)
   ============================================================ */

/* CSS Variables */
:root {
  --primary: #e8500a;
  --primary-dark: #c4440a;
  --primary-light: #ff6b35;
  --secondary: #c0392b;
  --secondary-dark: #96281b;
  --secondary-light: #e74c3c;
  --accent: #ff8c42;
  --dark: #1a0a00;
  --dark-2: #2d1200;
  --dark-3: #3d1a00;
  --text: #1a0a00;
  --text-muted: #7a5c4a;
  --text-light: #f5e6dc;
  --white: #ffffff;
  --light-bg: #fff8f3;
  --light-bg-2: #ffeedd;
  --border: #f0c8a0;
  --shadow: rgba(232, 80, 10, 0.2);
  --shadow-dark: rgba(26, 10, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #e8500a 0%, #c0392b 100%);
  --gradient-warm: linear-gradient(
    135deg,
    #ff6b35 0%,
    #e8500a 50%,
    #c0392b 100%
  );
  --gradient-dark: linear-gradient(135deg, #1a0a00 0%, #3d1a00 100%);
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Raleway", sans-serif;
  --font-cursive: "Dancing Script", cursive;
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

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

body {
  font-family: var(--font-secondary);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.mt-20 {
  margin-top: 20px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-inner p {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 20px;
  letter-spacing: 3px;
}

.gear-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gear {
  font-size: 3.5rem;
  color: var(--primary);
}

.gear-left {
  animation: spin-left 1.5s linear infinite;
}
.gear-right {
  animation: spin-right 1.5s linear infinite;
}

@keyframes spin-left {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes spin-right {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(15px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.logo-img {
  height: 60px;
  width: auto;
}

.footer-logo .logo-img {
  height: 50px;
}

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

.nav-link {
  color: #000000;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(232, 80, 10, 0.08);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile Navbar */
@media (max-width: 991px) {
  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-links {
    position: fixed;
    top: 90px; /* navbar ke niche */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding-top: 40px;

    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
    transform: translateY(12%);
  }

  .nav-link {
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  /* scroll hone ke baad bhi same position */
  .navbar.scrolled .nav-links {
    /* top: 75px; */
    top: -18px;
    height: calc(100vh - 75px);
    background: #ffffff !important;
  }
}

/* body scroll lock */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
/* HERO BASE */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 🔥 BACKGROUND IMAGE */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(26, 10, 0, 0.65), rgba(26, 10, 0, 0.75)),
    url("../images/hero-cl.png"); /* 👈 yaha apna image path dalna */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

/* subtle zoom animation */
@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.15);
  }
}

/* OVERLAY GLOW */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(232, 80, 10, 0.25),
      transparent 60%
    ),
    radial-gradient(circle at 70% 60%, rgba(192, 57, 43, 0.2), transparent 60%);
  z-index: 1;
}

/* PARTICLES */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 120px 20px 80px;
}

/* BADGE */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 2px;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* TITLE */
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

/* TEXT ANIMATION */
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroText 0.8s ease forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.4s;
}
.title-line:nth-child(2) {
  animation-delay: 0.6s;
}
.title-line:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes heroText {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* GRADIENT TEXT */
.title-line.accent {
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 35px;
  animation: fadeIn 1s ease 1s both;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 1.2s both;
}

/* BUTTON STYLE UPGRADE */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  box-shadow: 0 10px 30px rgba(232, 80, 10, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary);
}

/* FADE */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }
}
/* ============================================================
   TICKER BANNER
   ============================================================ */
.ticker-wrapper {
  background: var(--gradient-primary);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 10;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-content span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0 20px;
}

.ticker-content span i {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6rem;
  margin-right: 10px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(232, 80, 10, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(232, 80, 10, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

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

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

.section-tag {
  display: inline-block;
  background: rgba(232, 80, 10, 0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(232, 80, 10, 0.2);
}

.section-tag.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .accent {
  color: var(--primary);
  position: relative;
}

.section-title.light {
  color: var(--white);
}
.section-title .accent-light {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(232, 80, 10, 0.05) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  pointer-events: none;
}

.section-bg-pattern.dark {
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img-placeholder {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 3px solid rgba(232, 80, 10, 0.3);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 80, 10, 0.1) 0%,
    transparent 70%
  );
}

.about-img-placeholder i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.7;
}

.about-img-placeholder span {
  font-family: var(--font-cursive);
  font-size: 2rem;
  color: var(--primary-light);
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 25px rgba(232, 80, 10, 0.4);
  animation: float 3s ease-in-out infinite;
}

.about-badge-float i {
  font-size: 1.3rem;
}

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

.about-content {
}

.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.about-feature i {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   RESTORATION TYPES SECTION
   ============================================================ */
.restoration-types {
  background: var(--white);
}

.restoration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.restoration-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.restoration-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(232, 80, 10, 0.15);
  border-color: var(--primary);
}

.restoration-card-image {
  height: 220px;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.restoration-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 80, 10, 0.15) 0%,
    transparent 70%
  );
  transition: var(--transition);
}

.restoration-card:hover .restoration-card-image::before {
  background: radial-gradient(
    ellipse at center,
    rgba(232, 80, 10, 0.25) 0%,
    transparent 70%
  );
}

.restoration-card-image i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.7;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.restoration-card:hover .restoration-card-image i {
  transform: scale(1.1);
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}

.restoration-card-body {
  padding: 26px;
}

.restoration-card-title {
  font-family: var(--font-primary);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.restoration-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.restoration-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  background: rgba(232, 80, 10, 0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(232, 80, 10, 0.15);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.card-link:hover {
  gap: 10px;
}

/* ============================================================
   SPECIALIZATIONS SECTION
   ============================================================ */
.specializations {
  background: var(--light-bg);
}

.spec-tabs {
  margin-bottom: 60px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232, 80, 10, 0.35);
}

.tab-content {
  display: none;
  animation: fadeInUp 0.4s ease both;
}

.tab-content.active {
  display: block;
}

.tab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  border: 1px solid var(--border);
}

.tab-text h3 {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.tab-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 24px;
}

.tab-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tab-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.tab-feature i {
  width: 32px;
  height: 32px;
  background: rgba(232, 80, 10, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tab-visual {
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.tab-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 80, 10, 0.15) 0%,
    transparent 70%
  );
}

.tab-visual i {
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.tab-visual span {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.spec-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.spec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(232, 80, 10, 0.12);
}

.spec-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(232, 80, 10, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.spec-card:hover .spec-card-icon {
  background: var(--gradient-primary);
}

.spec-card-icon i {
  font-size: 1.7rem;
  color: var(--primary);
  transition: var(--transition);
}

.spec-card:hover .spec-card-icon i {
  color: var(--white);
}

.spec-card h4 {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.spec-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  background: var(--dark);
}

.gallery .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.2);
}

.gallery .section-title {
  color: var(--white);
}
.gallery .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.gallery-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark-2);
  transition: var(--transition);
}

.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item:hover {
  transform: scale(0.98);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  background: var(--gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.gallery-item-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(232, 80, 10, 0.12) 0%,
    transparent 70%
  );
}

.gallery-item-inner i {
  font-size: 2.5rem;
  color: var(--primary);
  opacity: 0.6;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(232, 80, 10, 0.9) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover .gallery-item-inner i {
  opacity: 1;
  transform: scale(1.1);
}

.gallery-item-info h4 {
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
}

.gallery-item-info span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232, 80, 10, 0.9), transparent);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.gallery-popup img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

.close-popup {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: #f8f9fa;
  padding: 60px 0;
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

/* CENTER LINE */
.process-timeline::before {
  content: "";
  position: absolute;
  width: 3px;
  background: linear-gradient(to bottom, #ff6600, #ff9900);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* STEP */
.process-step {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

/* LEFT SIDE */
.process-step.left {
  left: 0;
  text-align: right;
}

/* RIGHT SIDE */
.process-step.right {
  left: 50%;
}

/* CARD */
.process-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.process-content:hover {
  transform: translateY(-5px);
}

/* ICON */
.process-icon {
  font-size: 20px;
  color: #ff6600;
  margin-bottom: 10px;
}

/* DOT */
.process-dot {
  position: absolute;
  top: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff6600, #ff9900);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
}

/* DOT POSITION */
.process-step.left .process-dot {
  right: -25px;
}

.process-step.right .process-dot {
  left: -25px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
  .process-timeline::before {
    left: auto;
    right: 30px;
  }

  .process-step {
    width: 100%;
    padding: 20px 60px 20px 0;
    text-align: left;
  }

  .process-step.left,
  .process-step.right {
    left: 0;
  }

  .process-dot {
    right: 0;
    left: auto !important;
  }

  .process-step.left .process-dot,
  .process-step.right .process-dot {
    right: 0;
  }
}
/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-us {
  background: linear-gradient(135deg, #0f172a, #020617);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT BG */
.why-us::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.2), transparent);
  top: -100px;
  left: -100px;
}

.why-us::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 100, 0.15), transparent);
  bottom: -100px;
  right: -100px;
}

/* HEADER */
.why-header h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  text-align: center;
}

.why-header span {
  color: #ff6600;
}

.why-header p {
  color: #bbb;
  max-width: 600px;
  margin: 10px auto 40px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* CARD */
.why-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border-radius: 16px;
  padding: 30px 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* GLOW HOVER */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 102, 0, 0.3),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ICON */
.why-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff6600, #ff9900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.5);
}

/* TEXT */
.why-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.why-card p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.7;
}

/* AUTO HOVER ACTIVE STATE */
.why-card.active::before {
  opacity: 1;
}

.why-card.active {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 102, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-header h2 {
    font-size: 26px;
  }

  .why-card {
    padding: 25px 20px;
  }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.custome-testi-section {
  background: var(--light-bg);
  padding: 80px 0;
  overflow: hidden;
}

.custome-testi-title {
  font-size: 36px;
  font-family: var(--font-primary);
}

.custome-testi-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
}

#custome-testi-track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* CARD BASE */
.custome-testi-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  padding: 25px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 2px solid var(--border);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}

/* ACTIVE */
.custome-testi-card.active {
  z-index: 5;
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 25px 60px var(--shadow);
}

/* SIDE */
.custome-testi-card.side {
  opacity: 0.7;
  transform: translate(-50%, -50%) scale(0.85);
}

/* FAR SIDE */
.custome-testi-card.far {
  opacity: 0.3;
  transform: translate(-50%, -50%) scale(0.7);
}

/* IMAGE */
.custome-testi-card img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-bottom: 12px;
}

/* TEXT */
.custome-testi-card h4 {
  font-size: 15px;
}

.custome-testi-card p {
  font-size: 13px;
}

/* NAV */
.custome-testi-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.custome-testi-nav button {
  width: 50px;
  height: 50px;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: 0.3s;
}

.custome-testi-nav button:hover {
  background: var(--gradient-primary);
  color: white;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .custome-testi-card {
    width: 250px;
    height: 260px;
  }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
/* SECTION */
.cus-res-pack-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #fff3eb, #ffe0cc);
  overflow: hidden;
}

/* HEADER */
.cus-res-pack-header {
  text-align: center;
  margin-bottom: 60px;
}

.cus-res-pack-header h2 {
  font-size: 42px;
  font-weight: 900;
}

.cus-res-pack-header span {
  color: #e8500a;
}

/* SCROLL AREA */
.cus-res-pack-scroll {
  display: flex;
  gap: 30px;
  justify-content: center;
  overflow-x: auto;
  padding: 40px;
  scroll-snap-type: x mandatory;
}

/* HIDE SCROLLBAR */
.cus-res-pack-scroll::-webkit-scrollbar {
  display: none;
}

/* CARD */
.cus-res-pack-card {
  min-width: 300px;
  height: 420px;
  perspective: 1000px;
  scroll-snap-align: center;
}

/* INNER (3D EFFECT) */
.cus-res-pack-card .inner {
  height: 100%;
  border-radius: 25px;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #fff3eb);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  transform-style: preserve-3d;
}

/* HOVER 3D */
.cus-res-pack-card:hover .inner {
  transform: rotateY(8deg) rotateX(6deg) scale(1.05);
}

/* FEATURED */
.cus-res-pack-card.featured .inner {
  background: linear-gradient(135deg, #e8500a, #c0392b);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 30px 80px rgba(232, 80, 10, 0.4);
}

/* BADGE */
.badge {
  position: absolute;
  top: 15px;
  right: 20px;
  background: black;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
}

/* PRICE */
.price {
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0;
}

/* LIST */
ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
}

ul li.off {
  opacity: 0.4;
  text-decoration: line-through;
}
.inner button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #e8500a;
  color: white;
  cursor: pointer;
}

.featured button {
  background: white;
  color: #e8500a;
}

/* MOBILE */
@media (max-width: 768px) {
  .cus-res-pack-card {
    min-width: 260px;
  }
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}

.info-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 18px;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(232, 80, 10, 0.1);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.branches {
  padding: 24px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.branches h4 {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.branch-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.branch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.branch i {
  color: var(--primary);
  font-size: 0.8rem;
}

.contact-form-wrap {
  background: var(--light-bg);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
}

.contact-form {
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(232, 80, 10, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.checkbox-label input {
  accent-color: var(--primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
  animation: fadeInUp 0.5s ease both;
}

.form-success i {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.form-success h3 {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
/* SECTION */
.cus-foot {
  background: linear-gradient(135deg, #fff8f3, #ffeedd);
  color: var(--text);
  position: relative;
}

/* SOFT GLOW */
.cus-foot::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 80, 10, 0.15), transparent);
  top: -100px;
  left: -100px;
}

/* TOP */
.cus-foot-top {
  padding: 80px 0 50px;
}

/* GRID */
.cus-foot-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.cus-foot-nm-bottom {
  display: flex;
  justify-content: space-around;
}

/* LOGO */
.cus-foot-logo {
  width: 170px;
  margin-bottom: 20px;
  filter: none; /* REMOVE DARK FILTER */
}

/* TEXT */
.cus-foot-brand p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SOCIAL */

.cus-foot-socials {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}

.cus-foot-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.cus-foot-socials a:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-5px);
}

/* HEADINGS */
.cus-foot-col h4 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 16px;
  position: relative;
}

.cus-foot-col h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  bottom: -6px;
  left: 0;
}

/* LINKS */
.cus-foot-col ul li a {
  color: var(--text-muted);
  transition: 0.3s;
}

.cus-foot-col ul li a:hover {
  color: var(--primary);
  transform: translateX(6px);
}

/* BOTTOM */
.cus-foot-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  margin-top: 30px;
}

.cus-foot-bottom p {
  color: var(--text-muted);
}

.cus-foot-links a {
  color: var(--text-muted);
}

.cus-foot-links a:hover {
  color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cus-foot-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cus-foot-container {
    grid-template-columns: 1fr;
  }

  .cus-foot-bottom .cus-foot-container {
    flex-direction: column;
    text-align: center;
  }
}
/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232, 80, 10, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(232, 80, 10, 0.5);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.4s ease both;
}

@keyframes modalIn {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-content {
  padding: 40px;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ==================== Blog section css start ============= */
/* SECTION */

.cus-blog-section {
  padding: 60px 40px;
  background: var(--light-bg);
}

.cus-blog-container {
  max-width: 1400px;
  margin: auto;
}

/* HEADER */

.cus-blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.cus-blog-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: var(--font-secondary);
}

.cus-blog-title {
  font-size: 44px;
  margin-top: 15px;
  font-family: var(--font-primary);
  color: var(--dark);
}

.cus-blog-title span {
  color: var(--primary);
}

.cus-blog-subtitle {
  max-width: 600px;
  margin: 10px auto;
  color: var(--text-muted);
  font-family: var(--font-secondary);
}

/* GRID */

.cus-blog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 120px);
  gap: 20px;
}

/* STRUCTURE */

.cus-blog-card-1 {
  grid-column: 1 / span 2;
  grid-row: 1 / span 4;
}

.cus-blog-card-2 {
  grid-column: 1 / span 4;
  grid-row: 5 / span 2;
}

.cus-blog-card-3 {
  grid-column: 3 / span 2;
  grid-row: 1 / span 2;
}

.cus-blog-card-4 {
  grid-column: 3 / span 2;
  grid-row: 3 / span 2;
}

.cus-blog-card-5 {
  grid-column: 5 / span 2;
  grid-row: 1 / span 6;
}

/* CARD */

.cus-blog-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.cus-blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.cus-blog-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */

.cus-blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 10, 0, 0.9),
    rgba(26, 10, 0, 0.5),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  opacity: 0;
  transition: var(--transition);
}

.cus-blog-card:hover .cus-blog-overlay {
  opacity: 1;
}

/* TEXT */

.cus-blog-overlay h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
  font-family: var(--font-primary);
}

.cus-blog-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
}

/* BUTTON */

.cus-blog-btn {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
  font-family: var(--font-secondary);
  transition: var(--transition);
}

.cus-blog-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow);
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .cus-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .cus-blog-card {
    grid-column: auto !important;
    grid-row: auto !important;
    height: 260px;
  }
}

@media (max-width: 600px) {
  .cus-blog-grid {
    grid-template-columns: 1fr;
  }

  .cus-blog-card {
    height: 240px;
  }
}
/* ================ Blogs section css ends ============================= */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrap {
    max-width: 500px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .hamburger {
    display: flex;
    z-index: 10;
  }

  .section {
    padding: 70px 0;
  }

  .hero-stats {
    gap: 14px;
  }
  .stat-divider {
    height: 30px;
  }

  .restoration-grid {
    grid-template-columns: 1fr;
  }
  .spec-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-grid {
    grid-auto-rows: 180px;
  }

  .tab-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .tab-visual {
    height: 200px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-inner {
    padding: 30px 24px;
  }
}

@media (max-width: 480px) {
  .about-features {
    grid-template-columns: 1fr;
  }
  .spec-cards-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .branch-list {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}
