/*
Theme Name: LuxeSocial Pro
Theme URI: https://luxesocial.pro
Author: Premium Themes Studio
Author URI: https://premiumthemes.studio
Description: A luxury premium WordPress theme for Social Media Management & Digital Marketing Experts. Features multi-color typography, glassmorphism cards, GSAP animations, and a stunning light UI designed for high-ticket leads and authority building.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luxesocial
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, portfolio, e-commerce
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Colors */
  --lavender:     #C4B5FD;
  --purple:       #8B5CF6;
  --purple-deep:  #6D28D9;
  --sky:          #7DD3FC;
  --cyan:         #67E8F9;
  --pink:         #F9A8D4;
  --peach:        #FDBA74;
  --indigo:       #818CF8;
  --rose:         #FB7185;

  /* Gradient Palette */
  --grad-hero:    linear-gradient(135deg, #FAF5FF 0%, #EFF6FF 40%, #FDF2F8 100%);
  --grad-accent:  linear-gradient(135deg, #8B5CF6, #EC4899, #F97316);
  --grad-cool:    linear-gradient(135deg, #6366F1, #8B5CF6, #06B6D4);
  --grad-warm:    linear-gradient(135deg, #F97316, #EC4899, #8B5CF6);
  --grad-text:    linear-gradient(90deg, #8B5CF6, #EC4899, #06B6D4, #F97316);
  --grad-section: linear-gradient(180deg, #FFFFFF 0%, #FAF5FF 100%);
  --grad-card:    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.6));

  /* Neutrals */
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-300:     #D1D5DB;
  --gray-400:     #9CA3AF;
  --gray-500:     #6B7280;
  --gray-700:     #374151;
  --gray-900:     #111827;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cormorant Garamond', serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   6rem;
  --space-2xl:  8rem;

  /* Radii */
  --radius-sm:  0.5rem;
  --radius-md:  1rem;
  --radius-lg:  1.5rem;
  --radius-xl:  2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(139,92,246,0.08), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 40px rgba(139,92,246,0.12), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl:  0 20px 60px rgba(139,92,246,0.16), 0 8px 24px rgba(0,0,0,0.10);
  --shadow-glow: 0 0 40px rgba(139,92,246,0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --container-max: 1280px;
  --container-wide: 1440px;
  --nav-height: 80px;

  /* ── Aliases for page templates (pages.css compatibility) ── */
  --dark:            #111827;
  --body-text:       #374151;
  --gray:            #6B7280;
  --border:          #E5E7EB;
  --bg-soft:         #F9FAFB;
  --grad-vivid:      linear-gradient(135deg, #8B5CF6, #EC4899, #F97316);
  --lavender-light:  #EDE9FE;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding-block: var(--space-xl);
}

.section--lg {
  padding-block: var(--space-2xl);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 1rem; }
.gap-md { gap: 2rem; }
.gap-lg { gap: 3rem; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 700;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p { font-size: 1.0625rem; line-height: 1.8; color: var(--gray-500); }
p.lead { font-size: 1.25rem; line-height: 1.7; }

/* Gradient Text */
.text-gradient {
  background: var(--grad-text);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease infinite;
}

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

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

.text-gradient--purple {
  background: linear-gradient(135deg, var(--purple), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Display / Playfair headings */
.font-display { font-family: var(--font-display); }
.font-accent  { font-family: var(--font-accent); font-style: italic; }

/* Section labels */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

/* ── Shared utilities used by page templates ── */

/* Glass card */
.glass-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(139,92,246,0.08), 0 2px 8px rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gradient text (alias) */
.gradient-text {
  background: var(--grad-text, linear-gradient(90deg,#8B5CF6,#EC4899,#06B6D4,#F97316));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Section badge (pages.css style, alias .label) */
.section-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: linear-gradient(135deg, rgba(139,92,246,.12), rgba(236,72,153,.08));
  color: var(--purple, #8B5CF6);
  border: 1px solid rgba(139,92,246,.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Trust badges */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: #fff;
  border: 1.5px solid var(--border, #E5E7EB);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700, #374151);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

/* Text center helper */
.text-center { text-align: center; }

/* Section header (pages.css style) */
.section-header.text-center { text-align: center; }
.section-header.text-center h2,
.section-header.text-center p { max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--dark, #111827);
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Button aliases for pages.css (btn-primary vs btn--primary) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #8B5CF6, #EC4899, #F97316);
  background-size: 200% auto;
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-position 0.4s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(139,92,246,.35);
}
.btn-primary:hover { background-position: right center; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(139,92,246,.45); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--purple, #8B5CF6);
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid var(--purple, #8B5CF6);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--purple, #8B5CF6); color: #fff; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: rgba(139,92,246,.06);
  color: var(--purple, #8B5CF6);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(139,92,246,.12); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { opacity: .9; transform: translateY(-2px); }

/* Blob background elements */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; pointer-events: none; z-index: 0; animation: floatBlob 8s ease-in-out infinite; }
.blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,.4), transparent); top: -150px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(236,72,153,.3), transparent); top: 30%; right: -100px; animation-delay: 3s; }
.blob-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(6,182,212,.3), transparent); bottom: -100px; left: 30%; animation-delay: 6s; }
@keyframes floatBlob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-40px) scale(1.05); } 66% { transform: translate(-20px,30px) scale(.97); } }

/* Highlight Keyword */
.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--lavender), var(--sky));
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
}

/* Outlined text */
.text-outline {
  -webkit-text-stroke: 2px var(--purple);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   BADGE COMPONENTS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.badge--purple {
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(109,40,217,0.08));
  color: var(--purple-deep);
  border: 1px solid rgba(139,92,246,0.25);
}

.badge--pink {
  background: linear-gradient(135deg, rgba(249,168,212,0.2), rgba(251,113,133,0.1));
  color: #BE185D;
  border: 1px solid rgba(249,168,212,0.4);
}

.badge--cyan {
  background: linear-gradient(135deg, rgba(103,232,249,0.15), rgba(125,211,252,0.1));
  color: #0E7490;
  border: 1px solid rgba(103,232,249,0.3);
}

.badge--peach {
  background: linear-gradient(135deg, rgba(253,186,116,0.2), rgba(251,146,60,0.1));
  color: #C2410C;
  border: 1px solid rgba(253,186,116,0.4);
}

.badge--floating {
  animation: floatBadge 3s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  transition: all var(--duration-base) var(--ease-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-smooth);
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--grad-accent);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(139,92,246,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(139,92,246,0.45);
}

.btn--secondary {
  background: var(--white);
  color: var(--purple-deep);
  border-color: rgba(139,92,246,0.3);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: rgba(139,92,246,0.04);
  border-color: var(--purple);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn--ghost:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn--lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Glassmorphism Card */
.card--glass {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 32px rgba(139,92,246,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
}

.card--glass:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 20px 60px rgba(139,92,246,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Service Card */
.service-card {
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-card);
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(139,92,246,0.2);
}

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

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Testimonial Card */
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  color: #FBBF24;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(139,92,246,0.3);
}

.testimonial-card__name { font-weight: 700; font-size: 0.9375rem; }
.testimonial-card__role { font-size: 0.8125rem; color: var(--gray-400); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 4rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.125rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -40px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.98); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

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

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
  /* CSS-only safety: if JS never fires, fade in after 2s so content is never invisible */
  animation: revealFallback 0.7s ease forwards;
  animation-delay: 2s;
}
@keyframes revealFallback {
  to { opacity: 1; transform: none; }
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: none; /* cancel fallback once JS fires */
}
.reveal--left  { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--left.visible, .reveal--right.visible { transform: translateX(0); }
.reveal--scale { transform: scale(0.92); }
.reveal--scale.visible { transform: scale(1); }

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   BLOBS
   ============================================================ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatBlob 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.blob--purple { background: radial-gradient(circle, var(--lavender), var(--purple)); }
.blob--pink   { background: radial-gradient(circle, var(--pink), #F472B6); }
.blob--cyan   { background: radial-gradient(circle, var(--cyan), var(--sky)); }
.blob--peach  { background: radial-gradient(circle, var(--peach), #FB923C); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--duration-base) var(--ease-smooth);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 32px rgba(139,92,246,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.nav-logo span {
  font-weight: 300;
  font-style: italic;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-smooth);
  letter-spacing: 0.01em;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-menu a:hover { color: var(--purple); }
.nav-menu a:hover::after { left: 1rem; right: 1rem; }
.nav-menu a.active { color: var(--purple); }
.nav-menu a.active::after { left: 1rem; right: 1rem; }

.nav-cta { margin-left: 1.5rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-smooth);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color var(--duration-fast);
}

.mobile-nav a:hover { color: var(--purple); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238B5CF6' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-block: var(--space-xl);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-heading {
  margin-bottom: 1.5rem;
  line-height: 1.08;
}

.hero-heading .line-1 {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.hero-heading .line-2 {
  display: block;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  background: var(--grad-text);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease infinite;
  letter-spacing: -0.04em;
}

.hero-heading .line-3 {
  display: block;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--gray-500);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-cta { margin-bottom: 3rem; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.hero-avatars img:first-child { margin-left: 0; }

.hero-proof-text { font-size: 0.875rem; }
.hero-proof-text strong { display: block; color: var(--gray-900); font-weight: 700; }
.hero-proof-text span { color: var(--gray-400); }

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

.hero-image-wrap {
  position: relative;
  width: 440px;
  height: 540px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(139,92,246,0.2);
  animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
  0%   { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  33%  { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  66%  { border-radius: 30% 70% 30% 70% / 50% 50% 50% 50%; }
  100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(139,92,246,0.1);
  min-width: 180px;
}

.hero-float-badge__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hero-float-badge__num {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-float-badge__label {
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 600;
}

.hero-float-badge--1 {
  top: 10%;
  left: -30px;
  animation: floatBadge 3.5s ease-in-out infinite;
}

.hero-float-badge--2 {
  bottom: 15%;
  right: -20px;
  animation: floatBadge 4s ease-in-out infinite 0.5s;
}

.hero-float-badge--3 {
  top: 50%;
  right: -40px;
  animation: floatBadge 3s ease-in-out infinite 1s;
}

/* Social Icons Row */
.hero-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--duration-base) var(--ease-bounce);
  border: 1px solid rgba(139,92,246,0.15);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hero-social-icon:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   BRANDS / TRUSTED SECTION
   ============================================================ */
.brands-section {
  padding-block: var(--space-lg);
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}

.brands-marquee-wrap {
  position: relative;
}

.brands-marquee-wrap::before,
.brands-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.brands-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.brands-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.brands-marquee--reverse {
  animation-direction: reverse;
  margin-top: 1.5rem;
}

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

.brand-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gray-400);
  white-space: nowrap;
  border: 1px solid var(--gray-100);
  transition: all var(--duration-base);
}

.brand-item span { font-size: 1.25rem; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding-block: var(--space-2xl);
  background: linear-gradient(180deg, #FAFAFA 0%, #FAF5FF 100%);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-experience-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
  border: 1px solid rgba(139,92,246,0.1);
}

.about-exp-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-exp-label {
  font-size: 0.8125rem;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content .label { margin-bottom: 1.25rem; }

.about-content h2 { margin-bottom: 1.5rem; }

.about-content p { margin-bottom: 1.25rem; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.about-stat {
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.about-stat__num {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-cool);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-stat__label { font-size: 0.8125rem; color: var(--gray-500); }

/* Timeline */
.timeline { position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple), var(--pink), var(--cyan));
  border-radius: 2px;
  margin-left: 20px;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 13px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-accent);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.15);
}

.timeline-year {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
  margin-top: 2px;
  min-width: 60px;
}

.timeline-content h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.875rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding-block: var(--space-2xl);
  background: var(--white);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ============================================================
   COUNTER / RESULTS SECTION
   ============================================================ */
.counter-section {
  padding-block: var(--space-xl);
  background: linear-gradient(135deg, #FAF5FF 0%, #EFF6FF 50%, #FDF2F8 100%);
  position: relative;
  overflow: hidden;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-base) var(--ease-smooth);
}

.counter-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  background: rgba(255,255,255,0.9);
}

.counter-num {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 600;
  line-height: 1.4;
}

.counter-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section {
  padding-block: var(--space-2xl);
  background: var(--gray-50);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  color: var(--gray-500);
  background: var(--white);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 4px 16px rgba(139,92,246,0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all var(--duration-base) var(--ease-smooth);
}

.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.portfolio-item:hover img { transform: scale(1.07); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(109,40,217,0.9) 0%, rgba(139,92,246,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.portfolio-overlay .stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.portfolio-stat {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 700;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  padding-block: var(--space-2xl);
  background: linear-gradient(135deg, #FAF5FF 0%, #FDF2F8 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
}

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--purple), var(--pink), var(--cyan));
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  transition: all var(--duration-base) var(--ease-bounce);
}

.process-step:hover .process-num {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.process-step:nth-child(1) .process-num { border-color: var(--purple); color: var(--purple); }
.process-step:nth-child(2) .process-num { border-color: var(--indigo); color: var(--indigo); }
.process-step:nth-child(3) .process-num { border-color: var(--sky); color: var(--sky); }
.process-step:nth-child(4) .process-num { border-color: var(--pink); color: var(--pink); }
.process-step:nth-child(5) .process-num { border-color: var(--peach); color: var(--peach); }

.process-step h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding-block: var(--space-xl);
  background: linear-gradient(135deg, var(--purple-deep), #4F46E5, #0284C7);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section .blob { opacity: 0.15; }

.cta-section h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.cta-section .btn--primary {
  background: var(--white);
  color: var(--purple-deep);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.cta-section .btn--ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.cta-section .btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  padding-block: var(--space-2xl);
  background: var(--gray-50);
}

.faq-grid {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--gray-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: color var(--duration-fast);
}

.faq-question:hover { color: var(--purple); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(139,92,246,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
  transition: all var(--duration-base) var(--ease-smooth);
  font-size: 1rem;
}

.faq-item.open .faq-icon {
  background: var(--purple);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-expo);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-section {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-base) var(--ease-smooth);
}

.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.blog-card__thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.blog-card:hover .blog-card__thumb img { transform: scale(1.08); }

.blog-card__body { padding: 1.75rem; }

.blog-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--gray-900);
  transition: color var(--duration-fast);
}

.blog-card:hover .blog-card__title { color: var(--purple); }

.blog-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  padding-block: var(--space-2xl);
  background: linear-gradient(135deg, #FAF5FF 0%, #EFF6FF 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--duration-base) var(--ease-smooth);
}

.contact-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-card__label { font-size: 0.8125rem; color: var(--gray-400); }
.contact-card__value { font-weight: 700; color: var(--gray-900); }

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(139,92,246,0.1);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--gray-900);
  background: var(--white);
  transition: all var(--duration-fast) var(--ease-smooth);
  outline: none;
}

.form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(139,92,246,0.12);
}

.form-control::placeholder { color: var(--gray-300); }

textarea.form-control { resize: vertical; min-height: 140px; }

select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ============================================================
   BOOKING FORM
   ============================================================ */
.booking-section {
  padding-block: var(--space-2xl);
  background: var(--white);
}

.booking-form-wrap {
  max-width: 700px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(139,92,246,0.1);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  color: var(--white);
  transition: all var(--duration-base) var(--ease-bounce);
  position: relative;
  text-decoration: none;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.4);
  animation: pulse-ring 2s ease-out infinite;
}

.whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

.whatsapp-tooltip {
  background: var(--white);
  color: var(--gray-900);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
  border: 1px solid var(--gray-100);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 1.25rem 0 2rem;
  color: var(--gray-400);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-400);
  transition: all var(--duration-base) var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--gray-400);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul a:hover { color: var(--lavender); }

.footer-col ul a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  margin-right: -0.5rem;
  transition: all var(--duration-fast);
}

.footer-col ul a:hover::before {
  opacity: 1;
  margin-right: 0;
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  outline: none;
  transition: border-color var(--duration-fast);
}

.footer-newsletter input:focus { border-color: rgba(139,92,246,0.5); }
.footer-newsletter input::placeholder { color: var(--gray-500); }

.footer-bottom {
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-bottom a { color: var(--lavender); transition: color var(--duration-fast); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--gray-100);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--grad-accent);
  border-radius: 3px;
  animation: loadBar 1.5s ease-in-out forwards;
}

@keyframes loadBar {
  0%   { width: 0%; }
  70%  { width: 85%; }
  100% { width: 100%; }
}

/* ============================================================
   CURSOR
   ============================================================ */
.custom-cursor {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(139,92,246,0.6);
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: multiply;
  transition: transform 0.15s ease;
  will-change: transform;
}

.custom-cursor--dot {
  width: 6px;
  height: 6px;
  background: var(--purple);
}

.custom-cursor--ring {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(139,92,246,0.4);
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* ============================================================
   SECTION DIVIDERS
   ============================================================ */
.divider-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.divider-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-accent);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1001;
  transition: transform 0.1s;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .counter-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-image-wrap { width: 360px; height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .nav-menu, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-badges { justify-content: center; }
  .btn-group { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 400px; }
  .about-image-main { height: 400px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .sticky-cta { display: block; }

  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .section { padding-block: 4rem; }
  .section--lg { padding-block: 5rem; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero-float-badge { display: none; }
}
