/* ================================================================
   MAJESTEA MARKETING — Design System
   taste-skill: DESIGN_VARIANCE:8 · MOTION_INTENSITY:6 · VISUAL_DENSITY:4
   Colors: #080808 bg · #F9BC15 gold · #F0EDE8 text
   Font: Outfit (display) · Hind (Hindi)
================================================================ */

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #080808;
  --bg-2:        #0f0f0f;
  --bg-3:        #141414;
  --bg-4:        #1a1a1a;
  --gold:        #F9BC15;
  --gold-dim:    rgba(249, 188, 21, 0.08);
  --gold-mid:    rgba(249, 188, 21, 0.25);
  --gold-bright: #FFD045;
  --text:        #F0EDE8;
  --text-muted:  #737373;
  --text-faint:  #2e2e2e;
  --border:      rgba(249, 188, 21, 0.1);
  --border-2:    rgba(255, 255, 255, 0.06);
  --font:        'Outfit', -apple-system, sans-serif;
  --font-hindi:  'Hind', sans-serif;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9998;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(249, 188, 21, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s, background 0.25s;
  will-change: transform;
}

.cursor-dot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  will-change: transform;
}

body.cursor-hover .cursor {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-color: var(--gold);
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 188, 21, 0.28);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-2);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border);
  transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 22px 0;
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

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

.nav-logo svg {
  height: 34px;
  width: auto;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s !important;
}

.nav-cta:hover {
  background: var(--gold-bright) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 24px rgba(249, 188, 21, 0.3);
}

.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-menu-btn.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  pointer-events: all;
}

.mobile-link {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--text);
}

.mobile-link-cta {
  color: var(--gold);
}

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Background grid */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,188,21,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,188,21,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

/* Vignette */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--bg) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(68px, 7.5vw, 108px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}

.hero-title-accent {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 21px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

/* ===== WORD ROTATOR ===== */
.rotating-word {
  color: var(--gold);
  font-weight: 800;
  transition: opacity 0.2s ease;
}

.rotating-word.exit {
  opacity: 0;
}

.rotating-word.enter {
  animation: wordFadeIn 0.3s ease forwards;
}

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

.hero-desc {
  font-family: var(--font-hindi);
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 480px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  width: 400px;
  height: 400px;
  border-color: rgba(249, 188, 21, 0.07);
  animation: spinCW 30s linear infinite;
}

.ring-2 {
  width: 300px;
  height: 300px;
  border-color: rgba(249, 188, 21, 0.12);
  border-style: dashed;
  animation: spinCCW 18s linear infinite;
}

.ring-3 {
  width: 190px;
  height: 190px;
  border-color: rgba(249, 188, 21, 0.22);
  animation: spinCW 12s linear infinite;
}

@keyframes spinCW  { from { transform: rotate(0deg); }   to { transform: rotate(360deg); } }
@keyframes spinCCW { from { transform: rotate(0deg); }   to { transform: rotate(-360deg); } }

.visual-center {
  position: relative;
  z-index: 2;
  background: var(--bg-3);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(249, 188, 21, 0.08);
}

.visual-center svg {
  width: 100px;
  height: auto;
}

.visual-stat {
  position: absolute;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  z-index: 3;
  animation: floatStat 6s ease-in-out infinite;
}

.stat-1 { top: 30px;   right: -16px; animation-delay: 0s; }
.stat-2 { bottom: 50px; left: -16px;  animation-delay: 2s; }
.stat-3 { top: 50%;    right: -24px;  animation-delay: 4s; transform: translateY(-50%); }

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

.stat-3 { animation: floatStat3 6s ease-in-out infinite 4s; }
@keyframes floatStat3 {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

.visual-stat .stat-num {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}

.visual-stat .stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 3px;
  white-space: nowrap;
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: top;
  animation: scrollDown 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 22px 0;
}

.marquee-track {
  overflow: hidden;
}

.marquee-inner {
  display: flex;
  will-change: transform;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.marquee-content span {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* ===== ABOUT ===== */
.about {
  padding: 140px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 100px;
  align-items: start;
}

.about-title {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.04em;
  position: sticky;
  top: 120px;
}

.about-title em {
  font-style: normal;
  color: var(--gold);
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 44px 0;
  padding: 36px 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-plus {
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.about-hindi {
  margin-top: 28px;
}

.about-hindi p {
  font-family: var(--font-hindi);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  padding-left: 18px;
  border-left: 2px solid var(--gold);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.services {
  padding: 140px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--text);
}

/* BENTO GRID */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bento-card {
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(249,188,21,0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--border);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

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

/* Accent card (Website Development) */
.bento-card.bento-accent {
  background: var(--gold);
  border-color: var(--gold);
}

.bento-card.bento-accent .card-num,
.bento-card.bento-accent h3,
.bento-card.bento-accent .card-hindi,
.bento-card.bento-accent .card-desc {
  color: rgba(0,0,0,0.85);
}

.bento-card.bento-accent .card-tag {
  color: rgba(0,0,0,0.55);
  border-top-color: rgba(0,0,0,0.15);
}

.bento-card.bento-accent::after {
  display: none;
}

/* Paid Ads card — outlined gold accent */
.bento-card.bento-accent-2 {
  border-color: var(--border);
  background: var(--bg-4);
}

.bento-card.bento-accent-2 h3 {
  color: var(--gold);
}

.bento-card.bento-accent-2 .card-num {
  color: var(--text-muted);
}

/* Spanning rules — 4 rows of 3 col-units each
   Row 1: 1(2)+2(1)=3  Row 2: 3(1)+4(2)=3
   Row 3: 5(1)+6(1)+7(1)=3  Row 4: 8(1)+9(2)=3 */
.bento-card:nth-child(1) { grid-column: span 2; }
.bento-card:nth-child(2) { grid-column: span 1; }
.bento-card:nth-child(3) { grid-column: span 1; }
.bento-card:nth-child(4) { grid-column: span 2; }
.bento-card:nth-child(5) { grid-column: span 1; }
.bento-card:nth-child(6) { grid-column: span 1; }
.bento-card:nth-child(7) { grid-column: span 1; }
.bento-card:nth-child(8) { grid-column: span 1; }
.bento-card:nth-child(9) { grid-column: span 2; }

.card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: auto;
  padding-bottom: 20px;
}

.card-body h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.card-hindi {
  font-family: var(--font-hindi);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-2);
}

/* ===== PROCESS ===== */
.process {
  padding: 140px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(33.33% / 2);
  right: calc(33.33% / 2);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--gold-mid), var(--border), transparent);
}

.process-step {
  padding: 0 40px;
  border-right: 1px solid var(--border-2);
}

.process-step:first-child {
  padding-left: 0;
}

.process-step:last-child {
  border-right: none;
}

.step-connector {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--border);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border-2);
}

.step-content h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.step-hindi {
  font-family: var(--font-hindi);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact {
  padding: 140px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

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

.contact-left h2 {
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  margin: 20px 0 24px;
}

.contact-left > p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.contact-link svg {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link:hover svg {
  opacity: 1;
}

.contact-quote {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--gold-dim);
}

.contact-quote p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-quote strong {
  color: var(--gold);
  font-weight: 800;
}

/* Contact Cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(249,188,21,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.contact-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(249,188,21,0.06);
  background: var(--bg-4);
}

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

.contact-card:active {
  transform: translateY(-1px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s, box-shadow 0.3s;
}

.contact-card:hover .contact-card-icon {
  background: rgba(249,188,21,0.14);
  box-shadow: 0 0 0 4px rgba(249,188,21,0.06);
}

.contact-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-card-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}

.contact-card:hover .contact-card-value {
  color: var(--gold);
}

.contact-card-arrow {
  color: var(--text-faint);
  transition: color 0.25s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.contact-card:hover .contact-card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

.contact-response-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 400;
  padding-left: 4px;
}


/* ===== FOOTER ===== */
.footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--border-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 80px;
  width: auto;
}

.footer-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 14px;
  color: var(--text-faint);
  transition: color 0.2s;
  font-weight: 400;
}

.footer-nav-col a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border-2);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 13px;
  color: var(--text-faint);
  font-weight: 400;
}

.footer-bottom a:hover {
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */

/* ── Tablet landscape / small desktop (≤1100px) ── */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-title {
    position: static;
    font-size: clamp(42px, 6vw, 64px);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ── Tablet portrait (≤860px) ── */
@media (max-width: 860px) {
  /* Layout */
  .container {
    padding: 0 24px;
  }

  .nav-inner {
    padding: 0 24px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 0 72px;
  }

  .hero-title {
    font-size: clamp(48px, 12vw, 80px);
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 7px 14px;
    gap: 8px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  /* Sections */
  .about, .services, .process, .contact {
    padding: 90px 0;
  }

  .footer {
    padding: 64px 0 28px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .section-header h2 {
    font-size: clamp(34px, 5.5vw, 50px);
  }

  /* About */
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 28px 0;
  }

  .stat-number {
    font-size: 38px;
  }

  /* Bento: 2 columns, card 9 stays full-width (span 2 in 2-col = 100%) */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .bento-card {
    min-height: 190px;
    padding: 24px 24px 20px;
  }

  .bento-card:nth-child(1),
  .bento-card:nth-child(2),
  .bento-card:nth-child(3),
  .bento-card:nth-child(4),
  .bento-card:nth-child(5),
  .bento-card:nth-child(6),
  .bento-card:nth-child(7),
  .bento-card:nth-child(8) {
    grid-column: span 1;
  }

  /* Card 9 spans both columns in 2-col grid */
  .bento-card:nth-child(9) {
    grid-column: span 2;
  }

  /* Disable 3D tilt on touch-likely viewports */
  .bento-card {
    transform: none !important;
  }

  /* Process */
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-grid::before {
    display: none;
  }

  .process-step {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid var(--border-2);
  }

  .process-step:last-child {
    border-bottom: none;
  }

  .step-connector {
    margin-bottom: 24px;
  }

  .step-line {
    display: none;
  }

  /* Contact form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-quote {
    padding: 20px 22px;
  }

  /* Footer */
  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ── Mobile (≤580px) ── */
@media (max-width: 580px) {
  .container {
    padding: 0 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  /* Hero */
  .hero {
    padding: 90px 0 64px;
  }

  .hero-title {
    font-size: clamp(42px, 13vw, 64px);
    letter-spacing: -0.04em;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .word-rotator {
    min-width: 120px;
  }

  .rotating-word {
    font-size: 16px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .hero-actions .btn {
    max-width: 100%;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* Sections */
  .about, .services, .process, .contact {
    padding: 72px 0;
  }

  .footer {
    padding: 52px 0 24px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header h2 {
    font-size: clamp(28px, 8vw, 40px);
  }

  /* About */
  .about-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .about-text {
    font-size: 15px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 24px 0;
  }

  /* Keep the third stat full-width */
  .about-stat:last-child {
    grid-column: span 2;
    border-top: 1px solid var(--border-2);
    padding-top: 16px;
  }

  .stat-number {
    font-size: 40px;
  }

  .about-hindi p {
    font-size: 15px;
  }

  /* Bento: single column */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bento-card:nth-child(n) {
    grid-column: span 1;
  }

  .bento-card {
    min-height: 170px;
  }

  .card-body h3 {
    font-size: 19px;
  }

  /* Process */
  .step-content h3 {
    font-size: 22px;
  }

  /* Contact */
  .contact-left h2 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .contact-details {
    margin-bottom: 28px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* Mobile menu links bigger */
  .mobile-link {
    font-size: 28px;
  }
}

/* ── Small phones (≤380px) ── */
@media (max-width: 380px) {
  .hero-title {
    font-size: 38px;
  }

  .hero-badge {
    font-size: 10px;
  }

  .nav-logo svg {
    height: 28px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stat:last-child {
    grid-column: span 1;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .btn {
    font-size: 14px;
    padding: 13px 22px;
  }
}

/* ===== SELECT DROPDOWN ARROW ===== */
.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23737373' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ===== SAFE AREA (iPhone notch / home bar) ===== */
.nav {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.footer {
  padding-bottom: max(36px, env(safe-area-inset-bottom));
}

.mobile-menu {
  padding-bottom: env(safe-area-inset-bottom);
  padding-top: env(safe-area-inset-top);
}

/* ===== SELECTION ===== */
::selection {
  background: rgba(249, 188, 21, 0.3);
  color: var(--text);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-mid);
}
