/* ============================================
   DHANANJAY KASAR — DESIGN SYSTEM
   Premium Digital Marketing Personal Brand
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --color-black: #0a0a0a;
  --color-dark: #111111;
  --color-dark-2: #1a1a1a;
  --color-dark-3: #222222;
  --color-gray-900: #2a2a2a;
  --color-gray-800: #333333;
  --color-gray-700: #444444;
  --color-gray-600: #666666;
  --color-gray-500: #888888;
  --color-gray-400: #aaaaaa;
  --color-gray-300: #cccccc;
  --color-gray-200: #e0e0e0;
  --color-gray-100: #f0f0f0;
  --color-white: #f8f8f8;
  --color-pure-white: #ffffff;
  --color-accent: #2563eb;
  --color-accent-light: #3b82f6;
  --color-accent-dark: #1d4ed8;
  --color-accent-glow: rgba(37, 99, 235, 0.15);
  --color-accent-glow-strong: rgba(37, 99, 235, 0.3);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-display: clamp(2.8rem, 5vw, 4.5rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: 1.05rem;
  --fs-body-lg: 1.2rem;
  --fs-small: 0.9rem;
  --fs-xs: 0.8rem;
  --line-height: 1.7;
  --line-height-heading: 1.2;

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

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;

  /* Effects */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 30px var(--color-accent-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--line-height);
  color: var(--color-gray-300);
  background-color: var(--color-black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-pure-white);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-heading);
  color: var(--color-pure-white);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-md); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-sm); }
h4 { font-size: var(--fs-h4); margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
}

.text-accent {
  color: var(--color-accent-light);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-pure-white) 0%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

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

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--dark {
  background-color: var(--color-dark);
}

.section--darker {
  background-color: var(--color-dark-2);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent-light);
  margin-bottom: var(--space-md);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-400);
  max-width: 700px;
  margin-bottom: var(--space-xl);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

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

@media (max-width: 1024px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .section { padding: var(--space-2xl) 0; }
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-pure-white);
  letter-spacing: -0.5px;
}

.header__logo span {
  color: var(--color-accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav__link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-pure-white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-pure-white);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-dark);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transition: var(--transition-slow);
    border-left: 1px solid rgba(255,255,255,0.06);
  }

  .nav.active {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-pure-white);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
  background: var(--color-accent-light);
  color: var(--color-pure-white);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-pure-white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  background: var(--color-accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--color-accent-light);
  padding: 12px 0;
}

.btn--ghost:hover {
  color: var(--color-pure-white);
}

.btn--ghost .arrow {
  transition: var(--transition);
}

.btn--ghost:hover .arrow {
  transform: translateX(4px);
}

/* --- Cards --- */
.card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-glow);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-accent-light);
}

.card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
}

.card__text {
  color: var(--color-gray-400);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-accent-glow-strong) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-accent-glow);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-light);
  margin-bottom: var(--space-lg);
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  letter-spacing: -1px;
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-400);
  max-width: 600px;
  margin-bottom: var(--space-xl);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-pure-white);
  display: block;
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .hero__stats {
    gap: var(--space-lg);
    flex-wrap: wrap;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: calc(80px + var(--space-3xl)) 0 var(--space-2xl);
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__breadcrumb {
  font-size: var(--fs-small);
  color: var(--color-gray-500);
  margin-bottom: var(--space-md);
}

.page-hero__breadcrumb a {
  color: var(--color-gray-500);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-accent-light);
}

.page-hero__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-400);
  max-width: 600px;
}

/* --- FAQ Accordion --- */
.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--color-pure-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq__question:hover {
  color: var(--color-accent-light);
}

.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition);
  color: var(--color-accent-light);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq__answer-inner {
  padding: 0 0 var(--space-md) 0;
  color: var(--color-gray-400);
  line-height: 1.8;
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.blog-card__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-dark-3), var(--color-accent-glow));
  position: relative;
  overflow: hidden;
}

.blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, var(--color-dark-2));
}

.blog-card__category {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 1;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-light);
  background: rgba(37, 99, 235, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

.blog-card__body {
  padding: var(--space-lg);
}

.blog-card__date {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card__title a {
  color: var(--color-pure-white);
}

.blog-card__title a:hover {
  color: var(--color-accent-light);
}

.blog-card__excerpt {
  color: var(--color-gray-400);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* --- Case Study Cards --- */
.case-card {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-glow);
}

.case-card__header {
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--color-dark-3), rgba(37, 99, 235, 0.05));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.case-card__industry {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
}

.case-card__title {
  font-size: var(--fs-h4);
  margin-bottom: 0;
}

.case-card__body {
  padding: var(--space-lg);
}

.case-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.case-card__metric {
  text-align: center;
  padding: var(--space-sm);
  background: var(--color-dark-3);
  border-radius: var(--radius-sm);
}

.case-card__metric-value {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--color-accent-light);
  display: block;
}

.case-card__metric-label {
  font-size: var(--fs-xs);
  color: var(--color-gray-500);
  margin-top: 2px;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-section * {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.cta-section .btn--primary {
  background: var(--color-pure-white);
  color: var(--color-accent-dark);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-section .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  background: var(--color-pure-white);
  color: var(--color-accent-dark);
}

/* --- Contact Form --- */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-gray-300);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--color-pure-white);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

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

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand-desc {
  color: var(--color-gray-500);
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-top: var(--space-md);
}

.footer__heading {
  font-size: var(--fs-small);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
  color: var(--color-pure-white);
}

.footer__links li {
  margin-bottom: var(--space-xs);
}

.footer__links a {
  color: var(--color-gray-500);
  font-size: var(--fs-small);
}

.footer__links a:hover {
  color: var(--color-accent-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copyright {
  font-size: var(--fs-xs);
  color: var(--color-gray-600);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-gray-500);
  font-size: 1rem;
  transition: var(--transition);
}

.footer__social a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-light);
  background: var(--color-accent-glow);
}

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

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Content formatting for blog/about */
.content-body h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.content-body h3 {
  margin-top: var(--space-lg);
}

.content-body p {
  color: var(--color-gray-300);
  line-height: 1.9;
}

.content-body ul,
.content-body ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
}

.content-body ul {
  list-style: disc;
}

.content-body ol {
  list-style: decimal;
}

.content-body li {
  margin-bottom: var(--space-xs);
  color: var(--color-gray-300);
  line-height: 1.8;
}

.content-body strong {
  color: var(--color-pure-white);
}

.content-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background: var(--color-accent-glow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--color-gray-300);
}

/* --- Map placeholder --- */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-500);
  font-size: var(--fs-small);
}

/* --- Service Detail (services page) --- */
.service-detail {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail__number {
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 800;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.service-detail__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .service-detail__grid {
    grid-template-columns: 1fr;
  }
}

.service-detail__benefits {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
}

.service-detail__benefits h4 {
  margin-bottom: var(--space-md);
}

.service-detail__benefits li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: var(--color-gray-300);
}

.service-detail__benefits li::before {
  content: '✓';
  color: var(--color-accent-light);
  font-weight: 700;
  flex-shrink: 0;
}

/* Statement block */
.statement-block {
  background: var(--color-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-xl);
  margin: var(--space-lg) 0;
}

.statement-block p {
  font-size: var(--fs-body-lg);
  color: var(--color-gray-300);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 0;
}

/* --- Timeline (About page) --- */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

.timeline__item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 5px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-dark);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--color-accent-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}
