@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;

  /* Colors */
  --bg-dark: #0f0e13;
  --bg-darker: #08070a;
  --primary: #e21b7f; /* Hayta Pink/Magenta */
  --primary-glow: rgba(226, 27, 127, 0.4);
  --secondary: #fdfdfd; /* White */
  --accent: #2d2d2d; /* Bold Dark Gray */
  
  --text-primary: #f5f5fa;
  --text-secondary: #a5a5b5;
  --text-muted: #5e5e6e;
  
  /* Glassmorphism */
  --glass-bg: rgba(18, 15, 23, 0.65);
  --glass-border: rgba(226, 27, 127, 0.08);
  --glass-border-hover: rgba(226, 27, 127, 0.2);
  --glass-blur: blur(20px);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  font-family: var(--font-sans);
  color: var(--text-primary);
  overflow-x: hidden;
  font-size: 16px;
}

body {
  background: var(--bg-darker);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
  background: rgba(226, 27, 127, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Selection Highlight */
::selection {
  background: var(--primary);
  color: #fff;
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-outline {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--primary-glow);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}

/* Cursor Hover States */
.custom-cursor.cursor-hover {
  width: 16px;
  height: 16px;
  background-color: rgba(226, 27, 127, 0.2);
  border: 1px solid var(--primary);
}

.custom-cursor-outline.cursor-hover {
  width: 54px;
  height: 54px;
  border-color: var(--primary);
  background-color: rgba(226, 27, 127, 0.05);
}

/* --- GLOW BACKGROUND DECOR --- */
.glow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.glow-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
}

.glow-1 {
  top: 5%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  animation: float-slow 15s infinite alternate;
}

.glow-2 {
  top: 45%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(226, 27, 127, 0.8) 0%, transparent 70%);
  animation: float-slow 20s infinite alternate-reverse;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.08); }
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #fff 30%, var(--text-secondary) 70%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-accent {
  background: linear-gradient(135deg, #fff 0%, var(--primary) 60%, #900c4f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Underline Highlight Style */
.highlight-line {
  position: relative;
  display: inline-block;
}

.highlight-line::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(226, 27, 127, 0.3);
  z-index: -1;
  border-radius: 4px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(226, 27, 127, 0.6);
  background: #f12c8f;
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 7, 10, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(0px);
  transition: var(--transition-normal);
}

header.scrolled {
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
}

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

header.scrolled .nav-container {
  padding: 16px 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-smile {
  color: var(--primary);
  font-size: 1.8rem;
  line-height: 0;
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-normal);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: var(--transition-normal);
}

/* Hamburger active states */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 24px 80px;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(226, 27, 127, 0.08);
  border: 1.5px solid rgba(226, 27, 127, 0.15);
  border-radius: 100px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}

.hero-tag-smile {
  font-size: 1.2rem;
  line-height: 0;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 44px;
  max-width: 620px;
  line-height: 1.7;
}

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

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

.hero-circle-logo {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  backdrop-filter: var(--glass-blur);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  transition: var(--transition-normal);
  position: relative;
}

.hero-circle-logo:hover {
  transform: scale(1.03);
  border-color: var(--glass-border-hover);
  box-shadow: 0 40px 80px rgba(226, 27, 127, 0.12);
}

.hero-logo-icon {
  font-size: 6.5rem;
  line-height: 0;
  color: var(--primary);
}

.hero-logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}

/* --- SECTION STYLING --- */
section {
  padding: 120px 24px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.section-subtitle {
  color: var(--primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* --- MANIFESTO SECTION --- */
.manifesto {
  background: linear-gradient(180deg, rgba(8,7,10,0) 0%, rgba(226,27,127,0.02) 50%, rgba(8,7,10,0) 100%);
}

.manifesto-box {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  padding: 60px 48px;
  backdrop-filter: var(--glass-blur);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.manifesto-side-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.manifesto-smile {
  font-size: 4rem;
  line-height: 0;
  color: var(--primary);
}

.manifesto-tagline {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.manifesto-lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
}

.manifesto-body {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.manifesto-body strong {
  color: #fff;
}

.manifesto-punchline {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px;
  padding: 44px;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(226, 27, 127, 0.08);
  border: 1.5px solid rgba(226, 27, 127, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 1.6rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: #fff;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --- PROCESS SECTION --- */
.process {
  background: linear-gradient(180deg, rgba(8,7,10,0) 0%, rgba(226,27,127,0.01) 50%, rgba(8,7,10,0) 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.process-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: var(--glass-blur);
  position: relative;
  transition: var(--transition-normal);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(226, 27, 127, 0.12);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
  transition: var(--transition-normal);
}

.process-card:hover .process-step-num {
  color: var(--primary);
  transform: scale(1.1);
}

.process-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.process-footer {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
}

.process-footer span {
  color: var(--primary);
  font-weight: 700;
}

/* --- PORTFOLIO SECTION --- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 15px var(--primary-glow);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-item {
  cursor: pointer;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
  transition: var(--transition-normal);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.portfolio-image {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  overflow: hidden;
  background-color: rgba(226, 27, 127, 0.05);
}

.portfolio-image img,
.portfolio-image .portfolio-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  pointer-events: none; /* Prevent video controls from catching clicks */
}

.portfolio-item:hover .portfolio-image img,
.portfolio-item:hover .portfolio-image .portfolio-media {
  transform: scale(1.06);
}

/* Play Button for Video Items */
.play-btn {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  background: rgba(226, 27, 127, 0.9);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  padding-left: 4px;
  box-shadow: 0 0 20px var(--primary-glow);
  transition: var(--transition-fast);
  z-index: 3;
}
.portfolio-item:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--primary);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(8, 7, 10, 0.95);
  backdrop-filter: blur(15px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.video-modal.active .video-modal-content {
  transform: scale(1);
}
.video-modal-content.reels-modal {
  max-width: 420px;
  aspect-ratio: 9/16;
}
.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 10000;
}
.video-modal-close:hover {
  color: var(--primary);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(8, 7, 10, 0.95) 0%, rgba(8, 7, 10, 0.3) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: var(--transition-normal);
}

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

.portfolio-content {
  padding: 24px;
}

.portfolio-cat {
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.portfolio-item h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #fff;
}

.portfolio-item p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- STATS SECTION --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: var(--glass-blur);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num::after {
  content: '+';
  color: #fff;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* --- TESTIMONIALS --- */
.testimonials {
  overflow: hidden;
}

.slider-outer {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.slider-container {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.slide {
  min-width: 100%;
  padding: 0 15px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  padding: 50px 40px;
  backdrop-filter: var(--glass-blur);
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  margin-bottom: 32px;
  color: var(--text-primary);
  line-height: 1.7;
}

.testimonial-user {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

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

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-border-hover);
  cursor: pointer;
  transition: var(--transition-normal);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

/* --- CONTACT SECTION --- */
.contact-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  background: var(--glass-bg);
  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: var(--glass-blur);
}

.contact-info {
  background: rgba(226, 27, 127, 0.03);
  border-right: 1.5px solid var(--glass-border);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-details {
  display: grid;
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(226, 27, 127, 0.08);
  border: 1.5px solid rgba(226, 27, 127, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-form-side {
  padding: 48px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-control {
  background: rgba(255,255,255,0.02);
  border: 1.5px solid var(--glass-border);
  border-radius: 10px;
  padding: 14px 18px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(226, 27, 127, 0.15);
  background: rgba(255,255,255,0.04);
}

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

/* Feedback States */
.form-status {
  margin-top: 16px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(0, 200, 100, 0.15);
  border: 1px solid rgba(0, 200, 100, 0.3);
  color: #50fa7b;
}

.form-status.error {
  display: block;
  background: rgba(255, 85, 85, 0.15);
  border: 1px solid rgba(255, 85, 85, 0.3);
  color: #ff5555;
}

/* --- FOOTER --- */
footer {
  background: var(--bg-darker);
  border-top: 1.5px solid var(--glass-border);
  padding: 80px 24px 30px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--primary-glow);
}

.footer-links h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

/* --- ANIMATION REVEAL SYSTEM --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-circle-logo {
    display: none;
  }
  .manifesto-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  .manifesto-side-badge {
    align-items: center;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: none;
    border-bottom: 1.5px solid var(--glass-border);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(8, 7, 10, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1.5px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-actions {
    display: none;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  
  .hero {
    padding-top: 130px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
}
