/* =========================================
   SHRUTI VISUAL INFORMATION - PREMIUM STYLES
   ========================================= */

:root {
  --primary: #e11d48;
  --primary-dark: #be123c;
  --primary-light: #f43f5e;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --dark: #0a0a14;
  --dark-2: #14141f;
  --dark-3: #1c1c2a;
  --dark-card: #1e1e2e;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --light: #f8fafc;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #e11d48 0%, #fbbf24 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a14 0%, #1c1c2a 100%);
  --gradient-glow: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(225, 29, 72, 0.3);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.25s ease;
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1280px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  background: var(--dark);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; position: relative; overflow: hidden; }

/* ========== INNER PAGE HERO (Breadcrumb Banner) ========== */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 12s ease-in-out infinite;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: orbFloat 14s ease-in-out infinite reverse;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -1px;
}
.page-hero p {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 13px;
  color: var(--gray-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--primary-light);
  transition: var(--transition-fast);
}
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 9px; opacity: 0.5; }
.breadcrumb .current { color: var(--white); font-weight: 600; }

@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
  .page-hero h1 { font-size: 36px; }
}

/* ========== BREADCRUMB BAR (Compact - for pages without page-hero) ========== */
.breadcrumb-bar {
  padding: 40px 0 0;
  background: var(--dark);
  text-align: center;
}
.breadcrumb-bar .breadcrumb {
  margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

.preloader-inner { text-align: center; }
.preloader-logo {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-ring {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--accent);
  border-radius: 50%;
  animation: ringSpin 1.5s linear infinite;
}
.preloader-ring-2 {
  inset: 12px;
  border-top-color: var(--accent);
  border-right-color: var(--primary);
  animation: ringSpin 2s linear infinite reverse;
}
.preloader-logo-img {
  width: 78px;
  height: 78px;
  background: var(--white);
  border-radius: 18px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(225, 29, 72, 0.6);
  animation: pulse 1.5s ease-in-out infinite;
}
.preloader-logo-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.preloader-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.preloader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 30%;
  background: var(--gradient-primary);
  border-radius: 3px;
  position: absolute;
  animation: loading 1.2s ease-in-out infinite;
}
.preloader-inner p {
  color: var(--gray-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes loading {
  0% { left: -30%; }
  100% { left: 100%; }
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========== CUSTOM CURSOR ========== */
.cursor-dot, .cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
}
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(225, 29, 72, 0.5);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}
.cursor-hover .cursor-outline {
  width: 60px;
  height: 60px;
  background: rgba(225, 29, 72, 0.1);
  border-color: var(--accent);
}
@media (max-width: 1024px) {
  .cursor-dot, .cursor-outline { display: none; }
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--gray-light);
}
.top-bar i { color: var(--primary); margin-right: 6px; }
.top-bar a:hover { color: var(--white); }

.top-social {
  display: flex;
  gap: 10px;
  margin-left: 8px;
}
.top-social a {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
}
.top-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .top-bar { display: none; }
}

/* ========== NAVBAR ========== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-frame {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 16px;
  padding: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.35);
  transition: var(--transition);
}
.logo:hover .logo-frame {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: 0 12px 30px rgba(225, 29, 72, 0.55);
}
.logo-img-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-img-wrap img {
  width: 88%;
  height: auto;
  object-fit: contain;
  display: block;
}
.logo-pulse {
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  border-radius: 16px;
  animation: logoPulse 2.5s ease-out infinite;
  opacity: 0;
  z-index: 1;
}
.logo-rec {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #ef4444;
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.9), 0 0 0 2px var(--dark);
  animation: recBlink 1.2s ease-in-out infinite;
}
@keyframes logoPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes recBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 14px;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    background: var(--dark-2);
    padding: 24px;
    transform: translateY(-200%);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    display: block;
  }
  .navbar .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-title { font-size: 16px; }
  .logo-sub { font-size: 10px; }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(225, 29, 72, 0.5);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}
.btn-outline-light::before { display: none; }

.btn-lg { padding: 18px 38px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(225, 29, 72, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(225, 29, 72, 0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow i { font-size: 11px; }

.section-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-title.centered { text-align: center; }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  max-height: 900px;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.orb-1 {
  width: 460px;
  height: 460px;
  background: #e11d48;
  top: -10%;
  left: -8%;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-2 {
  width: 520px;
  height: 520px;
  background: #fbbf24;
  bottom: -20%;
  right: -10%;
  animation: orbFloat 16s ease-in-out infinite reverse;
  animation-delay: -3s;
}
.orb-3 {
  width: 340px;
  height: 340px;
  background: #8b5cf6;
  top: 30%;
  right: 25%;
  opacity: 0.35;
  animation: orbFloat 18s ease-in-out infinite;
  animation-delay: -6s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.1); }
  66% { transform: translate(-40px, 50px) scale(0.95); }
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-slider { width: 100%; height: 100%; position: relative; z-index: 1; overflow: hidden; }
.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 20, 0.92) 0%,
    rgba(10, 10, 20, 0.75) 50%,
    rgba(225, 29, 72, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--accent);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
.hero-content p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.swiper-button-prev,
.swiper-button-next {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 18px; font-weight: 700; }
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--gradient-primary);
  width: 50px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  color: var(--white);
}
.scroll-down small {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
}
.mouse {
  display: inline-block;
  width: 26px;
  height: 42px;
  border: 2px solid var(--white);
  border-radius: 14px;
  position: relative;
}
.mouse span {
  display: block;
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollDown 1.5s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

@media (max-width: 768px) {
  .hero { min-height: 600px; }
  .hero-content h1 { font-size: 38px; }
  .swiper-button-prev, .swiper-button-next { display: none; }
}

/* ========== STATS STRIP ========== */
.stats-strip {
  background: var(--dark-2);
  padding: 60px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  opacity: 0.3;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}
.stat-item i {
  font-size: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.stat-item h3 {
  font-size: 48px;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 6px;
  color: var(--white);
}
.stat-item p {
  font-size: 14px;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item h3 { font-size: 38px; }
}

/* ========== ABOUT ========== */
.about-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  isolation: isolate;
}
.about-image-wrap .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-image-wrap:hover .main-img { transform: translateY(-10px); }

.image-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-primary);
  filter: blur(60px);
  opacity: 0.35;
  z-index: -1;
  border-radius: var(--radius-lg);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.05); }
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  left: -10px;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: var(--white);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.exp-number {
  font-size: 56px;
  font-weight: 800;
  font-family: var(--font-display);
  line-height: 1;
}
.exp-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
}

.floating-card {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--white);
  color: var(--dark);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatUp 3s ease-in-out infinite;
  z-index: 2;
}
.floating-card-2 {
  top: auto;
  right: auto;
  bottom: 80px;
  left: -10px;
  animation: floatUp 3.5s ease-in-out infinite;
  animation-delay: -1.5s;
}
.float-icon-alt {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%) !important;
}
.float-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.floating-card h4 {
  color: var(--dark);
  font-size: 15px;
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}
.floating-card p {
  color: var(--gray);
  font-size: 12px;
  margin: 0;
}

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

.about-content .lead {
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1.6;
}
.about-content p {
  color: var(--gray-light);
  margin-bottom: 30px;
}

.about-quote {
  position: relative;
  margin: 30px 0;
  padding: 24px 28px 24px 64px;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.08) 0%, rgba(251, 191, 36, 0.05) 100%);
  border-left: 3px solid var(--primary);
  border-radius: 12px;
}
.about-quote i {
  position: absolute;
  top: 20px;
  left: 22px;
  font-size: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-quote p {
  margin: 0;
  font-size: 16px;
  font-style: italic;
  color: #e5e7eb;
  line-height: 1.7;
}
.about-quote strong {
  color: var(--accent);
  font-weight: 700;
  font-style: normal;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature i {
  color: var(--accent);
  font-size: 20px;
  margin-top: 3px;
}
.about-feature h4 {
  font-family: var(--font-body);
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 600;
}
.about-feature p {
  font-size: 13px;
  margin: 0;
  color: var(--gray-light);
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .floating-card { right: 16px; left: auto; }
  .floating-card-2 { left: 16px; right: auto; }
  .experience-badge { left: 16px; bottom: -16px; padding: 18px 22px; }
  .exp-number { font-size: 42px; }
}
@media (max-width: 576px) {
  .about-features { grid-template-columns: 1fr; }
  .floating-card, .floating-card-2 { display: none; }
  .experience-badge { left: 12px; bottom: -12px; }
}

/* ========== VISION ========== */
.vision-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.vision-card {
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  backdrop-filter: blur(20px);
}
.vision-icon {
  width: 96px;
  height: 96px;
  background: var(--gradient-primary);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 40px;
  margin: 0 auto 30px;
  box-shadow: var(--shadow-glow);
  transform: rotate(-8deg);
}
.vision-card p {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 50px;
}
.vision-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pillar:hover {
  background: rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.3);
  transform: translateY(-5px);
}
.pillar i {
  font-size: 28px;
  color: var(--accent);
}
.pillar span {
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .vision-card { padding: 50px 30px; }
  .vision-pillars { grid-template-columns: repeat(2, 1fr); }
}

/* ========== SERVICES ========== */
.services-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(225, 29, 72, 0.3);
  background: var(--dark-3);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(225, 29, 72, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 28px;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-link {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}
.service-link:hover { color: var(--accent); gap: 12px; }

.service-cta {
  background: var(--gradient-primary);
  text-align: center;
}
.service-cta::before, .service-cta::after { display: none; }
.service-cta .service-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  margin: 0 auto 24px;
}
.service-cta h3 { color: var(--white); }
.service-cta p { color: rgba(255, 255, 255, 0.85); }
.service-cta .service-link { color: var(--white); }
.service-cta:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-glow);
}
.service-cta:hover .service-icon {
  background: var(--white);
  color: var(--primary);
}

.services-note {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(225, 29, 72, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: var(--radius);
  padding: 30px 36px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.services-note i {
  font-size: 40px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}
.services-note p {
  margin: 0;
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.7;
}
.services-note strong { color: var(--white); }

@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-note { flex-direction: column; text-align: center; padding: 30px 24px; }
}
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* ========== PORTFOLIO ========== */
.portfolio-section { background: var(--dark-2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 20px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: block;
}
.portfolio-item.large { grid-row: span 2; }
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.portfolio-item:hover img { transform: scale(1.1); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.95) 0%, rgba(10, 10, 20, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 30px;
  transition: var(--transition);
}
.portfolio-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.portfolio-overlay h4 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.05s;
}
.portfolio-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  transition-delay: 0.1s;
}
.portfolio-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
  transform: scale(0);
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-tag,
.portfolio-item:hover .portfolio-overlay h4,
.portfolio-item:hover .portfolio-overlay p {
  transform: translateY(0);
  opacity: 1;
}
.portfolio-item:hover .portfolio-icon {
  transform: scale(1);
  background: var(--gradient-primary);
  border-color: transparent;
}

@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .portfolio-item.large { grid-row: auto; }
  .portfolio-item { height: 280px; }
}
@media (max-width: 576px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ========== TEAM ========== */
.team-section { background: var(--dark); overflow: hidden; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card {
  text-align: center;
  transition: var(--transition);
}
.team-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  aspect-ratio: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%) contrast(1.05);
}
.team-card:hover .team-image img { filter: grayscale(0) contrast(1); }

/* Placeholder shown until real team photos are added */
.team-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
  color: rgba(255, 255, 255, 0.18);
  font-size: 90px;
  transition: var(--transition);
}
.team-card:hover .team-image-placeholder {
  color: rgba(225, 29, 72, 0.45);
  background: linear-gradient(135deg, #2f2030 0%, #1e1620 100%);
}

.team-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}
.team-card:hover .team-badge {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-3px);
}
.team-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(225, 29, 72, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-image img { transform: scale(1.08); }
.team-card:hover .team-image::after { opacity: 1; }

.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  display: flex;
  gap: 10px;
  z-index: 2;
  transition: var(--transition);
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.team-social a {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
}
.team-social a:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.team-info h4 {
  font-family: var(--font-body);
  font-size: 19px;
  margin-bottom: 4px;
  color: var(--white);
}
.team-info p {
  color: var(--primary-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 992px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: 5%;
  left: 5%;
  font-size: 300px;
  font-family: var(--font-display);
  color: rgba(225, 29, 72, 0.05);
  line-height: 1;
}
.testimonials-slider { overflow: visible; padding: 30px 0 70px; }
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  height: 100%;
}
.quote-icon {
  position: absolute;
  top: -25px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: var(--shadow-glow);
}
.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-light);
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.author-avatar {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
}
.testimonial-author h5 {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--white);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--primary-light);
  letter-spacing: 1px;
}
.testimonials-pagination {
  bottom: 0 !important;
}

/* ========== CTA ========== */
.cta-section {
  padding: 80px 0;
  background: var(--dark);
  overflow: hidden;
}
.cta-inner {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content { flex: 1; position: relative; }
.cta-content .section-eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-content .gradient-text {
  background: linear-gradient(to right, #fff, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  margin: 0;
  max-width: 500px;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cta-buttons .btn { background: var(--white); color: var(--primary); }
.cta-buttons .btn::before { display: none; }
.cta-buttons .btn:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta-inner { flex-direction: column; padding: 50px 30px; text-align: center; }
  .cta-buttons { width: 100%; }
  .cta-buttons .btn { justify-content: center; }
}

/* ========== CONTACT ========== */
.contact-section { background: var(--dark-2); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 14px;
  position: relative;
}
.contact-info-card > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-size: 14px;
  position: relative;
}
.contact-info-list {
  position: relative;
  margin-bottom: 36px;
}
.contact-info-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-list h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 4px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-info-list p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
}
.contact-info-list a:hover { color: var(--accent); }

.contact-social {
  display: flex;
  gap: 12px;
  position: relative;
}
.contact-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
}
.contact-social a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

.contact-form-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 10px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--dark);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-status {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  display: none;
}
.form-status.success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  filter: grayscale(0.6) contrast(1.1) brightness(0.85);
  transition: var(--transition);
}
.map-wrap:hover { filter: none; }

@media (max-width: 992px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card, .contact-form-card { padding: 36px 24px; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-frame {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  padding: 3px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(225, 29, 72, 0.35);
}
.footer-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
  border-radius: 11px;
  padding: 6px;
}
.footer-logo h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 2px;
}
.footer-logo span {
  font-size: 12px;
  color: var(--gray-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-col p {
  color: var(--gray-light);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links li,
.footer-contact li { margin-bottom: 12px; }
.footer-links a {
  color: var(--gray-light);
  font-size: 14px;
  transition: var(--transition-fast);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}
.footer-contact li {
  display: flex;
  gap: 12px;
  color: var(--gray-light);
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact i {
  color: var(--primary-light);
  margin-top: 4px;
  flex-shrink: 0;
}
.footer-contact a:hover { color: var(--accent); }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  font-size: 14px;
}
.footer-social a:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: var(--gray-light);
  font-size: 13px;
  margin: 0;
}
.footer-bottom i { color: var(--primary-light); margin: 0 4px; }

@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ========== FLOATING BUTTONS ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  box-shadow: var(--shadow-glow);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(225, 29, 72, 0.5);
}

.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: var(--white);
}
@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 576px) {
  .back-to-top { width: 44px; height: 44px; right: 20px; bottom: 20px; }
  .whatsapp-float { width: 50px; height: 50px; right: 20px; bottom: 75px; font-size: 24px; }
}

/* ========== SELECTION ========== */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
