/*
 * Chintuart — Static Website
 * Signage & Outdoor Advertising, Ahmedabad
 * Professional Design System
 */

/* ─── Google Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --primary:        #e63829;
  --primary-dark:   #c0392b;
  --primary-light:  rgba(230,56,41,0.12);
  --dark:           #14142b;
  --darker:         #0a0a18;
  --navy:           #1e2a4a;
  --gold:           #f5b301;
  --gold-light:     rgba(245,179,1,0.15);
  --white:          #ffffff;
  --light:          #f8f9fc;
  --gray-100:       #f1f3f7;
  --gray-200:       #e4e8f0;
  --gray-500:       #8892a4;
  --gray-700:       #4a5568;
  --text:           #1e2535;
  --text-muted:     #7a8494;
  --border:         #e4e8f0;
  --border-dark:    rgba(255,255,255,0.08);

  --font:           'Poppins', sans-serif;
  --font-body:      'Inter', sans-serif;

  --section-py:     90px;
  --container:      1240px;
  --gap:            24px;

  --shadow-sm:      0 2px 12px rgba(0,0,0,0.06);
  --shadow:         0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:      0 20px 60px rgba(0,0,0,0.15);
  --shadow-red:     0 12px 40px rgba(230,56,41,0.30);
  --shadow-card:    0 4px 20px rgba(20,20,43,0.08);

  --radius:         10px;
  --radius-lg:      18px;
  --radius-xl:      28px;
  --radius-pill:    100px;

  --transition:     all 0.28s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:all 0.55s cubic-bezier(0.4,0,0.2,1);

  --header-h:       80px;
}

/* ─── Copy Protection ───────────────────────────────────────────────────── */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::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);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font-body); }

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 { font-family: var(--font); line-height: 1.25; font-weight: 700; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--gray-700); line-height: 1.8; }

.text-white   { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-gold    { color: var(--gold) !important; }
.text-muted   { color: var(--text-muted) !important; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.fw-600       { font-weight: 600; }
.fw-700       { font-weight: 700; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: var(--section-py) 0;
}
.section-sm { padding: 60px 0; }
.section-lg { padding: 120px 0; }
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-gray { background: var(--light); }
.section-navy { background: var(--navy); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: var(--gap); }
.flex     { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ─── Section Header ─────────────────────────────────────────────────────── */
.section-header {
  margin-bottom: 56px;
}
.section-header.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-header.center .section-subtitle { margin: 0 auto; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(230,56,41,0.45);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: #e6a800;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245,179,1,0.4);
}
.btn-icon { width: 20px; height: 20px; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Header / Navigation ──────────────────────────────────────────────────── */

/* Top accent bar */
#site-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 40%, var(--gold) 70%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: accentShift 6s linear infinite;
  z-index: 2;
}
@keyframes accentShift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
#site-header.transparent {
  background: linear-gradient(180deg, rgba(6,6,20,0.82) 0%, rgba(6,6,20,0.40) 60%, transparent 100%);
}
#site-header.scrolled {
  background: rgba(8, 8, 24, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 48px rgba(0,0,0,0.45), 0 1px 0 rgba(255,255,255,0.04) inset;
}
#site-header.scrolled .header-inner { height: 66px; }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: height 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Logo ── */
.site-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 6px 14px 6px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20), 0 0 0 0 rgba(230,56,41,0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.site-logo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(230,56,41,0.5), rgba(245,179,1,0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.site-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28), 0 0 0 3px rgba(230,56,41,0.18);
  background: #ffffff;
}
.site-logo:hover::after { opacity: 1; }
.site-logo img { height: 44px; width: auto; display: block; }

/* ── Desktop Nav ── */
.main-nav { display: flex; align-items: center; gap: 0; }

.nav-link {
  position: relative;
  padding: 10px 17px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  letter-spacing: 0.025em;
  border-radius: 8px;
  transition: color 0.25s ease, background 0.25s ease;
  overflow: hidden;
}

/* Animated underline bar */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 24px);
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  opacity: 0;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
}
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}
.nav-link.active {
  color: #ffffff;
  font-weight: 600;
  background: rgba(230,56,41,0.12);
}
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
  background: linear-gradient(90deg, var(--primary), #ff8a80);
}

/* ── Contact Us CTA ── */
.nav-cta {
  margin-left: 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff !important;
  background: linear-gradient(135deg, #e63829 0%, #c0392b 100%);
  border-radius: 50px;
  border: 1px solid rgba(255,120,100,0.35);
  box-shadow: 0 4px 20px rgba(230,56,41,0.40), 0 1px 0 rgba(255,255,255,0.15) inset;
  letter-spacing: 0.03em;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 40%; height: 200%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}
.nav-cta::after {
  display: none; /* disable underline for CTA */
}
.nav-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #f04535 0%, #d44030 100%);
  box-shadow: 0 8px 32px rgba(230,56,41,0.55), 0 1px 0 rgba(255,255,255,0.15) inset;
  color: #ffffff !important;
}
.nav-cta:hover::before { left: 130%; }

/* ── Mobile Menu Toggle ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
  transition: background 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}
.menu-toggle:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease, width 0.25s ease;
}
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle.open span:nth-child(2) { width: 22px; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: linear-gradient(180deg, rgba(8,8,24,0.98) 0%, rgba(10,10,28,0.99) 100%);
  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 10px 16px 32px;
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.32s ease, visibility 0.32s ease, transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230,56,41,0.5) 40%, rgba(245,179,1,0.4) 60%, transparent);
}
.mobile-nav.open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  font-family: var(--font);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  border-radius: 12px;
  border-left: 2px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
}
.mobile-nav-link:hover {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  border-left-color: rgba(230,56,41,0.5);
  padding-left: 22px;
}
.mobile-nav-sub { padding-left: 10px; border-left: 2px solid rgba(230,56,41,0.25); margin: 2px 14px 6px; }
.mobile-nav-sub .mobile-nav-link { font-size: 0.875rem; color: rgba(255,255,255,0.55); }
.mobile-nav-section { padding: 10px 18px 4px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,179,1,0.75); margin-top: 6px; }

/* ─── Page Hero ──────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 340px;
  background: linear-gradient(135deg, var(--darker) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230,56,41,0.18) 0%, transparent 70%);
}
.page-hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--white); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 520px; }

/* ─── HERO (Homepage) ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.20;
  filter: blur(0px);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,14,27,0.97) 0%,
    rgba(20,20,43,0.90) 50%,
    rgba(230,56,41,0.08) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(230,56,41,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,179,1,0.08) 0%, transparent 70%);
  bottom: -50px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 40px) 0 80px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230,56,41,0.12);
  border: 1px solid rgba(230,56,41,0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge span { animation: pulse-dot 2s ease-in-out infinite; }
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 10px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; animation: slideUp 0.6s cubic-bezier(0.4,0,0.2,1) both; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat { }
.hero-stat-num {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-num .plus { color: var(--primary); }
.hero-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Decorative glow ring behind image */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 88%;
  height: 88%;
  border-radius: 30px;
  background: radial-gradient(ellipse at center, rgba(230,56,41,0.22) 0%, rgba(245,179,1,0.10) 55%, transparent 80%);
  filter: blur(32px);
  z-index: 0;
  pointer-events: none;
}

/* Decorative dot-grid corner */
.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 10px; left: -10px;
  width: 120px; height: 120px;
  background-image: radial-gradient(rgba(230,56,41,0.45) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  border-radius: 8px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  z-index: 1;
  /* space for the overflowing badges */
  padding: 24px 24px 44px 28px;
  margin: 0 auto;
  animation: heroWrapIn 1s cubic-bezier(0.4,0,0.2,1) 0.35s both;
}

/* Rotating gradient border ring */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  top: 24px; left: 28px; right: 24px; bottom: 44px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: conic-gradient(from var(--border-angle),
    rgba(230,56,41,0.85),
    rgba(245,179,1,0.80),
    rgba(255,255,255,0.35),
    rgba(245,179,1,0.80),
    rgba(230,56,41,0.85));
  animation: borderRotate 5s linear infinite;
  z-index: -1;
  opacity: 0.75;
  margin: -3px;
}

.hero-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--darker);
}

.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.hero-img-main img.active {
  opacity: 1;
  animation: kenBurns 4.5s cubic-bezier(0.0,0.0,0.2,1) forwards;
}

/* Slide counter overlay (top-left) */
.hero-img-main::before {
  content: attr(data-slide);
  position: absolute;
  top: 14px; left: 14px;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ── Prev / Next Arrows ── */
.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(10,10,24,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
  line-height: 1;
}
.hero-img-main:hover .hero-slider-arrow { opacity: 1; }
.hero-slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 22px rgba(230,56,41,0.50);
  transform: translateY(-50%) scale(1.12);
  opacity: 1;
}
.hero-slider-prev { left: 12px; }
.hero-slider-next { right: 12px; }

/* ── Slide dots ── */
.hero-slide-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hero-slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.3s ease, border-radius 0.3s ease;
}
.hero-slide-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #ffffff;
}

/* ── Slide progress bar ── */
.hero-progress-bar {
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
  border-radius: 0 0 4px 4px;
  z-index: 15;
  pointer-events: none;
  box-shadow: 2px 0 10px rgba(230,56,41,0.45);
}
.hero-progress-bar.running {
  animation: progressFill 3.5s linear forwards;
}

/* ── Badge: Award-Winning ── */
.hero-img-badge {
  position: absolute;
  bottom: 6px; left: 4px;
  background: #ffffff;
  border-radius: 16px;
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.20), 0 2px 0 rgba(0,0,0,0.06);
  animation: slideInLeft 0.7s ease 0.5s both;
  z-index: 5;
  min-width: 190px;
  border: 1px solid rgba(0,0,0,0.06);
}
.hero-img-badge-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(230,56,41,0.12), rgba(245,179,1,0.18));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  animation: badgeIconPulse 3.5s ease-in-out 1.5s infinite;
}
.hero-img-badge-text { font-size: 0.82rem; line-height: 1.45; }
.hero-img-badge-text strong { display: block; font-family: var(--font); font-weight: 700; color: var(--dark); font-size: 0.875rem; }
.hero-img-badge-text span { color: var(--text-muted); }

/* ── Badge: 5-Star Rated ── */
.hero-img-badge-2 {
  position: absolute;
  top: 4px; right: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: var(--white);
  border-radius: 14px;
  padding: 11px 20px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 28px rgba(230,56,41,0.45), 0 1px 0 rgba(255,255,255,0.15) inset;
  animation: slideInRight 0.7s ease 0.7s both;
  z-index: 5;
  white-space: nowrap;
  border: 1px solid rgba(255,120,100,0.30);
}

/* ─── Ticker / Logo Strip ─────────────────────────────────────────────────── */
.ticker-section {
  padding: 40px 0;
  background: var(--darker);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.ticker-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 32px;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: ticker 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track img {
  height: 60px;
  width: 160px;
  object-fit: contain;
  filter: none;
  flex-shrink: 0;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: var(--transition);
}
.ticker-track img {
  cursor: pointer;
}
.ticker-track img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
}
.ticker-wrapper { display: flex; overflow: hidden; }

/* ─── Brand Tooltip ──────────────────────────────────────────────────────── */
#brandTip {
  position: fixed;
  z-index: 9990;
  background: rgba(8,8,24,0.95);
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(230,56,41,0.35);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05) inset;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#brandTip.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#brandTip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(8,8,24,0.95);
}

/* ─── Stats Counter ──────────────────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(160deg, #08081a 0%, #12122a 45%, #1c0808 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(230,56,41,0.18) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.stat-card {
  padding: 48px 28px 40px;
  text-align: center;
  background: linear-gradient(170deg, rgba(255,255,255,0.03) 0%, rgba(10,10,24,0.6) 100%);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-card:hover::before { transform: scaleX(1); }
.stat-card:hover { background: rgba(255,255,255,0.055); }
.stat-icon-ring {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(230,56,41,0.1);
  border: 1.5px solid rgba(230,56,41,0.35);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--primary);
  transition: var(--transition);
}
.stat-card:hover .stat-icon-ring {
  background: rgba(230,56,41,0.22);
  box-shadow: 0 0 28px rgba(230,56,41,0.3), inset 0 0 12px rgba(230,56,41,0.1);
  border-color: rgba(230,56,41,0.6);
}
.stat-number {
  font-family: var(--font);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: block;
  letter-spacing: -2px;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0;
}
.stat-divider {
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  margin: 14px auto 13px;
  transition: width 0.3s ease;
}
.stat-card:hover .stat-divider { width: 56px; }
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Services Grid ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  border: 1px solid var(--border);
  group: true;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(230,56,41,0.18), 0 8px 24px rgba(0,0,0,0.1);
  border-color: rgba(230,56,41,0.28);
}
.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-card-img img { transform: scale(1.1); }
.service-card-img::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 55%; height: 100%;
  background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: skewX(-18deg);
  z-index: 2;
  pointer-events: none;
}
.service-card:hover .service-card-img::before {
  animation: sc-shine 0.65s ease forwards;
}
@keyframes sc-shine {
  from { left: -75%; }
  to   { left: 130%; }
}
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,35,0.82) 0%, rgba(15,15,35,0.1) 55%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}
.service-card:hover .service-card-overlay { opacity: 1; }
.service-card-category {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(230,56,41,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover .service-card-category {
  transform: scale(1.06);
  box-shadow: 0 4px 18px rgba(230,56,41,0.65);
}
.service-card-body {
  padding: 22px 24px 26px;
}
.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font);
}
.service-card-link { transition: gap 0.25s ease; }
.service-card-link svg { transition: transform 0.25s ease; }
.service-card:hover .service-card-link { gap: 11px; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ─── Gallery / Portfolio ─────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-grid.masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-grid.masonry .gallery-item { break-inside: avoid; margin-bottom: 16px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-100);
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,43,0.85) 0%, rgba(20,20,43,0.2) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { color: var(--white); }
.gallery-overlay-content h4 { font-size: 0.95rem; margin-bottom: 4px; }
.gallery-overlay-content span { font-size: 0.78rem; opacity: 0.75; }
.gallery-zoom {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%,-50%) scale(1); }

/* Gallery Filter */
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.84rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ─── Lightbox ────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
  animation: zoomIn 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--primary); border-color: var(--primary); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  text-align: center;
  max-width: 80%;
}

/* ─── About Section ──────────────────────────────────────────────────────── */
.about-img-group {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; object-fit: cover; max-height: 480px; }
.about-img-secondary {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  top: -16px; left: -16px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about-badge-num { font-size: 2rem; font-weight: 900; font-family: var(--font); line-height: 1; }
.about-badge-text { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; opacity: 0.9; }

.features-list { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--primary);
}
.feature-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; color: var(--dark); }
.feature-text p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── Team Cards ─────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-slow);
  border: 1px solid var(--border);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card-img { aspect-ratio: 1; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.team-card:hover .team-card-img img { transform: scale(1.05); }
.team-card-body { padding: 24px 20px; }
.team-card-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card-role { font-size: 0.82rem; color: var(--primary); font-weight: 500; }

/* ─── Why Choose Us ───────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.why-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(230,56,41,0.28);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(230,56,41,0.12);
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #e63829 0%, #f5701a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(230,56,41,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover .why-icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 14px 36px rgba(230,56,41,0.55);
}
.why-icon svg {
  width: 26px; height: 26px;
  stroke: #ffffff;
  fill: none;
  flex-shrink: 0;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin: 0; }

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,56,41,0.15) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,179,1,0.08) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.65); margin: 0; max-width: 480px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }

/* ─── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.contact-card-icon {
  width: 50px; height: 50px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  color: var(--primary);
}
.contact-card-text h4 { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.contact-card-text p, .contact-card-text a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin: 0; }
.contact-card-text a:hover { color: var(--primary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }
.form-subtitle { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-input, .form-textarea, .form-select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  padding: 14px 18px;
  background: rgba(39,174,96,0.1);
  border: 1.5px solid rgba(39,174,96,0.3);
  border-radius: var(--radius);
  color: #27ae60;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }

/* ─── WhatsApp Float ─────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  z-index: 998;
  transition: var(--transition);
  animation: bounce-in 0.6s ease 1s both;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-tooltip {
  position: absolute;
  right: 100%;
  top: 50%; transform: translateY(-50%);
  margin-right: 12px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-red);
  z-index: 997;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--darker);
  color: var(--white);
}
.footer-top {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border-dark);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo-link {
  display: inline-block;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 12px;
  margin-bottom: 4px;
  line-height: 0;
  transition: var(--transition);
}
.footer-logo-link:hover { background: #f5f5f5; }
.footer-logo-link img { max-width: 150px; height: auto; display: block; }
.footer-logo img { height: 50px; margin-bottom: 18px; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-social:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.footer-col-title {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-link:hover { color: var(--primary); padding-left: 4px; }
.footer-link::before { content: '→'; font-size: 0.7rem; opacity: 0; transition: var(--transition); }
.footer-link:hover::before { opacity: 1; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-copy a { color: var(--primary); }

/* ─── Developer Credit ────────────────────────────────────────────────────── */
.footer-dev-credit { display: flex; align-items: center; }
.footer-dev-text {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.38);
  background: linear-gradient(90deg, rgba(230,56,41,0.12) 0%, rgba(255,200,60,0.10) 50%, rgba(230,56,41,0.12) 100%);
  border: 1px solid rgba(230,56,41,0.25);
  border-radius: 30px;
  padding: 5px 20px;
  transition: color 0.2s, border-color 0.2s;
}
.footer-dev-text strong {
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.footer-dev-text a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-dev-text a:hover { color: var(--white); }
.footer-dev-credit:hover .footer-dev-text {
  color: rgba(255,255,255,0.65);
  border-color: rgba(230,56,41,0.5);
}

/* ─── Visitor Counter Widget ──────────────────────────────────────────────── */
.visitor-counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  user-select: none;
}
.visitor-counter:hover {
  background: rgba(230,56,41,0.08);
  border-color: rgba(230,56,41,0.25);
  box-shadow: 0 0 18px rgba(230,56,41,0.12);
}

/* Live pulse dot */
.visitor-counter-pulse {
  position: absolute;
  top: -3px; right: -3px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.7);
  animation: vcPulse 2s ease-out infinite;
}
@keyframes vcPulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.visitor-counter-icon {
  color: rgba(255,255,255,0.40);
  flex-shrink: 0;
}
.visitor-counter:hover .visitor-counter-icon { color: var(--primary); }

.visitor-counter-body {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
}
.visitor-counter-num {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.visitor-counter:hover .visitor-counter-num { color: #ffffff; }
.visitor-counter-label {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-30px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideInRight {
  from { transform: translateX(30px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Hero slider animations ── */
@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0.5%, 0.5%); }
  40%  { transform: scale(1.04) translate(-0.3%, 0.2%); }
  100% { transform: scale(1.0)  translate(0, 0); }
}
@keyframes borderRotate {
  to { --border-angle: 360deg; }
}
@keyframes heroWrapIn {
  from { opacity: 0; transform: translateX(44px) scale(0.96); }
  to   { opacity: 1; transform: translateX(0)    scale(1); }
}
@keyframes progressFill {
  from { height: 0%; }
  to   { height: 100%; }
}
@keyframes badgeIconPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%       { transform: scale(1.14) rotate(6deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes bounce-in {
  from { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes gradient-shift {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Delay helpers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* ─── Page Loader ─────────────────────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0;
  background: #08081a;
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 30px;
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1), visibility 0.55s ease;
  overflow: hidden;
}
/* Dot grid background */
.page-loader::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Central red glow */
.page-loader::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse, rgba(230,56,41,0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Top progress bar */
.loader-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.06);
  z-index: 1;
}
.loader-topbar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  animation: loader-bar-anim 2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loader-bar-anim {
  0%   { width: 0%; }
  60%  { width: 75%; }
  100% { width: 100%; }
}

/* Ring wrapper */
.loader-ring-wrap {
  position: relative;
  width: 116px; height: 116px;
  z-index: 1;
}

/* Spinning SVG ring */
.loader-ring-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: loader-spin 1.5s linear infinite;
  transform-origin: center;
}
.loader-ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.05);
  stroke-width: 2.5;
}
.loader-ring-arc {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 198 66;
}
@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* Logo centered inside ring */
.loader-logo-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.loader-logo-center img {
  height: 48px;
  background: #ffffff;
  padding: 7px 11px;
  border-radius: 10px;
  display: block;
  animation: loader-logo-pulse 2s ease-in-out infinite;
}
@keyframes loader-logo-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.25); }
  50%       { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

/* Brand text below ring */
.loader-text-wrap {
  display: flex; flex-direction: column;
  align-items: center; gap: 7px;
  z-index: 1;
  animation: fadeIn 0.6s ease 0.2s both;
}
.loader-brand-name {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.45em;
  text-transform: uppercase;
}
.loader-brand-tagline {
  font-family: var(--font);
  font-size: 0.58rem;
  font-weight: 400;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.22em;
}

/* ─── Misc Utilities ─────────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.divider-dark { background: var(--border-dark); }
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--primary-light);
  color: var(--primary);
}
.badge-red { background: var(--primary); color: var(--white); padding: 3px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 600; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 70px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 56px; --header-h: 68px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 56px;
  }

  /* ── Hero image: show on mobile, full-width ── */
  .hero-visual {
    display: flex;
    width: 100%;
  }
  /* Remove decorative dot-grid corner on mobile (too busy) */
  .hero-visual::after { display: none; }

  .hero-img-wrapper {
    max-width: 100%;
    width: 100%;
    padding: 14px 14px 52px 14px; /* bottom space for Award badge overflow */
  }
  /* Keep rotating border but tighten it */
  .hero-img-wrapper::before {
    top: 14px; left: 14px; right: 14px; bottom: 52px;
  }
  .hero-img-main {
    aspect-ratio: 16 / 10; /* slightly wider on mobile for better fit */
  }
  /* Shrink slider arrows on mobile */
  .hero-slider-arrow {
    width: 34px; height: 34px;
    font-size: 1rem;
    opacity: 1; /* always visible on mobile (no hover) */
  }
  /* Award-Winning badge — keep but compact */
  .hero-img-badge {
    bottom: 4px; left: 4px;
    padding: 10px 13px;
    min-width: auto;
    gap: 9px;
  }
  .hero-img-badge-icon {
    width: 36px; height: 36px;
    font-size: 1.2rem;
  }
  .hero-img-badge-text strong { font-size: 0.8rem; }
  .hero-img-badge-text span   { font-size: 0.72rem; }
  /* 5-Star badge — keep, compact */
  .hero-img-badge-2 {
    top: 4px; right: 4px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .gallery-grid.masonry { columns: 2; }
  .form-grid { grid-template-columns: 1fr; }
  .about-img-secondary { display: none; }
  .about-badge { top: auto; bottom: -16px; }
  .lightbox-nav { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .btn-group { flex-direction: column; }
  .gallery-grid.masonry { columns: 1; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .stats-grid { grid-template-columns: 1fr; }
  /* Very small screens: hide Award badge (save space), keep 5-Star */
  .hero-img-badge { display: none; }
  .hero-img-badge-2 { font-size: 0.72rem; padding: 6px 11px; }
  .hero-slider-arrow { width: 30px; height: 30px; }
  .hero-img-wrapper { padding-bottom: 28px; }
  .hero-img-wrapper::before { bottom: 28px; }
}


/* ══════════════════════════════════════════════════════════════════════════
   PROFESSIONAL ANIMATION ENHANCEMENTS — Chintuart
   ══════════════════════════════════════════════════════════════════════════ */

/* ─── Card Light-Sweep Shimmer ──────────────────────────────────────────── */
.service-card { isolation: isolate; }
.service-card::after,
.team-card::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.10) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
  z-index: 5;
}
.service-card:hover::after,
.team-card:hover::after { left: 145%; }

.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.06) 50%,
    transparent 80%
  );
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
  z-index: 5;
}
.why-card:hover::after { left: 145%; }

/* ─── Button Pulse Glow ─────────────────────────────────────────────────── */
@keyframes btn-pulse-glow {
  0%,100% { box-shadow: 0 12px 40px rgba(230,56,41,0.30); }
  50%      { box-shadow: 0 12px 40px rgba(230,56,41,0.60), 0 0 0 10px rgba(230,56,41,0.07); }
}
.btn-primary:not(.nav-cta) {
  animation: btn-pulse-glow 3.5s ease-in-out infinite;
}
.btn-primary:not(.nav-cta):hover { animation: none; }

/* ─── Reveal Blur (premium fade) ────────────────────────────────────────── */
.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  transition: opacity 0.75s ease, filter 0.75s ease, transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.reveal-blur.visible { opacity: 1; filter: blur(0); transform: translateY(0); }

/* ─── Reveal Pop (spring bounce) ────────────────────────────────────────── */
.reveal-pop {
  opacity: 0;
  transform: scale(0.84);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.reveal-pop.visible { opacity: 1; transform: scale(1); }

/* ─── Features List Staggered Entrance ─────────────────────────────────── */
.features-list .feature-item {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.features-list.fl-animated .feature-item              { opacity: 1; transform: none; }
.features-list.fl-animated .feature-item:nth-child(1) { transition-delay: 0.05s; }
.features-list.fl-animated .feature-item:nth-child(2) { transition-delay: 0.17s; }
.features-list.fl-animated .feature-item:nth-child(3) { transition-delay: 0.29s; }
.features-list.fl-animated .feature-item:nth-child(n+4){ transition-delay: 0.41s; }

/* ─── Hero Orb Multi-Directional Float ──────────────────────────────────── */
@keyframes orb-float-a {
  0%,100% { transform: translate(0, 0)      scale(1);    }
  33%     { transform: translate(32px,-24px) scale(1.07); }
  66%     { transform: translate(-20px,15px) scale(0.94); }
}
@keyframes orb-float-b {
  0%,100% { transform: translate(0, 0)       scale(1);    }
  40%     { transform: translate(-28px,24px) scale(1.09); }
  70%     { transform: translate(22px,-18px) scale(0.92); }
}
.hero-glow   { animation: orb-float-a 9s  ease-in-out infinite !important; }
.hero-glow-2 { animation: orb-float-b 12s ease-in-out infinite !important; }

/* ─── Scroll Indicator (hero bottom) ───────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 5; cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.8s ease 2.2s forwards;
}
.scroll-indicator:hover .scroll-mouse { border-color: var(--primary); }
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(255,255,255,0.38);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.3s ease;
}
.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px;
  background: rgba(255,255,255,0.75);
  border-radius: 2px;
  animation: scroll-dot-fall 1.9s ease-in-out infinite;
}
@keyframes scroll-dot-fall {
  0%   { top: 6px;  opacity: 1; }
  72%  { top: 18px; opacity: 0; }
  73%  { top: 6px;  opacity: 0; }
  100% { top: 6px;  opacity: 1; }
}
.scroll-chevrons {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.scroll-chevrons span {
  display: block; width: 8px; height: 8px;
  border-right: 1.5px solid rgba(255,255,255,0.38);
  border-bottom: 1.5px solid rgba(255,255,255,0.38);
  transform: rotate(45deg);
  animation: chevron-cascade 1.9s ease-in-out infinite;
}
.scroll-chevrons span:nth-child(2) { animation-delay: 0.22s; opacity: 0.6;  }
.scroll-chevrons span:nth-child(3) { animation-delay: 0.44s; opacity: 0.35; }
@keyframes chevron-cascade {
  0%,65%,100% { opacity: 0.35; transform: rotate(45deg) translate(0,0); }
  32%          { opacity: 1;    transform: rotate(45deg) translate(2px,2px); }
}
@media (max-width: 768px) { .scroll-indicator { display: none; } }

/* ─── Page Hero Content slide-up ────────────────────────────────────────── */
.page-hero-content {
  animation: fadeUp 0.7s cubic-bezier(0.4,0,0.2,1) 0.15s both;
}

/* ─── Contact Card Left-Accent on Hover ─────────────────────────────────── */
.contact-card:hover {
  transform: translateX(5px) !important;
  box-shadow: var(--shadow), inset 4px 0 0 var(--primary) !important;
}

/* ─── Stat Card Glow on Hover ───────────────────────────────────────────── */
.stat-card:hover {
  box-shadow: 0 0 0 1px rgba(230,56,41,0.25), 0 20px 52px rgba(0,0,0,0.44) !important;
}

/* ─── Why-Card Icon Hover Float ─────────────────────────────────────────── */
.why-card:hover .why-icon {
  animation: icon-hover-float 1.4s ease-in-out infinite !important;
}
@keyframes icon-hover-float {
  0%,100% { transform: translateY(-2px) scale(1.06);  }
  50%     { transform: translateY(-8px)  scale(1.12); }
}

/* ─── Gallery Zoom Icon Enhanced ────────────────────────────────────────── */
.gallery-zoom {
  background: rgba(230,56,41,0.90) !important;
  color: #ffffff;
}
.gallery-item:hover .gallery-zoom {
  box-shadow: 0 8px 28px rgba(230,56,41,0.45);
}

/* ─── Text Gradient Flow ────────────────────────────────────────────────── */
.text-gradient-flow {
  background: linear-gradient(270deg, var(--primary) 0%, var(--gold) 45%, var(--primary) 90%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease-in-out infinite;
}

/* ─── Process Number Ring Pulse on Hover ────────────────────────────────── */
.process-card:hover .process-number {
  box-shadow: 0 0 0 10px rgba(230,56,41,0.09),
              0 0 0 20px rgba(230,56,41,0.04),
              0 10px 30px rgba(230,56,41,0.30) !important;
}

/* ─── Hero Badge fade-in ────────────────────────────────────────────────── */
.hero-badge {
  animation: fadeIn 0.7s ease 0.3s both;
}

/* ─── Stagger Grid System ───────────────────────────────────────────────── */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.58s cubic-bezier(0.4,0,0.2,1),
              transform 0.58s cubic-bezier(0.4,0,0.2,1);
}
.stagger-grid.sg-visible > * { opacity: 1; transform: none; }
.stagger-grid.sg-visible > *:nth-child(1)  { transition-delay: 0.04s; }
.stagger-grid.sg-visible > *:nth-child(2)  { transition-delay: 0.10s; }
.stagger-grid.sg-visible > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger-grid.sg-visible > *:nth-child(4)  { transition-delay: 0.22s; }
.stagger-grid.sg-visible > *:nth-child(5)  { transition-delay: 0.28s; }
.stagger-grid.sg-visible > *:nth-child(6)  { transition-delay: 0.34s; }
.stagger-grid.sg-visible > *:nth-child(7)  { transition-delay: 0.40s; }
.stagger-grid.sg-visible > *:nth-child(8)  { transition-delay: 0.46s; }
.stagger-grid.sg-visible > *:nth-child(n+9){ transition-delay: 0.52s; }

/* ─── Tilt Card – preserve-3d base ─────────────────────────────────────── */
.service-card,
.why-card {
  will-change: transform;
}

/* ─── Section reveal – auto sibling stagger ─────────────────────────────── */
.reveal { --stagger-i: 0; }

/* ─── Additional Delay Utilities ────────────────────────────────────────── */
.delay-600 { transition-delay: 0.6s !important; }
.delay-700 { transition-delay: 0.7s !important; }
.delay-800 { transition-delay: 0.8s !important; }

/* ─── Marquee Services Pause on Hover ───────────────────────────────────── */
.marquee-services:hover .marquee-track {
  animation-play-state: paused;
}

/* ─── Enhanced Typewriter Cursor ────────────────────────────────────────── */
#typewriter {
  display: inline;
}
#typewriter::after {
  content: '|';
  color: var(--primary);
  font-weight: 400;
  animation: cursor-blink 0.9s step-end infinite;
  margin-left: 1px;
}
@keyframes cursor-blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ─── Footer Link hover refinement ─────────────────────────────────────── */
.footer-link {
  transition: color 0.22s ease, padding-left 0.25s ease;
}

/* ─── Nav CTA Hover Shimmer ─────────────────────────────────────────────── */
.nav-cta {
  overflow: hidden;
}

/* ─── Smooth Image Hover Scale (section images) ─────────────────────────── */
.about-img-main img,
.about-img-secondary img {
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.about-img-main:hover img   { transform: scale(1.04); }
.about-img-secondary:hover img { transform: scale(1.06); }

/* ─── Hero Stats Counter Pop ────────────────────────────────────────────── */
.hero-stat-num {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.hero-stat:hover .hero-stat-num { transform: scale(1.12); }

/* ─── Service Card Link Arrow Bounce ────────────────────────────────────── */
@keyframes arrow-bounce {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(5px); }
}
.service-card:hover .service-card-link svg {
  animation: arrow-bounce 0.6s ease infinite;
}


/* ══════════════════════════════════════════════════════════════════════════
   PROFESSIONAL ANIMATION ENHANCEMENTS — Phase 3
   Custom Cursor · Particles · Ripple · Split-Text · Scroll Progress
   ══════════════════════════════════════════════════════════════════════════ */

/* ─── Scroll Progress Bar ────────────────────────────────────────────────── */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 60%, var(--primary) 100%);
  background-size: 200% 100%;
  z-index: 10002;
  pointer-events: none;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(230,56,41,0.7), 0 0 4px rgba(245,179,1,0.5);
  animation: gradient-shift 3s linear infinite;
  transition: width 0.08s linear;
}

/* ─── Default cursor restored ────────────────────────────────────────────────── */
* { cursor: auto; }
a, button, [role="button"], .btn, .gallery-item, .service-card,
.filter-btn, .back-to-top, .nav-link, .nav-cta, label { cursor: pointer; }
input, textarea, select { cursor: text; }

/* ─── Hero Canvas Particles ──────────────────────────────────────────────── */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

/* ─── Button Ripple Effect ───────────────────────────────────────────────── */
.btn { position: relative; overflow: hidden; }
.ripple-wave {
  position: absolute;
  border-radius: 50%;
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.32);
  transform: scale(0);
  animation: ripple-out 0.65s linear forwards;
  pointer-events: none;
}
@keyframes ripple-out {
  to { transform: scale(180); opacity: 0; }
}

/* ─── Split-Char Animation ───────────────────────────────────────────────── */
.split-heading .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(55%) rotateX(36deg);
  transform-origin: bottom center;
  transition: opacity 0.45s cubic-bezier(0.4,0,0.2,1),
              transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.split-heading.chars-in .char {
  opacity: 1;
  transform: none;
}
.split-heading .space-char { display: inline-block; width: 0.28em; }

/* ─── Section Title Underline Swipe ─────────────────────────────────────── */
.u-line {
  position: relative;
  display: block;
}
.u-line::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 58px; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1) 0.15s;
}
.u-line.ul-visible::after { transform: scaleX(1); }
/* Centered variant */
.section-header.center .u-line::after {
  left: 50%; margin-left: -29px;
  transform-origin: center;
}

/* ─── Eyebrow Slide-In ───────────────────────────────────────────────────── */
.eyebrow {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.eyebrow.eyebrow-visible { opacity: 1; transform: none; }

/* ─── WhatsApp Float Pulse Ring ──────────────────────────────────────────── */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.75);
  animation: wa-ring-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-ring-pulse {
  0%   { transform: scale(1);    opacity: 0.75; }
  100% { transform: scale(1.90); opacity: 0; }
}

/* ─── Image Blur-Up Loader ───────────────────────────────────────────────── */
img.lazy-blur {
  filter: blur(10px);
  transition: filter 0.55s ease;
}
img.lazy-blur.lazy-loaded { filter: blur(0); }

/* ─── Gallery Item Lift & Tilt ───────────────────────────────────────────── */
.gallery-item {
  transition: box-shadow 0.4s ease;
}
.gallery-item:hover {
  box-shadow: 0 22px 55px rgba(0,0,0,0.3);
  z-index: 3;
}

/* ─── Service Card Entrance Stagger (JS-driven) ──────────────────────────── */
.services-showcase .service-card,
.services-grid .service-card {
  --card-delay: 0s;
  transition-delay: var(--card-delay);
}

/* ─── Animated Gradient Section Accent ──────────────────────────────────── */
.section-header .section-title {
  position: relative;
}

/* ─── Process Number Ring Glow ───────────────────────────────────────────── */
@keyframes process-number-glow {
  0%,100% { box-shadow: 0 0 0 0   rgba(230,56,41,0.0),  0 0 0 0  rgba(245,179,1,0.0); }
  50%     { box-shadow: 0 0 0 12px rgba(230,56,41,0.12), 0 0 18px rgba(245,179,1,0.10); }
}
.process-card:hover .process-number {
  animation: process-number-glow 1.8s ease-in-out infinite;
}

/* ─── Floating Icon in Why Cards ─────────────────────────────────────────── */
@keyframes why-icon-drift {
  0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
  35%     { transform: translateY(-6px) rotate(4deg) scale(1.06); }
  70%     { transform: translateY(-3px) rotate(-3deg) scale(1.02); }
}
.why-card:hover .why-icon {
  animation: why-icon-drift 2.2s ease-in-out infinite !important;
}

/* ─── Stats Card Shine on Hover ──────────────────────────────────────────── */
.stat-card {
  isolation: isolate;
  overflow: hidden;
}
.stat-card::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg,
    transparent 20%, rgba(255,255,255,0.07) 50%, transparent 80%);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
  pointer-events: none;
  z-index: 4;
}
.stat-card:hover::after { left: 145%; }

/* ─── CTA Section Animated Orbs ─────────────────────────────────────────── */
.cta-section::before {
  animation: orb-float-a 8s ease-in-out infinite;
}
.cta-section::after {
  animation: orb-float-b 10s ease-in-out infinite;
}

/* ─── Contact Card Hover ─────────────────────────────────────────────────── */
.contact-card {
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(230,56,41,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.contact-card:hover::before { opacity: 1; }

/* ─── Section Gray Grid Overlay ──────────────────────────────────────────── */
.section-gray {
  position: relative;
  isolation: isolate;
}
.section-gray::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230,56,41,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,56,41,0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 0;
}
.section-gray > .container { position: relative; z-index: 1; }

/* ─── Footer Social Bounce ───────────────────────────────────────────────── */
.footer-social {
  transition: background 0.28s ease, color 0.28s ease,
              transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              border-color 0.28s ease;
}
.footer-social:hover {
  transform: translateY(-5px) scale(1.15);
}

/* ─── Page Transition Overlay ────────────────────────────────────────────── */
.page-trans-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99997;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.page-trans-overlay.fade-out { opacity: 1; }

/* ─── Back-to-Top Enhanced ───────────────────────────────────────────────── */
.back-to-top {
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
              background 0.28s ease;
}
.back-to-top:hover {
  transform: translateY(-5px) scale(1.12);
  background: var(--gold);
  color: var(--dark);
}

/* ─── Nav Link Magnetic Pill ─────────────────────────────────────────────── */
.nav-link {
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}
.nav-link:hover { transform: translateY(-1px); }
.nav-link.active { transform: none; }

/* ─── Hero Badge Glow Ping ───────────────────────────────────────────────── */
@keyframes badge-ping {
  0%,100% { box-shadow: 0 0 0 0 rgba(230,56,41,0.4); }
  50%     { box-shadow: 0 0 0 10px rgba(230,56,41,0); }
}
.hero-badge { animation: badge-ping 3s ease-in-out infinite; }

/* ─── Section Dark Animated Border Top ──────────────────────────────────── */
.section-dark {
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary) 30%, var(--gold) 60%, transparent);
  background-size: 200% 100%;
  animation: accentShift 5s linear infinite;
  pointer-events: none;
}

/* ─── About Badge Pulse ──────────────────────────────────────────────────── */
@keyframes about-badge-pop {
  0%,100% { transform: scale(1) rotate(-3deg); }
  50%     { transform: scale(1.07) rotate(-3deg); }
}
.about-badge { animation: about-badge-pop 3.5s ease-in-out infinite; }

/* ─── Testimonial Card Glow ──────────────────────────────────────────────── */
.testimonial-card:hover {
  box-shadow: 0 0 0 1px rgba(230,56,41,0.22),
              0 20px 52px rgba(0,0,0,0.38),
              0 0 30px rgba(230,56,41,0.08) !important;
}

/* ─── Neon Glow Utility ──────────────────────────────────────────────────── */
.glow-text {
  text-shadow:
    0 0 6px  rgba(230,56,41,0.75),
    0 0 14px rgba(230,56,41,0.50),
    0 0 30px rgba(230,56,41,0.25);
}
.glow-gold {
  text-shadow:
    0 0 6px  rgba(245,179,1,0.75),
    0 0 14px rgba(245,179,1,0.50),
    0 0 30px rgba(245,179,1,0.25);
}

/* ─── Pulse Dot on Live Badge ────────────────────────────────────────────── */
.hero-badge-dot {
  animation: badge-dot-pulse 1.5s ease-in-out infinite !important;
}
@keyframes badge-dot-pulse {
  0%,100% { transform: scale(1);   box-shadow: 0 0 0 0 rgba(230,56,41,0.7); }
  50%     { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(230,56,41,0); }
}

/* ─── Responsive Adjustments ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .scroll-progress-bar { height: 2px; }
  .section-gray::after { display: none; }
}

