/* ============================================================
   SWATHI CHIGURLA — PREMIUM PORTFOLIO
   Design: "Career Alchemy" — Light + Gold Luxury
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --bg-primary: #fcfbf7;
  --bg-secondary: #f5f2ec;
  --bg-card: #ffffff;
  --bg-card-hover: #faf7f0;
  --bg-glass: rgba(255,255,255,0.6);
  --bg-glass-hover: rgba(255,255,255,0.9);

  --gold: #b8860b;
  --gold-light: #e0b84c;
  --gold-dark: #8a6508;
  --rose: #c0663f;
  --aqua: #2e8b8b;
  --plum: #7a5c9e;
  --accent: #b8860b;

  --text-primary: #221c33;
  --text-secondary: #5f5870;
  --text-muted: #9890a6;

  --ink: #1c1830;
  --ink-700: #2c2650;
  --ink-800: #1f1a38;

  --border: rgba(60,50,90,0.1);
  --border-hover: rgba(184,134,11,0.4);

  --gradient-hero: linear-gradient(135deg, #fbf7ec 0%, #f6ecdf 40%, #eef4ec 100%);
  --gradient-gold: linear-gradient(135deg, #e0b84c 0%, #b8860b 55%, #c0663f 100%);
  --gradient-soft: linear-gradient(135deg, rgba(224,184,76,0.14), rgba(192,102,63,0.1));
  --gradient-dark: linear-gradient(135deg, #2c2650 0%, #1c1830 55%, #251a12 100%);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 10px rgba(90,75,140,0.06), 0 1px 3px rgba(90,75,140,0.04);
  --shadow-md: 0 10px 40px rgba(90,75,140,0.1), 0 2px 8px rgba(90,75,140,0.05);
  --shadow-lg: 0 20px 70px rgba(90,75,140,0.14), 0 4px 16px rgba(90,75,140,0.06);
  --shadow-gold: 0 8px 40px rgba(184,134,11,0.15);

  --container: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(1200px 600px at 100% -10%, rgba(224,184,76,0.08), transparent 60%),
    radial-gradient(1000px 500px at -10% 30%, rgba(46,139,139,0.05), transparent 60%),
    radial-gradient(900px 500px at 50% 110%, rgba(192,102,63,0.06), transparent 60%),
    var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: var(--gold); color: #fff; }

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

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

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg-primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

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

.preloader-ring {
  width: 60px; height: 60px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: preloaderSpin 0.8s linear infinite;
  margin: 0 auto 24px;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: flex;
  justify-content: center;
  gap: 2px;
}

.preloader-letter {
  animation: preloaderLetter 1.5s ease infinite;
  animation-delay: calc(var(--i) * 0.1s);
}

@keyframes preloaderSpin { to { transform: rotate(360deg); } }

@keyframes preloaderLetter {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

/* ---------- CURSOR GLOW ---------- */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,148,31,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  will-change: transform;
}

@media (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(250,249,246,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
}

.logo-mark {
  width: 38px; height: 38px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 3px 12px rgba(184,134,11,0.3);
}

.logo-text { color: var(--text-primary); }
.logo-dot { color: var(--gold); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.25s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gradient-gold);
  color: var(--ink) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 12px rgba(184,134,11,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 20px rgba(184,148,31,0.4) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text-primary);
  transition: 0.3s ease;
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    bottom: 0;
    background: rgba(250,249,246,0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    opacity: 0; visibility: hidden;
    transition: 0.35s ease;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.3rem; }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 900;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #fff;
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-gold);
  color: var(--ink);
  background-size: 150% 150%;
  font-weight: 700;
  transition: all 0.35s ease, background-position 0.5s ease;
  box-shadow: 0 4px 18px rgba(184,134,11,0.25);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 34px rgba(184,134,11,0.4);
  background-position: 100% 100%;
}

.btn-glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.95);
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 40px) 0 60px;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.5), transparent 45%);
  pointer-events: none;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(224,184,76,0.2), transparent 70%);
  top: -10%; left: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,102,63,0.15), transparent 70%);
  bottom: -5%; right: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(46,139,139,0.12), transparent 70%);
  top: 35%; right: 22%;
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -40px); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,134,11,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,134,11,0.05) 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%);
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(184,148,31,0.06);
  border: 1px solid rgba(184,148,31,0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-dark);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-pulse {
  width: 8px; height: 8px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-subtitle strong { color: var(--text-primary); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-socials {
  display: flex;
  gap: 16px;
}
.hero-socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: 0.3s ease;
}
.hero-socials a:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  color: var(--gold);
}

/* Hero Visual / Profile Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-card-wrapper {
  position: relative;
  width: 320px; height: 380px;
}

.profile-card {
  position: relative;
  width: 100%; height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  z-index: 2;
}

.profile-card-glow {
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--rose), var(--gold));
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: -1;
  filter: blur(1px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.18; }
}

.profile-image-frame {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-secondary);
}

.profile-image-placeholder {
  color: var(--text-muted);
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.profile-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Floating Stats */
.floating-stat {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  animation: floatStat 6s ease-in-out infinite;
}

.fs-1 { top: 10%; left: -60px; animation-delay: 0s; }
.fs-2 { bottom: 20%; right: -50px; animation-delay: 2s; }
.fs-3 { top: 50%; left: -70px; animation-delay: 4s; }

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

.fs-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.fs-icon { color: var(--gold); display: flex; }
.fs-label { font-size: 0.75rem; color: var(--text-secondary); }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-socials { justify-content: center; }
  .profile-card-wrapper { width: 260px; height: 320px; }
  .floating-stat { display: none; }
}

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

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  white-space: nowrap;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.marquee-dot {
  color: var(--gold) !important;
  font-size: 0.6rem !important;
}

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(224,184,76,0.16), rgba(192,102,63,0.12));
  border: 1px solid rgba(224,184,76,0.25);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(224,184,76,0.12);
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-gold);
}

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

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

/* ---------- TRANSFORMATION SECTION ---------- */
.transformation {
  padding: 120px 0;
  position: relative;
}

.transform-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 20px;
}

.transform-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.transform-label-glow {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(184,148,31,0.4);
}

.transform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.tc-dim { opacity: 0.55; filter: grayscale(0.3); }
.tc-bright { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }

.tc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.tc-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tc-avatar-dim { background: var(--bg-secondary); color: var(--text-muted); }
.tc-avatar-bright { background: linear-gradient(135deg, rgba(184,148,31,0.2), rgba(184,105,74,0.2)); color: var(--gold); }

.tc-name { font-weight: 600; font-size: 0.95rem; }
.tc-name-bright { color: var(--text-primary); }
.tc-title { font-size: 0.8rem; color: var(--text-muted); }
.tc-title-bright { color: var(--gold); }

.tc-body { margin-bottom: 16px; }
.tc-line {
  height: 8px;
  background: var(--bg-secondary);
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
}
.tc-line-short { width: 60%; }
.tc-line-med { width: 80%; }
.tc-line-bright { background: rgba(184,148,31,0.12); }

.tc-tags { display: flex; gap: 8px; margin-bottom: 16px; }
.tc-tag {
  width: 60px; height: 8px;
  border-radius: 4px;
}
.tc-tag-dim { background: var(--bg-secondary); }
.tc-tag-bright { background: rgba(184,148,31,0.15); width: 55px; }

.tc-issues, .tc-benefits {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 0.82rem;
}
.tc-issues { color: #ef4444; }
.tc-issues span, .tc-benefits span {
  display: flex; align-items: center; gap: 8px;
}
.tc-benefits { color: var(--gold); }

/* Arrow / Process */
.transform-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.arrow-line {
  width: 2px; height: 30px;
  background: linear-gradient(to bottom, var(--border), var(--gold));
}

.arrow-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  box-shadow: 0 0 30px rgba(184,134,11,0.3);
}

.arrow-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.arrow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

.step-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(184,148,31,0.12);
  border: 1px solid rgba(184,148,31,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 900px) {
  .transform-visual {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .transform-arrow {
    flex-direction: row;
    padding: 0;
  }
  .arrow-line {
    width: 30px; height: 2px;
    background: linear-gradient(to right, var(--border), var(--gold));
  }
  .arrow-steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}

/* ---------- SERVICES ---------- */
.services {
  padding: 120px 0;
  background: var(--bg-secondary);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(200px 120px at 100% 0%, rgba(224,184,76,0.06), transparent 60%);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 0 0 3px 3px;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(224,184,76,0.04), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(224,184,76,0.35);
  box-shadow: 0 16px 50px rgba(184,134,11,0.16);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-card-featured {
  border-color: rgba(184,148,31,0.25);
  background: linear-gradient(135deg, var(--bg-card), rgba(184,148,31,0.04));
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(224,184,76,0.2), rgba(192,102,63,0.14));
  border: 1px solid rgba(224,184,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  box-shadow: 0 4px 18px rgba(224,184,76,0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 6px 26px rgba(224,184,76,0.3);
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(184,148,31,0.08);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s ease;
}
.service-link:hover { gap: 14px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ---------- PORTFOLIO / WORK ---------- */
.work {
  padding: 120px 0;
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.work-item-reverse { direction: rtl; }
.work-item-reverse > * { direction: ltr; }

.work-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(224,184,76,0.2);
  background: linear-gradient(135deg, #ffffff, #fdf9f0);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.work-item:hover .work-preview {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.work-preview-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}

/* Resume Mockup */
.resume-mockup {
  width: 200px;
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.rm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e5e5;
}
.rm-name-block { width: 70px; height: 10px; background: #1a1a1a; border-radius: 2px; }
.rm-contact-block { width: 40px; height: 6px; background: #ccc; border-radius: 2px; }

.rm-section { margin-bottom: 12px; }
.rm-section-title { width: 50px; height: 6px; background: #333; border-radius: 2px; margin-bottom: 8px; }
.rm-line { height: 5px; background: #e0e0e0; border-radius: 2px; margin-bottom: 5px; }
.rm-w90 { width: 90%; }
.rm-w75 { width: 75%; }
.rm-w85 { width: 85%; }
.rm-w70 { width: 70%; }
.rm-w95 { width: 95%; }
.rm-w80 { width: 80%; }
.rm-w60 { width: 60%; }
.rm-w50 { width: 50%; }
.rm-w40 { width: 40%; }

/* LinkedIn Mockup */
.linkedin-mockup {
  width: 240px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.lm-banner { height: 60px; background: linear-gradient(135deg, #0077b5, #005e93); }
.lm-avatar-area { display: flex; justify-content: center; margin-top: -24px; }
.lm-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #999;
}
.lm-content { padding: 12px 16px 16px; }
.lm-name-block { width: 90px; height: 8px; background: #1a1a1a; border-radius: 2px; margin-bottom: 6px; }
.lm-headline-block { width: 140px; height: 5px; background: #666; border-radius: 2px; margin-bottom: 4px; }
.lm-location-block { width: 60px; height: 4px; background: #ccc; border-radius: 2px; margin-bottom: 12px; }
.lm-about-block { margin-bottom: 10px; }
.lm-about-block .rm-line { background: #e0e0e0; }
.lm-skills { display: flex; gap: 6px; }
.lm-skills span { width: 50px; height: 18px; background: #e8f0fe; border-radius: 10px; }

/* Brand Mockup */
.brand-mockup {
  width: 220px;
}
.bm-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.bm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.bm-icon-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(184,148,31,0.15);
  flex-shrink: 0;
}
.bm-stats { display: flex; gap: 16px; margin-bottom: 14px; }
.bm-stat { flex: 1; }

.work-info { }
.work-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(184,148,31,0.1);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.work-info h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.work-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tags span {
  padding: 5px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .work-item, .work-item-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }
}

/* ---------- SKILLS ---------- */
.skills {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.skill-group {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.skill-group h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--gold);
}

.skill-bars { display: flex; flex-direction: column; gap: 14px; }

.skill-bar-item { }
.sb-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.sb-track {
  height: 6px;
  background: var(--bg-secondary);
  border-radius: 3px;
  overflow: hidden;
}
.sb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 3px;
  width: 0;
  transition: width 1.2s ease;
}

/* Tools & Certs */
.tools-card, .cert-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.tools-card h4, .cert-mini h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.tool-icon { color: var(--gold); display: flex; }

.cert-mini ul { list-style: none; }
.cert-mini li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.cert-mini li:last-child { border-bottom: none; }

.cert-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .skills-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual { position: relative; }

.about-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #fdf9ef, #f4efe2 60%, #eef3ee);
  border: 1px solid rgba(224,184,76,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(224,184,76,0.12), transparent 50%);
  pointer-events: none;
}

.about-placeholder {
  color: var(--text-muted);
  opacity: 0.3;
}

.about-decorations {
  position: absolute; inset: 0;
  pointer-events: none;
}

.about-deco {
  position: absolute;
  border-radius: var(--radius-md);
}
.ad-1 {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(184,148,31,0.2), rgba(184,105,74,0.1));
  top: -12px; right: -12px;
}
.ad-2 {
  width: 40px; height: 40px;
  background: rgba(184,148,31,0.1);
  bottom: 20px; left: -15px;
  border-radius: 10px;
  transform: rotate(45deg);
}
.ad-3 {
  width: 80px; height: 3px;
  background: var(--gold);
  opacity: 0.2;
  bottom: -8px; right: 30px;
}

.about-floating-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.afc-icon { color: var(--gold); }
.afc-text { font-size: 0.82rem; }
.afc-text strong { display: block; font-size: 0.88rem; }
.afc-text span { color: var(--text-secondary); }

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { text-align: left; margin-bottom: 20px; }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}
.about-content strong { color: var(--text-primary); font-weight: 600; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.as-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.as-label {
  font-size: 0.78rem;
  color: var(--text-secondary);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visual { max-width: 340px; margin: 0 auto; }
  .about-content .section-title { text-align: center; }
  .about-content { text-align: center; }
  .about-stats { justify-items: center; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  background-image: radial-gradient(160px 100px at 100% 0%, rgba(224,184,76,0.05), transparent 60%);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 30%; right: 30%;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(184,134,11,0.14);
  border-color: rgba(224,184,76,0.35);
}
.testimonial-card:hover::before { opacity: 1; }

.testimonial-card-featured {
  border-color: rgba(224,184,76,0.3);
  background: linear-gradient(135deg, #ffffff, rgba(224,184,76,0.05));
}

.tc-quote { margin-bottom: 16px; color: var(--gold); }

.tc-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(224,184,76,0.2), rgba(192,102,63,0.14));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
}

.tc-name { font-weight: 600; font-size: 0.9rem; }
.tc-role { font-size: 0.78rem; color: var(--text-muted); }

.tc-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ---------- INSIGHTS / BLOG ---------- */
.insights {
  padding: 120px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 46px rgba(90,75,140,0.13);
  border-color: rgba(224,184,76,0.3);
}

.ic-image {
  height: 180px;
  background: linear-gradient(135deg, #f5f0e3, #eef2ec);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ic-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(224,184,76,0.15), transparent 55%);
}

.ic-image-placeholder { color: var(--text-muted); opacity: 0.3; }

.ic-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 12px;
  background: rgba(184,148,31,0.9);
  color: #fff;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ic-content { padding: 24px; }

.ic-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ic-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 8px 0 10px;
  line-height: 1.35;
}

.ic-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 120px 0;
  background: var(--bg-secondary);
}

.cta-card {
  position: relative;
  background: var(--gradient-dark);
  border: 1px solid rgba(224,184,76,0.25);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: 0 0 8px 8px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #f5efe2;
}

.cta-content p {
  font-size: 1.05rem;
  color: #b9b2c9;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-content p em {
  color: var(--gold-light);
  font-style: italic;
}

.cta-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 300px; height: 300px;
  background: rgba(224,184,76,0.16);
  top: -80px; left: -80px;
}
.cta-orb-2 {
  width: 250px; height: 250px;
  background: rgba(192,102,63,0.14);
  bottom: -60px; right: -60px;
}

.cta-content { position: relative; z-index: 2; }

.cta-content .btn-primary {
  background: var(--gradient-gold);
  color: var(--ink);
}

.cta-content .btn-glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f5efe2;
}
.cta-content .btn-glass:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(224,184,76,0.5);
  color: var(--gold-light);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

@media (max-width: 600px) {
  .cta-card { padding: 48px 24px; }
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 0;
}

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

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.contact-channel:hover {
  border-color: rgba(224,184,76,0.4);
  background: var(--bg-card-hover);
  transform: translateX(6px);
  box-shadow: 0 10px 30px rgba(184,134,11,0.14);
}

.cc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(224,184,76,0.2), rgba(192,102,63,0.14));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(224,184,76,0.15);
  transition: transform 0.3s ease;
}
.contact-channel:hover .cc-icon { transform: scale(1.06) rotate(-5deg); }

.cc-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.cc-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.cc-arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: 0.3s ease;
}
.contact-channel:hover .cc-arrow { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239a96a6' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group label {
  position: absolute;
  top: 16px; left: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: 0.25s ease;
  background: var(--bg-secondary);
  padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -8px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

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

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- FOOTER (dark ink) ---------- */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(160deg, #2c2650, #1c1830 55%, #251a12);
  color: #d9d3e4;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 30px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #a49db8;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-logo { margin-bottom: 8px; }
.footer-logo .logo-text { color: #f5efe2; }

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

.fl-group h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold-light);
}

.fl-group a {
  display: block;
  font-size: 0.88rem;
  color: #a49db8;
  padding: 4px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.fl-group a:hover { color: var(--gold-light); transform: translateX(3px); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #8f87a3;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #a49db8;
  transition: all 0.3s ease;
}
.footer-socials a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(224,184,76,0.5);
  color: var(--gold-light);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.92); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- PRINT ---------- */
@media print {
  .nav, .whatsapp-float, .cursor-glow, .preloader, .hero-scroll-indicator { display: none; }
  body { background: #fff; color: #000; }
  .section-title, .text-gradient { -webkit-text-fill-color: #000; color: #000; }
}