/* ============================================
   IRON BEAST GYM — main.css
   Aesthetic: Industrial Dark / High-Energy
   Fonts: Bebas Neue + Cairo
   Colors: Black, Deep Red, White
============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --red: #e10000;
  --red-bright: #ff2222;
  --red-dark: #a00000;
  --black: #080808;
  --black-2: #111111;
  --black-3: #1a1a1a;
  --black-4: #222222;
  --gray-dark: #2a2a2a;
  --gray: #444444;
  --gray-light: #888888;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-60: rgba(255,255,255,0.6);
  --white-20: rgba(255,255,255,0.12);
  --white-10: rgba(255,255,255,0.06);
  --red-glow: rgba(225,0,0,0.25);
  --font-display: 'Bebas Neue', 'Oswald', sans-serif;
  --font-body: 'Cairo', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
  --radius: 8px;
  --radius-lg: 16px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; outline: none; background: none; }
input, select, textarea { font-family: var(--font-body); }

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

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: background 0.2s;
}
.cursor-follower {
  position: fixed;
  width: 32px; height: 32px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.cursor-follower.hovered {
  width: 50px; height: 50px;
  opacity: 0.3;
  background: var(--red-glow);
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn-primary svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover svg { transform: translateX(-4px); }
.btn-primary:hover { box-shadow: 0 8px 30px var(--red-glow); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid var(--white-20);
  color: var(--white-90);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: none;
}
.btn-ghost svg { width: 20px; height: 20px; }
.btn-ghost:hover {
  border-color: var(--white-60);
  background: var(--white-10);
}

/* ===== COMMON SECTION ELEMENTS ===== */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
}
.section-title .accent { color: var(--red); }
.section-desc {
  color: var(--white-60);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  padding: 0.8rem 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}
.logo-iron { color: var(--white); }
.logo-beast { color: var(--red); }
.logo-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gray-light);
  margin-right: 6px;
  align-self: center;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-right: auto;
}
.nav-links li a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-60);
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links li a:hover {
  color: var(--white);
  background: var(--white-10);
}
.nav-cta {
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--red);
  color: var(--white);
  padding: 9px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--red-bright); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  margin-right: auto;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(225,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 20% 50%, rgba(225,0,0,0.08) 0%, transparent 70%);
  z-index: 0;
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-60);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  padding: 6px 16px;
  border-radius: 100px;
  animation: fadeSlideDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225,0,0,0.7); }
  50% { box-shadow: 0 0 0 6px rgba(225,0,0,0); }
}
.hero-title {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.title-line {
  display: block;
  margin-bottom: 30px;
  animation: fadeSlideUp 0.8s ease both;
}
.title-line.line-1 { animation-delay: 0.1s; }
.title-line.line-2 { animation-delay: 0.2s; }
.title-line.line-3 { animation-delay: 0.3s; }
.accent-text {
  color: var(--red);
  -webkit-text-stroke: 2px var(--red);
  text-shadow: 0 0 40px rgba(225,0,0,0.5);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
  animation: fadeSlideUp 0.8s 0.4s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.8s 0.5s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeSlideUp 0.8s 0.6s ease both;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-size: 1.5rem;
  color: var(--red);
  font-weight: 900;
  display: inline;
  vertical-align: top;
  margin-top: 2px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--white-60);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--white-20);
}
.hero-image-block {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  z-index: 1;
  animation: fadeSlideLeft 1s 0.3s ease both;
  pointer-events: none;
}
.hero-image-wrapper {
  position: relative;
  padding: 2rem;
}
.hero-img-placeholder {
  width: 100%;
  padding-bottom: 120%;
  background: linear-gradient(135deg, var(--black-3), var(--black-4));
  border-radius: var(--radius-lg);
  border: 1px solid var(--white-10);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-overlay-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  color: rgba(225,0,0,0.08);
  letter-spacing: 0.1em;
  user-select: none;
}
.dumbbell-icon {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
}
.dumbbell-icon svg { width: 100%; height: auto; }
.gym-shapes {
  position: absolute;
  inset: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 200px; height: 200px;
  background: var(--red);
  top: -50px; right: -50px;
}
.shape-2 {
  width: 120px; height: 120px;
  background: var(--red);
  bottom: 60px; left: -30px;
}
.shape-3 {
  width: 80px; height: 80px;
  background: var(--white);
  top: 40%; right: 20%;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.5;
  animation: fadeIn 1s 1s both;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-60);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white-60), transparent);
  animation: scrollDown 1.5s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== MARQUEE ===== */
.marquee-section {
  background: var(--red);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track { width: 100%; }
.marquee-inner {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
}
.marquee-inner .dot {
  color: rgba(255,255,255,0.5);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-card { position: relative; }
.about-img-inner { position: relative; }
.about-accent-box {
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: 0.4;
}
.about-img-placeholder {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.about-img-placeholder svg { width: 60%; opacity: 0.7; }
.about-year-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.about-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--black-4);
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 3;
  animation: floatAnim 3s ease-in-out infinite;
}
@keyframes floatAnim {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon { font-size: 1.8rem; }
.float-text { display: flex; flex-direction: column; }
.float-text strong { font-size: 1rem; color: var(--white); }
.float-text span { font-size: 0.75rem; color: var(--white-60); }
.about-content {}
.about-text {
  color: var(--white-60);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-90);
}
.feature-check {
  width: 22px; height: 22px;
  background: rgba(225,0,0,0.15);
  border: 1px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--red);
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(225,0,0,0.06) 0%, transparent 70%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.service-card {
  background: var(--black-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: var(--transition);
  animation: fadeSlideUp 0.6s ease both;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,0,0,0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: rgba(225,0,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}
.service-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}
.service-arrow {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 1.2rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PLANS ===== */
.plans {
  padding: 100px 0;
  background: var(--black-2);
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}
.plan-card.featured {
  background: var(--red-dark);
  border-color: var(--red);
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(225,0,0,0.3);
}
.plan-card.elite {
  background: linear-gradient(135deg, var(--black-4), var(--black-3));
  border-color: var(--gray);
}
.plan-card:not(.featured):hover {
  border-color: rgba(225,0,0,0.3);
  transform: translateY(-4px);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red-bright);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 1.5rem; }
.plan-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--white-60);
  margin-bottom: 0.5rem;
}
.plan-card.featured .plan-name { color: rgba(255,255,255,0.8); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}
.plan-card.featured .price-currency { color: var(--white); }
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}
.price-period {
  font-size: 0.85rem;
  color: var(--white-60);
}
.plan-features {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-90);
}
.plan-features .check {
  width: 20px; height: 20px;
  background: rgba(225,0,0,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--red);
  flex-shrink: 0;
}
.plan-card.featured .check { background: rgba(255,255,255,0.2); color: var(--white); }
.plan-features .check.muted {
  background: var(--white-10);
  color: var(--gray);
}
.plan-features li:has(.check.muted) { opacity: 0.4; }
.plan-btn {
  display: block;
  text-align: center;
  padding: 13px 24px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.plan-card.featured .plan-btn {
  background: var(--white);
  color: var(--red-dark);
}
.plan-card.elite .plan-btn {
  background: transparent;
  border: 1.5px solid var(--white-20);
}
.plan-btn:hover { filter: brightness(1.15); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(225,0,0,0.04) 0%, transparent 70%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: var(--black-2);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card.highlight {
  background: var(--red-dark);
  border-color: var(--red);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(225,0,0,0.3);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--white-90);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card.highlight .author-avatar { background: rgba(255,255,255,0.2); }
.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: var(--white-60); }

/* ===== GALLERY ===== */
.gallery {
  padding: 80px 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item.g-tall { grid-row: span 2; }
.gallery-item.g-wide { grid-column: span 2; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s ease;
  cursor: none;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.03); }
.gallery-placeholder span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  position: relative;
  z-index: 2;
}
.gallery-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
}
.gp-1 { background: linear-gradient(135deg, #1a0000, #330000, #1a0a00); }
.gp-2 { background: linear-gradient(135deg, #0a0010, #1a001a, #0a0a1a); }
.gp-3 { background: linear-gradient(135deg, #001a00, #0a1a0a, #001000); }
.gp-4 { background: linear-gradient(135deg, #1a0a00, #2a1000, #1a0000); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--black-2);
  border-top: 1px solid var(--white-10);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc {
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.detail-icon {
  font-size: 1.2rem;
  width: 40px; height: 40px;
  background: var(--white-10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-detail-item strong {
  font-size: 0.85rem;
  color: var(--white);
  font-weight: 700;
}
.contact-detail-item span {
  font-size: 0.9rem;
  color: var(--white-60);
}
.contact-form-wrapper {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white-90);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-2);
  border: 1.5px solid var(--white-10);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: var(--transition);
  width: 100%;
  text-align: right;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-light);
}
.form-group select option { background: var(--black-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,0,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-error {
  font-size: 0.8rem;
  color: #ff6b6b;
  min-height: 1em;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  font-size: 1rem;
  border: none;
}
.form-success {
  display: none;
  text-align: center;
  padding: 12px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius);
  color: #4ade80;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-10);
  padding: 60px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--white-10);
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-top: 0.8rem;
  max-width: 280px;
}
.footer-links-col h4,
.footer-social-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 1rem;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-col ul li a {
  font-size: 0.9rem;
  color: var(--white-60);
  transition: var(--transition);
}
.footer-links-col ul li a:hover { color: var(--red); }
.social-links {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  background: var(--white-10);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--white-60);
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translate(40px, -50%); }
  to { opacity: 1; transform: translate(0, -50%); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.5; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}