/* ==========================================================================
   SOFIA REYES · INSTAGRAM PORTFOLIO & ADS MARKETING
   STYLE.CSS
   ========================================================================== */

/* --- reset & base variables --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-dark: #07070d;
  --bg-card: #0e0e1a;
  --bg-card-hover: #141424;
  
  /* Primary Font Stack */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  
  --text-main: #f2f0fa;
  --text-muted: #9a97b4;
  --text-dark: #5e5b7a;
  
  /* Instagram Palette */
  --ig-yellow: #f9ce34;
  --ig-pink: #ee2a7b;
  --ig-purple: #6228d7;
  --ig-blue: #405de6;
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--ig-yellow) 0%, var(--ig-pink) 50%, var(--ig-purple) 100%);
  --grad-overlay: linear-gradient(to top, rgba(7, 7, 13, 0.95) 0%, rgba(7, 7, 13, 0.4) 70%, transparent 100%);
  --grad-hover: linear-gradient(135deg, #fbd236 0%, #f53589 50%, #7a35e8 100%);
  --grad-text: linear-gradient(90deg, var(--ig-pink) 0%, var(--ig-purple) 60%, var(--ig-blue) 100%);

  /* Borders & Shadows */
  --border-light: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(238, 42, 123, 0.15);
  --shadow-main: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(238, 42, 123, 0.2);

  /* Miscellaneous */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--ig-pink) var(--bg-dark);
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* --- custom scrollbars --- */
body::-webkit-scrollbar {
  width: 6px;
}
body::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
body::-webkit-scrollbar-thumb {
  background: var(--grad-primary);
  border-radius: 10px;
}

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

/* --- cursor glow backplate --- */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(238, 42, 123, 0.08) 0%, rgba(98, 40, 215, 0.04) 50%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* --- dual cursor (Instagram Peak style) --- */
body, a, button, input, select, textarea, label {
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--ig-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
              height 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.15s;
  box-shadow: 0 0 8px rgba(238, 42, 123, 0.6);
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(98, 40, 215, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              height 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.2s, border-color 0.2s;
}

body.cur-hov .cursor          { width: 20px; height: 20px; background: var(--ig-pink); }
body.cur-hov .cursor-follower { width: 54px; height: 54px; border-color: var(--ig-purple); opacity: 0.6; }

/* --- loader & logo peak accent --- */
.loader-peak,
.logo-peak {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- modal overlay --- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1; pointer-events: all;
}

.scheduler-modal {
  background: var(--bg-card);
  border: 1px solid rgba(238, 42, 123, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 90%; max-width: 760px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 0 60px rgba(238, 42, 123, 0.15), 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: modal-slide-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-slide-in {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s; cursor: none;
}
.modal-close:hover { background: rgba(238, 42, 123, 0.2); color: #fff; border-color: rgba(238, 42, 123, 0.4); }

.modal-icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }

.scheduler-modal-title {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.scheduler-modal-sub {
  font-size: 0.82rem; margin-bottom: 1.5rem; color: var(--text-muted);
}

.scheduler-step { }
.scheduler-step.hidden { display: none !important; }

/* Calendar layout */
.scheduler-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.8rem;
  font-weight: 700; font-size: 0.95rem;
}

.cal-nav-btn {
  width: 30px; height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px; color: #fff;
  font-size: 1.1rem; cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: 0.2s;
}
.cal-nav-btn:hover { background: rgba(238, 42, 123, 0.2); border-color: rgba(238, 42, 123, 0.4); }

.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: 0.4rem;
}
.calendar-weekdays span { font-size: 0.7rem; color: var(--text-dark); font-weight: 600; padding: 0.3rem 0; }

.calendar-days {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
}

.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.8rem; font-weight: 500;
  cursor: none; transition: 0.18s; border: 1px solid transparent;
}
.cal-day.empty { pointer-events: none; }
.cal-day.past  { color: var(--text-dark); opacity: 0.4; pointer-events: none; }
.cal-day.available:hover { background: rgba(238, 42, 123, 0.15); border-color: rgba(238, 42, 123, 0.3); color: var(--ig-pink); }
.cal-day.selected { background: var(--grad-primary); color: #fff; border-color: transparent; box-shadow: 0 0 12px rgba(238, 42, 123, 0.4); }
.cal-day.today { border-color: rgba(98, 40, 215, 0.4); color: var(--ig-purple); }

/* Time slots */
.time-slots-wrapper h4.slots-header {
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-dark); margin-bottom: 0.8rem;
}

.time-slots {
  display: flex; flex-direction: column; gap: 0.45rem;
  max-height: 240px; overflow-y: auto;
}

.time-slot {
  padding: 0.55rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px; font-size: 0.85rem; font-weight: 600;
  cursor: none; transition: 0.18s; color: var(--text-muted); text-align: left;
}
.time-slot:hover { background: rgba(238, 42, 123, 0.12); border-color: rgba(238, 42, 123, 0.3); color: #fff; }
.time-slot.selected { background: rgba(238, 42, 123, 0.18); border-color: var(--ig-pink); color: var(--ig-pink); box-shadow: 0 0 10px rgba(238, 42, 123, 0.2); }

.no-date-msg { font-size: 0.82rem; color: var(--text-dark); padding: 1rem 0; }

.scheduler-actions { margin-top: 1.5rem; }

/* Scheduler form */
.scheduler-form .form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.form-input {
  width: 100%; padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px; color: var(--text-main);
  font-family: var(--font-main); font-size: 0.9rem;
  transition: 0.2s; outline: none;
}
.form-input:focus { border-color: var(--ig-pink); box-shadow: 0 0 0 3px rgba(238, 42, 123, 0.12); }
.error-msg { display: none; font-size: 0.72rem; color: var(--ig-pink); margin-top: 0.3rem; }

/* Booking summary card */
.booking-summary-card {
  background: rgba(98, 40, 215, 0.07);
  border: 1px solid rgba(98, 40, 215, 0.2);
  border-radius: 14px; padding: 1.2rem 1.5rem;
  font-size: 0.88rem; line-height: 1.7; color: var(--text-muted);
}
.booking-summary-card strong { color: var(--ig-purple); }

/* WhatsApp contact detail */
.contact-detail-whatsapp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}
.contact-detail-whatsapp:hover { opacity: 0.85; }
.contact-detail-whatsapp:hover .detail-label { color: #25D366; }

/* --- loader screen --- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.05);
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.loader-text {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.loader-bar {
  width: 150px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.loader-fill {
  width: 0%;
  height: 100%;
  background: var(--grad-primary);
  border-radius: 10px;
  animation: fillProgress 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fillProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* --- containers & structures --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* --- buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 30px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(238, 42, 123, 0.2);
}

.btn-primary:hover {
  background: var(--grad-hover);
  box-shadow: 0 6px 20px rgba(238, 42, 123, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--ig-pink);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --- header & navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(7, 7, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background-color: rgba(7, 7, 13, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad-primary);
}

.logo-name {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
}

.logo-badge {
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
  background-color: rgba(238, 42, 123, 0.1);
  border: 1px solid rgba(238, 42, 123, 0.2);
  color: var(--ig-pink);
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 400;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-nav {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 20px;
  border: 1px solid var(--ig-pink);
  background-color: rgba(238, 42, 123, 0.05);
  color: var(--text-main);
}

.btn-nav:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.03);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 25px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 5px;
  transition: var(--transition-fast);
}

/* --- mobile drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-card);
  border-left: 1px solid var(--border-light);
  z-index: 1001;
  padding: 40px 30px;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 40px;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.drawer-close:hover {
  color: var(--text-main);
}

.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.drawer-link {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.drawer-link:hover {
  color: var(--text-main);
  padding-left: 5px;
}

.btn-drawer-cta {
  background: var(--grad-primary);
  color: #fff;
  width: 100%;
  margin-top: 15px;
  text-align: center;
  padding: 12px 0;
}

/* --- hero section --- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ig-pink);
  box-shadow: 0 0 10px var(--ig-pink);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

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

.visual-wrapper {
  position: relative;
  z-index: 2;
}

.phone-mockup {
  width: 290px;
  height: 590px;
  background-color: #000;
  border: 11px solid #1c1a24;
  border-radius: 40px;
  box-shadow: var(--shadow-main), 0 0 0 2px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.phone-header {
  height: 30px;
  background-color: #000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-speaker {
  width: 50px;
  height: 4px;
  background-color: #2b2b2b;
  border-radius: 2px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1a1a1a;
  position: absolute;
  right: 65px;
}

.phone-screen {
  height: calc(100% - 30px);
  background-color: #000;
  padding: 16px 12px;
  overflow-y: auto;
  scrollbar-width: none;
}
.phone-screen::-webkit-scrollbar {
  display: none;
}

.ig-profile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.ig-avatar-container {
  position: relative;
}

.ig-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 3px solid #000;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.avatar-ring {
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 50%;
  background: var(--grad-primary);
  z-index: 1;
}

.ig-stats {
  display: flex;
  gap: 15px;
  flex-grow: 1;
  justify-content: flex-end;
  padding-right: 5px;
}

.ig-stat-col {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.stat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.ig-profile-bio {
  margin-bottom: 16px;
}

.bio-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.bio-category {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.bio-text {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 6px;
}

.bio-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bio-link-icon {
  font-size: 0.75rem;
}

.bio-link-url {
  font-size: 0.72rem;
  color: #3897f0;
  font-weight: 500;
  text-decoration: none;
}

.ig-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.btn-ig-action {
  padding: 6px 0;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  background: var(--grad-primary);
  color: #fff;
  box-shadow: none;
}

.btn-ig-action:hover {
  background: var(--grad-hover);
  transform: none;
  box-shadow: none;
}

.btn-ig-action.btn-ig-secondary {
  background: #262626;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-main);
}

.btn-ig-action.btn-ig-secondary:hover {
  background: #363636;
}

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

.mini-post {
  aspect-ratio: 1;
  background-color: #111;
  border-radius: 4px;
  overflow: hidden;
}

.mini-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mini-post:hover img {
  transform: scale(1.08);
}

/* --- floating glassmorphic widgets --- */
.status-widget {
  position: absolute;
  background: rgba(14, 14, 26, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  box-shadow: var(--shadow-main);
  animation: floatEffect 6s ease-in-out infinite;
}

.widget-top {
  top: 40px;
  left: -50px;
}

.widget-bottom {
  bottom: 50px;
  right: -50px;
  animation-delay: 3s;
}

.widget-icon {
  font-size: 1.4rem;
}

.widget-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(238, 42, 123, 0.1);
  border: 1px solid rgba(238, 42, 123, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ig-pink);
}

.widget-info {
  display: flex;
  flex-direction: column;
}

.widget-label {
  font-size: 0.72rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-value {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

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

/* --- brand ticker / trusted by strip --- */
.brand-ticker-section {
  background-color: #05050a;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.brand-ticker-section.reveal {
  transform: translateY(15px);
}

.brand-ticker-section.reveal.revealed {
  transform: translateY(0);
}

.ticker-container {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
}

.ticker-header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  margin-left: 20px;
  margin-right: 24px;
}

.ticker-wrap {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
  position: relative;
  /* Smooth fading gradient mask on the edges */
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
  padding-left: 10px;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 1.25rem;
  color: #8c8a9e;
  font-weight: 600;
  user-select: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.ticker-item:hover {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.ticker-star {
  color: var(--ig-pink);
  font-size: 0.8rem;
  user-select: none;
  opacity: 0.85;
}

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

/* Custom logotype font mimicking */
.brand-bull {
  font-family: Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.brand-adobe {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.brand-gymshark {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand-fenty {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 2.5px;
}

.brand-duolingo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.brand-nike {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.8px;
}

.brand-spotify {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.brand-samsung {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
}

/* --- statistics strip --- */
.stats-section {
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
  position: relative;
  z-index: 2;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number-wrap {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
}

.stat-plus {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* --- sections common header --- */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 55px auto;
}

.section-tag {
  font-size: 0.78rem;
  color: var(--ig-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
  padding: 2px 10px;
  border-radius: 12px;
  background-color: rgba(238, 42, 123, 0.05);
  border: 1px solid rgba(238, 42, 123, 0.1);
}

.section-title {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
}

/* --- portfolio feed section --- */
.portfolio-section {
  padding: 100px 0;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-main);
  border-color: var(--text-muted);
}

.filter-btn.active {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 12px rgba(238, 42, 123, 0.2);
}

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

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
}

.portfolio-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-overlay);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

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

.overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay-tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.08);
}

.overlay-stat {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ig-yellow);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid var(--ig-pink);
  font-family: var(--font-main);
}

.overlay-center {
  text-align: center;
  transform: translateY(15px);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover .overlay-center {
  transform: translateY(0);
}

.overlay-zoom-icon {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 8px;
}

.overlay-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}

.overlay-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.overlay-bottom {
  display: flex;
  justify-content: space-around;
  font-size: 0.8rem;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 10px;
}

.overlay-metric {
  font-weight: 500;
}

/* --- services section --- */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.service-card {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--ig-pink);
  box-shadow: var(--shadow-glow);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: var(--grad-primary);
  border-color: transparent;
  transform: scale(1.05);
}

.service-emoji {
  font-size: 1.3rem;
}

.service-title {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--border-light);
  padding-top: 15px;
}

.service-details li {
  font-size: 0.78rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-details li::before {
  content: "•";
  color: var(--ig-pink);
  font-weight: bold;
}

/* --- formats section --- */
.formats-section {
  padding: 100px 0;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.format-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.format-card:hover {
  transform: scale(1.02);
  border-color: var(--ig-purple);
  box-shadow: 0 10px 30px rgba(98, 40, 215, 0.15);
}

.format-image-wrap {
  width: 100%;
  aspect-ratio: 1.15;
  position: relative;
  overflow: hidden;
}

.format-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.format-card:hover .format-image-wrap img {
  transform: scale(1.06);
}

.format-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: rgba(7, 7, 13, 0.85);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 500;
}

.format-info {
  padding: 24px;
}

.format-name {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.format-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* --- campaign calculator section --- */
.calc-section {
  padding: 100px 0;
  position: relative;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: stretch;
}

.calc-card {
  background: rgba(14, 14, 26, 0.45);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.calc-card:hover {
  border-color: rgba(238, 42, 123, 0.2);
}

.calc-inputs {
  z-index: 2;
}

.calc-results {
  background: linear-gradient(145deg, rgba(20, 20, 38, 0.8) 0%, rgba(10, 10, 20, 0.9) 100%);
  border: 1px solid rgba(238, 42, 123, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(238, 42, 123, 0.03);
  overflow: hidden;
}

/* Subtle glowing background behind calculator results */
.results-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 42, 123, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.calc-card-title {
  font-family: var(--font-main);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.calc-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.calc-input-group {
  margin-bottom: 25px;
}

.calc-input-group:last-child {
  margin-bottom: 0;
}

.calc-input-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
}

.calc-input-group .label-hint {
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.calc-label-wrapper label {
  margin-bottom: 0;
}

.calc-value-display {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ig-pink);
  font-family: var(--font-main);
}

/* Range Slider Styling */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  outline: none;
  margin: 12px 0 8px 0;
  transition: var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-primary);
  cursor: pointer;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(238, 42, 123, 0.5);
  transition: transform 0.1s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--grad-primary);
  cursor: pointer;
  border: 2px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(238, 42, 123, 0.5);
  transition: transform 0.1s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.slider-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dark);
}

/* Custom Select dropdown styling */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.65rem;
  color: var(--text-muted);
  right: 16px;
  top: 18px;
  position: absolute;
  pointer-events: none;
}

.calc-select {
  width: 100%;
  padding: 12px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-select:focus {
  border-color: var(--ig-pink);
  background-color: rgba(255, 255, 255, 0.05);
}

.calc-select option {
  background-color: var(--bg-card);
  color: var(--text-main);
}

/* Checkbox pill/badge grid styling */
.calc-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.calc-checkbox-label {
  cursor: pointer;
  display: block;
}

.calc-checkbox-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  font-weight: 500;
  transition: var(--transition-fast);
  user-select: none;
}

.calc-checkbox-label input:checked + .checkbox-button {
  background: rgba(238, 42, 123, 0.1);
  border-color: var(--ig-pink);
  color: var(--text-main);
  box-shadow: 0 0 10px rgba(238, 42, 123, 0.1);
}

.calc-checkbox-label:hover .checkbox-button {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

/* Radio pill/badge group styling */
.calc-radio-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-radio-label {
  cursor: pointer;
  display: block;
}

.calc-radio-label input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  font-weight: 500;
  transition: var(--transition-fast);
  user-select: none;
}

.calc-radio-label input:checked + .radio-button {
  background: rgba(98, 40, 215, 0.12);
  border-color: var(--ig-purple);
  color: var(--text-main);
  box-shadow: 0 0 10px rgba(98, 40, 215, 0.1);
}

.calc-radio-label:hover .radio-button {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
}

/* Results section grids & item styling */
.calc-results .results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  z-index: 2;
  position: relative;
}

.result-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.result-box:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.highlighted-result {
  background: linear-gradient(135deg, rgba(238, 42, 123, 0.06) 0%, rgba(98, 40, 215, 0.06) 100%);
  border: 1px solid rgba(238, 42, 123, 0.2);
}

.highlighted-result:hover {
  background: linear-gradient(135deg, rgba(238, 42, 123, 0.08) 0%, rgba(98, 40, 215, 0.08) 100%);
  border-color: rgba(238, 42, 123, 0.35);
}

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

.result-value-container {
  min-height: 42px;
  display: flex;
  align-items: center;
}

.result-value {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.result-sub {
  font-size: 0.75rem;
  color: var(--text-dark);
  margin-top: 6px;
}

.results-actions {
  z-index: 2;
  position: relative;
  margin-top: auto;
}

.btn-full {
  width: 100%;
}

.calc-disclaimer {
  font-size: 0.7rem;
  color: var(--text-dark);
  line-height: 1.4;
  margin-top: 18px;
  text-align: center;
}

/* --- testimonials section --- */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.testimonials-marquee-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-marquee-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

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

.testimonials-marquee-track:hover {
  animation-play-state: paused;
}

.testimonials-group {
  display: flex;
  gap: 30px;
  padding-right: 30px;
}

.testimonial-marquee-card {
  flex-shrink: 0;
  width: 380px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-main);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-marquee-card:hover {
  transform: translateY(-5px);
  border-color: rgba(238, 42, 123, 0.25);
}

.testimonial-rating {
  font-size: 1.1rem;
  color: var(--ig-yellow);
  margin-bottom: 15px;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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



/* --- contact & form section --- */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-card);
  border-top: 1px solid var(--border-light);
}

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

.contact-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 35px;
}

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

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.detail-text {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 0.72rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-fast);
}

a.detail-value:hover {
  color: var(--ig-pink);
}

.contact-social-icons {
  display: flex;
  gap: 12px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* --- form elements --- */
.contact-form-wrapper {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-main);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--ig-pink);
  background-color: rgba(255, 255, 255, 0.04);
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%239a97b4' d='M0 0h10L5 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px 6px;
  padding-right: 32px;
}

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

.contact-form textarea {
  resize: vertical;
}

.btn-submit {
  position: relative;
}

.btn-submit .btn-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
  position: absolute;
}

.btn-submit.loading .btn-text {
  visibility: hidden;
}

.btn-submit.loading .btn-spinner {
  display: block;
}

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

.form-success-message {
  display: none;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 184, 148, 0.1);
  border: 1px solid rgba(0, 184, 148, 0.3);
  border-radius: var(--radius-sm);
  color: #00b894;
}

.form-success-message h4 {
  font-family: var(--font-main);
  margin-bottom: 5px;
}

.form-success-message p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- footer --- */
.footer {
  padding: 60px 0;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-dark);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text-main);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-divider {
  height: 1px;
  background-color: var(--border-light);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-dark);
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* --- lightbox modal --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(7, 7, 13, 0.98);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  display: flex;
  opacity: 1;
}

.lightbox-close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10002;
  transition: var(--transition-fast);
}

.lightbox-close-btn:hover {
  color: var(--text-main);
  transform: scale(1.1);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  z-index: 10002;
  transition: var(--transition-fast);
}

.lightbox-nav-btn:hover {
  color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.08);
}

.prev-btn {
  left: 40px;
}

.next-btn {
  right: 40px;
}

.lightbox-content-area {
  max-width: 900px;
  width: 85%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10001;
}

.lightbox-image {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-light);
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-modal.open .lightbox-image {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  margin-top: 24px;
  text-align: center;
  max-width: 600px;
}

.lightbox-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: #fff;
}

.lightbox-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.lightbox-metrics {
  display: inline-flex;
  gap: 15px;
  font-size: 0.82rem;
  background-color: rgba(238, 42, 123, 0.08);
  border: 1px solid rgba(238, 42, 123, 0.2);
  color: var(--ig-pink);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
}

/* --- animations reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
  will-change: transform, opacity;
}

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

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */

/* --- Tablet / Large Mobile Breakpoint (1024px) --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-badge {
    justify-content: center;
  }

  .hero-description {
    margin: 0 auto 36px auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 20px;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-wrapper {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
    gap: 30px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* --- Mobile Breakpoint (768px) --- */
@media (max-width: 768px) {
  .nav-links, .nav-cta-wrapper {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .formats-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .form-row-half {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }

  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  /* Brand Ticker Responsive adjustments */
  .ticker-track {
    gap: 36px;
  }
  .ticker-item {
    font-size: 1.1rem;
  }

  /* Calculator 768px overrides */
  .calc-card {
    padding: 30px 20px;
  }
  .result-value {
    font-size: 1.4rem;
  }

  /* Testimonials Marquee 768px overrides */
  .testimonial-marquee-card {
    width: 300px;
    padding: 24px;
    border-radius: var(--radius-md);
  }
}

/* Small Screens (480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .widget-top {
    left: -20px;
  }
  
  .widget-bottom {
    right: -20px;
  }

  /* Brand Ticker Mobile adjustments */
  .ticker-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .ticker-header {
    margin-right: 0;
  }
  .ticker-divider {
    display: none;
  }
  .ticker-wrap {
    width: 100%;
  }
  .ticker-track {
    gap: 28px;
  }
  .ticker-item {
    font-size: 1rem;
  }

  /* Calculator 480px overrides */
  .calc-checkbox-grid, .calc-radio-group {
    grid-template-columns: 1fr;
  }
  .calc-results .results-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Custom Cursor overrides for mobile/tablet & touch devices */
@media (max-width: 1024px), (pointer: coarse) {
  body, a, button, input, select, textarea, label {
    cursor: auto !important;
  }
  a, button, [role="button"], select, label {
    cursor: pointer !important;
  }
  .cursor, .cursor-follower, .cursor-glow {
    display: none !important;
    pointer-events: none !important;
  }
}

