/* =====================================================
   MANOKAMNA PLY CENTRE — WORLD CLASS STYLESHEET
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary:       #c0161e;
  --primary-dark:  #960f16;
  --primary-light: #e8404a;
  --secondary:     #1a0a0a;
  --dark:          #130505;
  --dark-2:        #1e0a0a;
  --dark-3:        #2a1010;
  --accent:        #f4868a;
  --white:         #ffffff;
  --off-white:     #fdf5f5;
  --text:          #2d1a1a;
  --text-muted:    #7b5a5a;
  --border:        #edd8d8;
  --success:       #1a6e3c;

  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Poppins', system-ui, sans-serif;

  --shadow-sm:     0 2px 10px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold:   0 8px 30px rgba(192,22,30,0.35);

  --radius:        14px;
  --radius-lg:     24px;
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.loader-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  animation: logoPulse 1s ease infinite alternate;
}

.loader-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(192,22,30,0.6), 0 0 80px rgba(192,22,30,0.25);
  border: 2px solid rgba(192,22,30,0.4);
}

@keyframes logoPulse {
  from { filter: drop-shadow(0 0 8px rgba(192,22,30,0.5)); }
  to   { filter: drop-shadow(0 0 22px rgba(192,22,30,0.95)) drop-shadow(0 0 45px rgba(192,22,30,0.4)); }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 99px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 99px;
  animation: loaderFill 1.8s ease forwards;
}

@keyframes loaderFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 0.5rem 0;
  font-weight: 400;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left i,
.top-bar-right i {
  color: var(--primary);
  margin-right: 0.35rem;
}

.top-bar-right {
  display: flex;
  gap: 1.5rem;
}

.top-bar-right a {
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}

.top-bar-right a:hover { color: var(--primary-light); }

/* =====================================================
   NAVBAR
   ===================================================== */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.14);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(192,22,30,0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}

.logo:hover .logo-img {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 18px rgba(192,22,30,0.45);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  position: relative;
  transition: all var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--primary);
  border-radius: 99px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-nav {
  background: var(--primary);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(192,22,30,0.35);
}

.btn-nav:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192,22,30,0.5);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(192,22,30,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(192,22,30,0.55);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

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

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 99px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0000 0%, #1a0505 40%, #2a0808 70%, #3d0a0a 100%);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(192,22,30,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(150,15,22,0.12) 0%, transparent 60%);
}

/* Animated wood-grain lines */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      10deg,
      transparent,
      transparent 60px,
      rgba(192,22,30,0.04) 60px,
      rgba(192,22,30,0.04) 61px
    );
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp var(--dur, 8s) var(--delay, 0s) infinite ease-in;
}

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(0); }
  10%  { opacity: 0.6; transform: translateY(-10px) scale(1); }
  90%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-300px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 100px;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192,22,30,0.15);
  border: 1px solid rgba(192,22,30,0.35);
  color: var(--primary-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeSlideDown 0.8s ease both;
}

.hero-badge i { color: var(--primary-light); }

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  animation: fadeSlideUp 0.9s 0.15s ease both;
}

.hero-highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
  animation: fadeSlideUp 0.9s 0.3s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.9s 0.45s ease both;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeSlideUp 0.9s 0.6s ease both;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
}

.stat-plus {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  vertical-align: super;
  font-size: 1.2rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 1px;
  animation: fadeIn 1.5s 1s ease both;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 99px;
  animation: scrollWheel 1.8s ease infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
}

.marquee-track span i {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

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

/* =====================================================
   SECTIONS — SHARED
   ===================================================== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--off-white);
}

.why-us-section {
  background: var(--dark);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(192,22,30,0.1);
  color: var(--primary);
  border: 1px solid rgba(192,22,30,0.25);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

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

.why-us-section .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Visual Stack */
.about-visual {
  position: relative;
}

.about-img-stack {
  position: relative;
  height: 460px;
}

.about-img-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-1 {
  width: 75%;
  height: 70%;
  top: 0;
  left: 0;
}

.about-img-2 {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 4px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

/* Real images fill the card */
.about-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-card:hover .about-real-img {
  transform: scale(1.06);
}

/* Subtle dark-to-transparent gradient overlay at the bottom of each card */
.about-img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 0, 0, 0.35) 0%,
    transparent 55%
  );
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.wood-texture,
.texture-1,
.texture-2 {
  display: none; /* hidden — kept for safety, real imgs replace them */
}

.about-badge-float {
  position: absolute;
  top: 45%;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 3;
  animation: floatBadge 3s ease-in-out infinite;
}

.about-badge-float i {
  font-size: 1.8rem;
  color: var(--primary);
}

.about-badge-float span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.3;
}

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

/* About Content */
.about-content .section-tag { margin-bottom: 0.8rem; }

.about-desc {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(192,22,30,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.15rem;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =====================================================
   PRODUCTS SECTION
   ===================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,22,30,0.2);
}

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

.featured-card {
  border-color: rgba(192,22,30,0.3);
  box-shadow: 0 4px 25px rgba(192,22,30,0.12);
}

.featured-ribbon {
  position: absolute;
  top: 16px;
  right: -30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 2.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(192,22,30,0.4);
}

.product-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--card-color, var(--primary)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--card-color, var(--primary));
  margin-bottom: 1.2rem;
  transition: all var(--transition);
}

.product-card:hover .product-icon-wrap {
  background: var(--card-color, var(--primary));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.7rem;
}

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

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text);
  font-weight: 500;
}

.product-features li i {
  color: var(--success);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  border: 1.5px solid rgba(192,22,30,0.35);
  padding: 0.55rem 1.2rem;
  border-radius: 10px;
  transition: all var(--transition);
}

.product-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateX(4px);
}

/* =====================================================
   BRANDS SECTION
   ===================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}

.brand-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(192,22,30,0.35);
}

.brand-icon {
  width: 56px;
  height: 56px;
  background: rgba(192,22,30,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  margin: 0 auto 1rem;
  transition: all var(--transition);
}

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

.brand-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

/* =====================================================
   WHY US SECTION
   ===================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,22,30,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,22,30,0.35);
  background: rgba(255,255,255,0.07);
}

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

.why-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  user-select: none;
}

.why-icon {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.test-stars {
  color: #f5a623;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.test-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.test-author strong {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondary);
}

.test-author span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.test-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.test-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

.test-dots {
  display: flex;
  gap: 8px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.test-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 99px;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateX(6px);
  border-color: rgba(192,22,30,0.35);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192,22,30,0.1);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-card-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.contact-card-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-card-content a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  transition: color var(--transition);
}

.contact-card-content a:hover { color: var(--primary-dark); }

.contact-card-content span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Contact Form */
.contact-form-wrap {
  position: relative;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(192,22,30,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: center;
  position: absolute;
  inset: 0;
}

.form-success i {
  font-size: 3rem;
  color: var(--success);
}

.form-success h4 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--secondary);
}

.form-success p { color: var(--text-muted); }

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.map-placeholder {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  text-align: center;
  border: 1px solid rgba(192,22,30,0.15);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.7;
}

.map-placeholder h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.map-placeholder p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-top { padding: 4rem 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(192,22,30,0.35);
  border: 1.5px solid rgba(192,22,30,0.3);
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 10px;
  transition: all var(--transition);
}

.whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}

.footer-links h4,
.footer-products h4,
.footer-contact h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links ul li,
.footer-products ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul a,
.footer-products ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links ul a:hover,
.footer-products ul a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-links ul a i,
.footer-products ul a i {
  font-size: 0.65rem;
  color: var(--primary);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--primary-light); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.2rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 900;
  transition: all var(--transition);
  animation: waPulse 2.5s ease infinite;
}

.float-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0.1); }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.float-whatsapp:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Scroll To Top */
.scroll-top-btn {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  z-index: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
  pointer-events: none;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

/* =====================================================
   ANIMATIONS (AOS-style)
   ===================================================== */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"]    { transform: scale(0.85); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* =====================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ===================================================== */
@media (max-width: 1024px) {

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 480px; margin: 0 auto; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .brands-grid { grid-template-columns: repeat(3, 1fr); }

  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .contact-grid { grid-template-columns: 1fr; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ===================================================== */
@media (max-width: 768px) {

  .section { padding: 70px 0; }

  /* Top bar */
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-left  { display: none; }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15,15,26,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.96);
    transition: all var(--transition);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
  }

  .nav-link {
    color: var(--white);
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }

  .hamburger { display: flex; z-index: 1001; position: relative; }
  .btn-nav   { display: none; }

  /* Hero */
  .hero-content { padding: 100px 0 80px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; }
  .stat-num { font-size: 1.7rem; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Brands */
  .brands-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }

  /* About stack */
  .about-img-stack { height: 280px; }
  .about-badge-float { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* =====================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ===================================================== */
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .contact-form { padding: 1.5rem; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .float-whatsapp { bottom: 1.2rem; right: 1.2rem; width: 52px; height: 52px; font-size: 1.4rem; }
  .scroll-top-btn { bottom: 5rem; right: 1.2rem; }
}

/* =====================================================
   SERVICES SECTION — MANPOWER & ALUMINIUM
   ===================================================== */
.services-section {
  background: var(--white);
}

/* ---- Block wrapper ---- */
.services-block {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}

.services-block-alt {
  background: linear-gradient(135deg, #0d0000 0%, #1a0505 60%, #2a0808 100%);
  border-color: rgba(192,22,30,0.2);
}

.services-block-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.services-block-alt .services-block-header {
  border-bottom-color: rgba(255,255,255,0.1);
}

.services-block-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(192,22,30,0.1);
  color: var(--primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-block-icon-alt {
  background: rgba(192,22,30,0.25);
  color: var(--primary-light);
  box-shadow: 0 4px 16px rgba(192,22,30,0.3);
}

.services-block-header h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.2rem;
}

.services-block-alt .services-block-header h3 {
  color: var(--white);
}

.services-block-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.services-block-alt .services-block-header p {
  color: rgba(255,255,255,0.55);
}

/* ---- Manpower Cards ---- */
.manpower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.manpower-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.manpower-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(192,22,30,0.2);
}

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

.manpower-avatar {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(192,22,30,0.12), rgba(192,22,30,0.05));
  border: 2px solid rgba(192,22,30,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: all var(--transition);
}

.manpower-avatar-eng {
  background: linear-gradient(135deg, rgba(150,15,22,0.15), rgba(192,22,30,0.06));
  border-color: rgba(150,15,22,0.2);
  color: var(--primary-dark);
}

.manpower-card:hover .manpower-avatar {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08) rotate(-5deg);
}

.manpower-badge {
  display: inline-block;
  background: rgba(192,22,30,0.1);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 0.5rem;
}

.manpower-badge-eng {
  background: rgba(150,15,22,0.1);
  color: var(--primary-dark);
}

.manpower-content h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}

.manpower-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.manpower-skills {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.4rem;
}

.manpower-skills li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
}

.manpower-skills li i {
  color: var(--primary);
  font-size: 0.72rem;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(192,22,30,0.3);
}

.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,22,30,0.5);
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.service-cta-btn-eng {
  background: linear-gradient(135deg, var(--primary-dark), #6b0a0f);
}

/* ---- Aluminium Cards ---- */
.aluminium-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.aluminium-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.aluminium-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,22,30,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.aluminium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192,22,30,0.4);
  background: rgba(255,255,255,0.08);
}

.aluminium-card:hover::after {
  opacity: 1;
}

.aluminium-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.aluminium-card-top i {
  font-size: 1.8rem;
  color: var(--primary-light);
}

.alum-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(192,22,30,0.2);
  color: var(--primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  border: 1px solid rgba(192,22,30,0.3);
}

.aluminium-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.aluminium-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.alum-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.alum-specs span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.alum-specs span i {
  color: var(--primary);
  font-size: 0.72rem;
  width: 14px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .aluminium-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .manpower-grid  { grid-template-columns: 1fr; }
  .aluminium-grid { grid-template-columns: 1fr; }
  .manpower-card  { flex-direction: column; }
  .services-block { padding: 1.5rem; }
}

/* =====================================================
   OUR WORK / PORTFOLIO SECTION
   ===================================================== */
.our-work-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Subtle grid bg texture */
.our-work-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192,22,30,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,22,30,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.our-work-section .section-title { color: var(--white); }
.our-work-section .section-subtitle { color: rgba(255,255,255,0.5); }

/* ---- Filter Tabs ---- */
.work-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.8rem;
}

.work-filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  border: 1.5px solid rgba(255,255,255,0.12);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-body);
}

.work-filter-btn:hover {
  color: var(--white);
  border-color: rgba(192,22,30,0.5);
  background: rgba(192,22,30,0.08);
}

.work-filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(192,22,30,0.4);
}

/* ---- Portfolio Grid ---- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1.2rem;
  margin-bottom: 3rem;
}

/* Wide card spans 2 columns */
.work-card-wide {
  grid-column: span 2;
}

/* ---- Individual Card ---- */
.work-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.work-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 2;
}

/* Image area */
.work-img {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ---- Placeholder visuals (beautiful gradient backgrounds) ---- */
.work-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.5s ease;
}

.work-card:hover .work-img-placeholder {
  transform: scale(1.08);
}

/* Each category gets its own rich gradient */
.work-kitchen {
  background: linear-gradient(135deg, #2c1810 0%, #5c3317 35%, #8b4513 60%, #c8680a 100%);
}
.work-wardrobe {
  background: linear-gradient(135deg, #1a0a0a 0%, #3d1515 40%, #7b2d2d 70%, #c0161e 100%);
}
.work-tv {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3d 40%, #2d2d7b 70%, #3d3dbc 100%);
}
.work-sliding {
  background: linear-gradient(135deg, #0a1a10 0%, #153d20 40%, #1a6e3c 70%, #22a85a 100%);
}
.work-door {
  background: linear-gradient(135deg, #1a100a 0%, #3d2415 40%, #7b4a2d 70%, #b8621e 100%);
}
.work-window {
  background: linear-gradient(135deg, #0a1520 0%, #0f3460 40%, #1565c0 70%, #1e88e5 100%);
}
.work-office {
  background: linear-gradient(135deg, #100a1a 0%, #2d153d 40%, #5a2d7b 70%, #8e44ad 100%);
}
.work-hotel {
  background: linear-gradient(135deg, #1a1500 0%, #3d3200 40%, #7b6500 70%, #c8a600 100%);
}
.work-study {
  background: linear-gradient(135deg, #001a10 0%, #003d24 40%, #006e45 70%, #00a866 100%);
}

/* Icon styling in placeholders */
.work-img-placeholder i {
  opacity: 0.35;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-card:hover .work-img-placeholder i {
  opacity: 0.5;
  transform: scale(1.15) rotate(-5deg);
}

/* ---- Hover Overlay ---- */
.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(192,22,30,0.35) 60%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-overlay-content {
  transform: translateY(14px);
  transition: transform 0.4s ease;
}

.work-card:hover .work-overlay-content {
  transform: translateY(0);
}

.work-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(192,22,30,0.8);
  color: var(--white);
  padding: 0.2rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 0.5rem;
}

.work-cat-alum { background: rgba(21,101,192,0.85); }
.work-cat-comm { background: rgba(106,27,154,0.85); }

.work-overlay-content h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.work-overlay-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.work-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--primary);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  transition: all var(--transition);
}

.work-enquire-btn:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

/* ---- Bottom info bar on each card ---- */
.work-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 1.8rem 1rem 0.75rem;
  transition: opacity 0.4s ease;
}

.work-card:hover .work-info {
  opacity: 0;
}

.work-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.work-info span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.work-info span i {
  color: var(--primary);
  font-size: 0.65rem;
}

/* ---- CTA Banner ---- */
.work-cta-banner {
  background: linear-gradient(135deg, rgba(192,22,30,0.15) 0%, rgba(150,15,22,0.08) 100%);
  border: 1px solid rgba(192,22,30,0.25);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.work-cta-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.work-cta-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.work-cta-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.work-wa-btn {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.work-wa-btn:hover {
  background: #1ebe5a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* ---- Filter hide/show animation ---- */
.work-card.hidden {
  display: none;
}

.work-card.fade-in {
  animation: cardFadeIn 0.4s ease both;
}

@keyframes cardFadeIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }
  .work-card-wide { grid-column: span 2; }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .work-card-wide { grid-column: span 1; }
  .work-cta-banner {
    flex-direction: column;
    text-align: center;
  }
  .work-cta-btns { justify-content: center; }
}

/* =====================================================
   OUR WORK — REAL IMAGE STYLES
   ===================================================== */

/* Make every work card a fixed-height container */
.work-card .work-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

/* Real photo fills the card exactly */
.work-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card:hover .work-real-img {
  transform: scale(1.08);
}

/* Loading shimmer while images load */
.work-real-img {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.05) 75%
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
}

/* Stop shimmer once image has loaded (set via JS) */
.work-real-img.loaded {
  animation: none;
  background: none;
}

@keyframes shimmer {
  0%   { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.work-fallback {
  background: linear-gradient(135deg, #1a0505, #3d1515);
  color: rgba(255,255,255,0.2);
  font-size: 3rem;
}

/* =====================================================
   FLOATING CALL BUTTON
   ===================================================== */
.float-call {
  position: fixed;
  bottom: 7rem;          /* sits just above the WhatsApp button */
  right: 2rem;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 24px rgba(192,22,30,0.5);
  z-index: 900;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  /* start hidden — JS fades it in */
  opacity: 0;
  transform: scale(0.5);
}

.float-call:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 35px rgba(192,22,30,0.7);
}

/* Ripple ring */
.call-ripple {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(192,22,30,0.6);
  animation: callRipple 1.8s ease-out infinite;
  pointer-events: none;
}

@keyframes callRipple {
  0%   { transform: scale(1);    opacity: 0.8; }
  100% { transform: scale(1.65); opacity: 0;   }
}

/* Second ripple — offset for double-ring effect */
.float-call::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid rgba(192,22,30,0.35);
  animation: callRipple 1.8s 0.6s ease-out infinite;
  pointer-events: none;
}

/* Tooltip */
.call-tooltip {
  position: absolute;
  right: 68px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: all var(--transition);
  font-family: var(--font-body);
}

.call-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}

.float-call:hover .call-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Phone icon shake on hover */
.float-call:hover i {
  animation: phoneShake 0.5s ease;
}

@keyframes phoneShake {
  0%,100% { transform: rotate(0deg); }
  20%      { transform: rotate(-20deg); }
  40%      { transform: rotate(20deg); }
  60%      { transform: rotate(-15deg); }
  80%      { transform: rotate(10deg); }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .float-call {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
    bottom: 6.2rem;
    right: 1.2rem;
  }
}

/* MPC shop image — show full shop front, anchor to center */
.about-img-1 .about-real-img {
  object-position: center center;
}

/* =====================================================
   LOADER — Namaste Motihari TEXT
   ===================================================== */
.loader-namaste {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(10px);
  animation: namasteAppear 0.7s 0.5s ease forwards;
}

/* The 🙏 emoji gets a little sway */
.loader-namaste::first-letter {
  display: inline-block;
  animation: namasteSway 1.2s 1.2s ease-in-out infinite alternate;
}

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

@keyframes namasteSway {
  from { transform: rotate(-12deg); }
  to   { transform: rotate(12deg);  }
}

/* =====================================================
   ABOUT — SINGLE IMAGE LAYOUT
   ===================================================== */
.about-img-single {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-single-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-single:hover .about-single-img {
  transform: scale(1.02);
}

/* Subtle red accent border glow */
.about-img-single::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--primary), transparent 60%);
  opacity: 0.35;
  z-index: -1;
}

/* Badge repositioned for single image */
.about-img-single .about-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  top: auto;
  left: auto;
  z-index: 3;
}

@media (max-width: 768px) {
  .about-img-single .about-badge-float { right: 10px; bottom: -14px; }
}.
