/* ============================================
   SUNRISE Design #051 — ACN Agency
   Premium Sunrise Theme
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --golden-orange: #ff8c00;
  --warm-yellow: #ffd700;
  --deep-purple: #2d1b4e;
  --soft-pink: #ffb6c1;
  --soft-pink-light: #ffdde5;
  --deep-purple-dark: #1a0f2e;
  --white: #ffffff;
  --off-white: #fff9f0;
  --text-dark: #1a0f2e;
  --text-muted: #6b5a8a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, sans-serif;

  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--deep-purple-dark); }
::-webkit-scrollbar-thumb { background: var(--golden-orange); border-radius: 4px; }

/* ============================================
   ANIMATED BACKGROUND — Sky & Atmosphere
   ============================================ */

.sunrise-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
}

.sky-gradient {
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(180deg,
    var(--deep-purple) 0%,
    #4a1f6e 20%,
    #7b2d8e 35%,
    #c94b7c 50%,
    #e8785a 65%,
    var(--golden-orange) 80%,
    var(--warm-yellow) 95%,
    var(--warm-yellow) 100%
  );
  animation: skyShift 20s ease-in-out infinite alternate;
}

@keyframes skyShift {
  0% { filter: brightness(1) saturate(1); }
  50% { filter: brightness(1.15) saturate(1.1); }
  100% { filter: brightness(0.95) saturate(0.95); }
}

/* --- Animated Sun --- */
.sun-container {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 280px;
}

.sun {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle,
    var(--warm-yellow) 0%,
    var(--golden-orange) 50%,
    rgba(255,140,0,0.3) 70%,
    transparent 100%
  );
  box-shadow:
    0 0 60px rgba(255, 215, 0, 0.8),
    0 0 120px rgba(255, 140, 0, 0.5),
    0 0 200px rgba(255, 140, 0, 0.3);
  animation: sunRise 6s ease-out forwards, sunPulse 4s ease-in-out infinite 6s;
}

@keyframes sunRise {
  0% { transform: translateY(100px) scale(0.7); opacity: 0; }
  60% { transform: translateY(-20px) scale(1.05); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes sunPulse {
  0%, 100% {
    box-shadow:
      0 0 60px rgba(255, 215, 0, 0.8),
      0 0 120px rgba(255, 140, 0, 0.5),
      0 0 200px rgba(255, 140, 0, 0.3);
  }
  50% {
    box-shadow:
      0 0 80px rgba(255, 215, 0, 1),
      0 0 160px rgba(255, 140, 0, 0.7),
      0 0 260px rgba(255, 140, 0, 0.4);
  }
}

/* --- Sun Rays --- */
.sun-rays {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  animation: raysSpin 60s linear infinite;
}

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

.ray {
  position: absolute;
  top: 50%; left: 50%;
  width: 4px;
  height: 160px;
  background: linear-gradient(to top, transparent, rgba(255, 215, 0, 0.6), transparent);
  transform-origin: center bottom;
  border-radius: 2px;
  animation: rayPulse 3s ease-in-out infinite;
}

.ray:nth-child(1)  { transform: rotate(0deg) translateY(-50%); animation-delay: 0s; }
.ray:nth-child(2)  { transform: rotate(30deg) translateY(-50%); animation-delay: 0.25s; }
.ray:nth-child(3)  { transform: rotate(60deg) translateY(-50%); animation-delay: 0.5s; }
.ray:nth-child(4)  { transform: rotate(90deg) translateY(-50%); animation-delay: 0.75s; }
.ray:nth-child(5)  { transform: rotate(120deg) translateY(-50%); animation-delay: 1s; }
.ray:nth-child(6)  { transform: rotate(150deg) translateY(-50%); animation-delay: 1.25s; }
.ray:nth-child(7)  { transform: rotate(180deg) translateY(-50%); animation-delay: 1.5s; }
.ray:nth-child(8)  { transform: rotate(210deg) translateY(-50%); animation-delay: 1.75s; }
.ray:nth-child(9)  { transform: rotate(240deg) translateY(-50%); animation-delay: 2s; }
.ray:nth-child(10) { transform: rotate(270deg) translateY(-50%); animation-delay: 2.25s; }
.ray:nth-child(11) { transform: rotate(300deg) translateY(-50%); animation-delay: 2.5s; }
.ray:nth-child(12) { transform: rotate(330deg) translateY(-50%); animation-delay: 2.75s; }

@keyframes rayPulse {
  0%, 100% { opacity: 0.4; height: 140px; }
  50% { opacity: 0.9; height: 180px; }
}

/* --- Floating Clouds --- */
.clouds-container {
  position: absolute;
  width: 100%; height: 60%;
  top: 0;
  overflow: hidden;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(20px);
  animation: cloudFloat linear infinite;
}

.cloud::before, .cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud-1 { width: 200px; height: 60px; top: 15%; left: -200px; animation-duration: 45s; }
.cloud-1::before { width: 100px; height: 80px; top: -40px; left: 30px; }
.cloud-1::after  { width: 120px; height: 70px; top: -30px; left: 80px; }

.cloud-2 { width: 250px; height: 70px; top: 25%; left: -250px; animation-duration: 60s; animation-delay: 10s; }
.cloud-2::before { width: 130px; height: 90px; top: -50px; left: 40px; }
.cloud-2::after  { width: 150px; height: 80px; top: -35px; left: 100px; }

.cloud-3 { width: 180px; height: 50px; top: 35%; left: -180px; animation-duration: 50s; animation-delay: 20s; }
.cloud-3::before { width: 90px; height: 70px; top: -35px; left: 25px; }
.cloud-3::after  { width: 110px; height: 60px; top: -25px; left: 70px; }

@keyframes cloudFloat {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 400px)); }
}

/* --- Golden Particles --- */
.particles-container {
  position: absolute;
  width: 100%; height: 100%;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--warm-yellow);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.3; }
  100% { transform: translateY(-100vh) translateX(50px) scale(0); opacity: 0; }
}

/* --- Light Bleed Effect --- */
.light-bleed {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(
    ellipse 80% 60% at 50% 80%,
    rgba(255, 215, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.navbar.scrolled {
  background: rgba(45, 27, 78, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px; height: 44px;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.brand-name span { color: var(--warm-yellow); }

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all var(--transition-base);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 215, 0, 0.2);
}

.nav-links a.active {
  color: var(--deep-purple-dark);
  background: var(--warm-yellow);
}

.nav-cta {
  background: linear-gradient(135deg, var(--golden-orange), var(--warm-yellow)) !important;
  color: var(--deep-purple-dark) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-base);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(26, 15, 46, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

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

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  padding: 10px 30px;
  transition: color var(--transition-base);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 30px;
  color: var(--warm-yellow);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--warm-yellow), var(--golden-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
  animation: fadeInUp 1s ease 0.9s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1.1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--golden-orange), var(--warm-yellow));
  color: var(--deep-purple-dark);
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 140, 0, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
  transform: translateY(-3px);
}

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

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 100px 40px;
  position: relative;
}

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

.section-darker { background: rgba(26, 15, 46, 0.95); }

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

.section-label {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(255, 140, 0, 0.15);
  border: 1px solid rgba(255, 140, 0, 0.25);
  border-radius: 20px;
  color: var(--golden-orange);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.section-title .accent { color: var(--warm-yellow); }

.section-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  line-height: 1.7;
}

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

/* ============================================
   CARDS
   ============================================ */

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 215, 0, 0.1));
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   GRID LAYOUTS
   ============================================ */

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

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--deep-purple-dark);
  padding: 60px 40px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: color var(--transition-base);
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--warm-yellow); }

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 300;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  transition: color var(--transition-base);
}

.footer-bottom-links a:hover { color: var(--warm-yellow); }

/* ============================================
   FORMS
   ============================================ */

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-control::placeholder { color: rgba(255, 255, 255, 0.3); }

.form-control:focus {
  border-color: var(--golden-orange);
  background: rgba(255, 140, 0, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.15);
}

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

/* ============================================
   GALLERY
   ============================================ */

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 46, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.gallery-overlay h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 4px;
}

.gallery-item-large { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--golden-orange);
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--golden-orange), var(--warm-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-purple-dark);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

/* ============================================
   TEAM
   ============================================ */

.team-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  transition: all var(--transition-base);
}

.team-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-5px);
}

.team-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--golden-orange), var(--warm-yellow));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-purple-dark);
  box-shadow: 0 8px 30px rgba(255, 140, 0, 0.3);
}

.team-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }

.team-card .role { color: var(--golden-orange); font-size: 0.85rem; font-weight: 500; margin-bottom: 14px; }

.team-card p { color: rgba(255, 255, 255, 0.5); font-size: 0.88rem; line-height: 1.6; font-weight: 300; }

.team-social { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }

.team-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-base);
  font-size: 0.85rem;
}

.team-social a:hover { background: var(--golden-orange); border-color: var(--golden-orange); color: var(--deep-purple-dark); }

/* ============================================
   STATS
   ============================================ */

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

.stat-item { text-align: center; padding: 30px 20px; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--warm-yellow), var(--golden-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   DOCS PAGE
   ============================================ */

.docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.docs-sidebar h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.docs-sidebar ul li { margin-bottom: 4px; }

.docs-sidebar ul li a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.docs-sidebar ul li a:hover,
.docs-sidebar ul li a.active {
  color: var(--warm-yellow);
  background: rgba(255, 215, 0, 0.08);
}

.docs-content { max-width: 800px; }

.docs-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
}

.docs-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.docs-card p { color: rgba(255, 255, 255, 0.65); font-size: 0.95rem; line-height: 1.8; font-weight: 300; }

.docs-card code {
  background: rgba(255, 140, 0, 0.15);
  color: var(--warm-yellow);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* ============================================
   PAGE TRANSITIONS
   ============================================ */

.page-wrapper { animation: pageIn 0.5s ease; }

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

/* ============================================
   RESPONSIVE
   ============================================ */

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

@media (max-width: 768px) {
  .section { padding: 70px 20px; }
  .hero { padding: 100px 20px 60px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; grid-row: span 1; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
}
