/* ===========================
   WASHIFYY – CORE STYLES
   Dark Luxury Theme
=========================== */

:root {
  --bg-primary: #080a0f;
  --bg-secondary: #0d1117;
  --bg-card: #111827;
  --bg-card2: #151d2e;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(212,175,55,0.3);
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #a88a20;
  --text-primary: #f0ece4;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  --accent: #d4af37;
  --accent2: #1e40af;
  --success: #10b981;
  --error: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 30px rgba(212,175,55,0.15);
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.navbar.scrolled {
  background: rgba(8,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 1.2rem 2rem;
  gap: 2rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 1px;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 0.9rem; letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: #080a0f !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: rgba(8,10,15,0.98);
  border-top: 1px solid var(--border);
  padding: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-secondary); text-decoration: none;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.mobile-menu a:hover { color: var(--gold); background: rgba(212,175,55,0.05); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #080a0f;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  font-family: var(--font-body);
  border: none; cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  letter-spacing: 0.5px;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,175,55,0.4);
}
.btn-primary:hover::after { background: rgba(255,255,255,0.1); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--gold);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid var(--gold-dark);
  font-weight: 500; font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer; text-decoration: none;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold);
}
.btn-link {
  background: none; border: none; cursor: pointer;
  color: var(--gold); font-size: 0.9rem;
  font-family: var(--font-body);
  text-decoration: underline;
}

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.slider-track {
  position: absolute; inset: 0;
  display: flex; transition: transform 0.8s cubic-bezier(0.77,0,0.175,1);
}
.slide {
  min-width: 100%; height: 100%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.slider-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,10,15,0.3) 0%,
    rgba(8,10,15,0.55) 50%,
    rgba(8,10,15,0.85) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  max-width: 800px;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold); font-weight: 600; }
.hero-sub {
  font-size: 1.1rem; color: var(--text-secondary);
  margin-bottom: 2.5rem; font-weight: 300;
}
.slider-controls {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; align-items: center; gap: 1.2rem;
}
.sl-btn {
  background: rgba(212,175,55,0.15);
  border: 1px solid var(--border-gold);
  color: var(--gold); width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer; font-size: 1rem;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.sl-btn:hover { background: var(--gold); color: #080a0f; }
.sl-dots { display: flex; gap: 8px; }
.sl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer;
  transition: all var(--transition);
}
.sl-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.stat-suffix { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); }
.stat-item p { color: var(--text-secondary); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-top: 0.5rem; }
.stat-divider { width: 1px; height: 60px; background: var(--border-gold); }

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-eyebrow {
  font-size: 0.78rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem; font-family: var(--font-body);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; letter-spacing: -0.5px;
}

/* ===== SERVICES ===== */
.services {
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition);
  cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { border-color: var(--border-gold); }
.service-card.featured::before { transform: scaleX(1); }
.service-icon { font-size: 2.5rem; margin-bottom: 1.2rem; }
.service-badge {
  display: inline-block;
  background: rgba(212,175,55,0.15);
  color: var(--gold); font-size: 0.7rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 400; margin-bottom: 0.8rem;
}
.service-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.service-price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600; color: var(--gold);
}
.service-price small { font-size: 0.9rem; color: var(--text-muted); font-family: var(--font-body); }
.service-unavailable {
  opacity: 0.5; pointer-events: none;
}
.service-unavailable .service-badge { background: rgba(239,68,68,0.15); color: #ef4444; }

/* ===== GALLERY ===== */
.gallery-section {
  padding: 6rem 2rem;
  background: var(--bg-secondary);
}
.gallery-section .section-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem;
}
.gallery-card { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-card.g-tall { grid-row: span 2; }
.gallery-card.g-wide { grid-column: span 2; }
.g-inner {
  width: 100%; height: 100%;
  display: flex; align-items: flex-end; padding: 1.5rem;
  transition: filter var(--transition), transform var(--transition);
  min-height: 200px;
}
.gallery-card:hover .g-inner { filter: brightness(1.2); transform: scale(1.02); }
.g-inner span { color: var(--text-primary); font-size: 0.9rem; font-weight: 500; }

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 6rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.steps-row {
  display: flex; align-items: center;
  gap: 0; flex-wrap: wrap; justify-content: center;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  flex: 1; min-width: 180px; max-width: 220px;
  transition: all var(--transition);
}
.step-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: var(--gold); opacity: 0.4; line-height: 1;
  margin-bottom: 0.8rem;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; font-weight: 500; }
.step-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.5; }
.step-connector {
  flex: 0 0 40px; height: 2px;
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
}
.footer-brand .logo { font-size: 1.6rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-top: 1rem; }
.footer-domain { color: var(--gold) !important; margin-top: 0.5rem !important; }
.footer-links h4 { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-bottom: 1.2rem; letter-spacing: 1px; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.7rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 1200px; margin: 0 auto;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; }
.chat-fab {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none; cursor: pointer; color: #080a0f;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(212,175,55,0.4);
  transition: all var(--transition);
}
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(212,175,55,0.5); }
.chat-panel {
  position: absolute; bottom: 70px; right: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: none;
  animation: fadeUp 0.3s ease;
}
.chat-panel.open { display: block; }
.chat-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 500;
}
.chat-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; }
.chat-close:hover { color: var(--text-primary); }
.chat-body { padding: 1.5rem; }
.chat-body p { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 1rem; }
.chat-input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  transition: border-color var(--transition);
  outline: none;
}
.chat-input:focus { border-color: var(--gold-dark); }
.chat-ta { min-height: 80px; resize: vertical; }
.chat-send { width: 100%; margin-top: 0.4rem; }
.chat-status { font-size: 0.85rem; text-align: center; margin-top: 0.8rem; color: var(--success); }

/* ===== FORMS ===== */
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--gold-dark); background: rgba(212,175,55,0.04); }
.form-input::placeholder { color: var(--text-muted); }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.form-ta { min-height: 90px; resize: vertical; }
.form-error { color: var(--error); font-size: 0.85rem; margin-bottom: 0.5rem; min-height: 1.2rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-card.g-tall { grid-row: span 1; }
  .gallery-card.g-wide { grid-column: span 2; }
  .stat-divider { width: 60px; height: 1px; }
  .steps-row { flex-direction: column; }
  .step-connector { width: 2px; height: 30px; background: var(--border-gold); }
  .step-card { max-width: 100%; width: 100%; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card.g-wide { grid-column: span 1; }
}
