/* ═══════════════════════════════════════════════
   MADHOUSE RUGS — Premium Custom Rug Brand CSS
   Aesthetic: Dark Streetwear × Creative Studio
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black: #09080f;
  /* near-black with purple undertone */
  --dark: #100e1a;
  /* deep purple-black for section-dark */
  --card-bg: #16132a;
  /* dark purple card background */
  --border: #2e2850;
  /* purple-tinted border */
  --white: #f5f3ff;
  /* soft white with purple hint */
  --gray: #8f8aaa;
  /* muted purple-gray */
  --accent: #f0a500;
  /* logo gold / primary accent */
  --accent2: #7b35c1;
  /* logo purple / secondary accent */
  --accent3: #c47fd4;
  /* light purple for urgency tags */
  --text: #ccc8e8;
  /* body text, purple-tinted light */

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 14px 16px;
  transition: border-color var(--transition);
  outline: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
}

select option {
  background: var(--dark);
}

textarea {
  resize: vertical;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark);
}

/* ── Typography ── */
h1,
h2,
h3 {
  line-height: 1.1;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.02em;
}

h2 em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
}

h3 {
  font-size: 1.15rem;
  font-weight: 500;
}

.accent-text {
  color: var(--accent);
}

/* ── Section Headers ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header p {
  color: var(--gray);
  margin-top: 12px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.light h2 {
  color: var(--white);
}

.section-header.light p {
  color: var(--gray);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-xl {
  padding: 20px 48px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════ NAV ═══════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.logo-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(240, 165, 0, 0.4);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 64px;
  width: 64px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 2px solid rgba(240, 165, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  gap: 20px;
}

.mobile-menu a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--white);
}

.mob-cta {
  color: var(--accent) !important;
}

.mobile-menu.open {
  display: flex;
}

/* ═══════════════════════ HERO ═══════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  animation: none;
}

.slide.active {
  opacity: 1;
  animation: kenBurns 8s ease forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(9, 8, 15, 0.88) 0%,
      rgba(20, 10, 40, 0.72) 50%,
      rgba(9, 8, 15, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 800px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.3s forwards;
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.line {
  display: block;
  overflow: hidden;
}

.reveal-line {
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-play-state: paused;
}

.reveal-line.animating {
  animation-play-state: running;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.5s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
  animation-play-state: paused;
}

.reveal-fade.animating {
  animation-play-state: running;
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollProgress 2s ease infinite;
}

@keyframes scrollProgress {
  to {
    left: 100%;
  }
}

.slide-dots {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.dot {
  width: 24px;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 40px;
}

/* ═══════════════════════ TICKER ═══════════════════════ */
.ticker-wrap {
  background: var(--accent2);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(240, 165, 0, 0.2);
  border-bottom: 1px solid rgba(240, 165, 0, 0.2);
}

.ticker {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 24px;
}

.ticker .sep {
  color: rgba(255, 255, 255, 0.5);
  padding: 0 4px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ═══════════════════════ GALLERY ═══════════════════════ */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all var(--transition);
}

.filter-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.hidden {
  display: none;
}

.gallery-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.gallery-overlay h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-mono);
}

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ═══════════════════════ PROCESS ═══════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  padding: 40px 32px;
  position: relative;
  border-left: 1px solid var(--border);
  transition: background var(--transition);
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.process-step.last .step-line {
  display: none;
}

.step-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -0.02em;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 500;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.step-line {
  position: absolute;
  top: 72px;
  right: -1px;
  width: 1px;
  height: 40px;
  background: var(--accent);
  display: none;
}

/* ═══════════════════════ WHY US ═══════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.why-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1a1000 0%, var(--card-bg) 60%);
}

.why-card.featured .why-icon {
  color: var(--accent);
}

.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--white);
}

.why-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════ INSTAGRAM ═══════════════════════ */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}

.insta-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--radius);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(123, 53, 193, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.5rem;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

.insta-cta {
  text-align: center;
}

/* ═══════════════════════ BIG CTA ═══════════════════════ */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(123, 53, 193, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent3);
  margin-bottom: 24px;
  display: inline-block;
  border: 1px solid var(--accent3);
  padding: 4px 16px;
  border-radius: 2px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  margin-bottom: 24px;
  line-height: 1;
}

.cta-sub {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.8;
}

.cta-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cta-step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--gray);
  text-transform: uppercase;
}

.cta-step span {
  display: block;
  color: var(--accent);
  font-size: 10px;
  margin-bottom: 4px;
}

.cta-divider {
  color: var(--border);
  font-size: 1.2rem;
}

/* ═══════════════════════ TESTIMONIALS ═══════════════════════ */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  flex-shrink: 0;
}

.stars {
  color: var(--accent3);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: 14px;
  color: var(--white);
}

.reviewer span {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-mono);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.t-prev,
.t-next {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: monospace;
}

.t-prev:hover,
.t-next:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* ═══════════════════════ CONTACT ═══════════════════════ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 20px;
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--gray);
}

.contact-detail span {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.upload-group .file-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
  position: relative;
}

.file-upload:hover {
  border-color: var(--accent);
}

.file-upload input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 0;
}

.upload-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.file-upload span:not(.upload-icon) {
  font-size: 14px;
  color: var(--gray);
}

.file-upload u {
  color: var(--accent);
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 32px;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════ MODAL ═══════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px;
  width: 100%;
  max-width: 560px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.modal-header {
  margin-bottom: 32px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin: 12px 0 8px;
  color: var(--white);
}

.modal-header p {
  font-size: 14px;
  color: var(--gray);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ═══════════════════════ TOAST ═══════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 300;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 16px 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════ SCROLL ANIMATIONS ═══════════════════════ */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.delay-100 {
  transition-delay: 0.1s;
}

.fade-in-up.delay-200 {
  transition-delay: 0.2s;
}

.fade-in-up.delay-300 {
  transition-delay: 0.3s;
}

.fade-in-up.delay-400 {
  transition-delay: 0.4s;
}

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 0 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 32px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .contact-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-steps {
    flex-direction: column;
    gap: 8px;
  }

  .cta-divider {
    transform: rotate(90deg);
  }

  .testimonial-card {
    min-width: 85%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .slide-dots {
    right: 24px;
    bottom: 24px;
  }

  .modal {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .btn-primary {
    justify-content: center;
  }
}