/* ===========================
   AURADIYATECH — ENTERPRISE EDITION
   =========================== */

:root {
  --gold: #c9a96e;
  --gold-light: #e8d5a3;
  --gold-dark: #8b6a3e;
  --cream: #f5f0e8;
  --ink: #0e0c09;
  --ink-soft: #1c1814;
  --muted: #6b6460;
  --bg: #0a0805;
  --surface: #141210;
  --surface2: #1e1b17;
  --border: rgba(201,169,110,0.15);
  --border-strong: rgba(201,169,110,0.35);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Josefin Sans', 'Helvetica Neue', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.15s var(--ease), opacity 0.3s;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
}
body:hover .cursor { opacity: 1; }

/* NAVBAR */
.nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  padding: 18px 5%;
  transition: background 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,8,5,0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 12px 5%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}
.logo {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--cream);
  text-transform: uppercase;
}
.nav-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* MENU */
.menu { display: flex; gap: 32px; }
.menu a {
  text-decoration: none;
  font-family: "Aladin", system-ui;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  transition: color 0.3s;
  position: relative;
}
.menu a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.menu a:hover { color: var(--gold); }
.menu a:hover::after { width: 100%; }

/* =================== HERO =================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  bottom: -60px; left: -20px;
  font-family: var(--font-serif);
  font-size: clamp(180px, 22vw, 340px);
  font-weight: 300;
  color: rgba(201,169,110,0.04);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.55);
  max-width: 380px;
  line-height: 1.9;
  margin-bottom: 48px;
  font-weight: 100;
}

.hero-cta { display: flex; gap: 20px; align-items: center; }

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.3s, transform 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-primary.full-width { width: 100%; text-align: center; padding: 18px; }

.btn-ghost {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 300;
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* HERO IMAGE */
.hero-img-wrap {
  position: relative;
  z-index: 2;
}
.hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 70vh;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=800&q=80') center/cover;
  position: relative;
}
.hero-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--border-strong);
  pointer-events: none;
  z-index: -1;
}
.hero-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.badge-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.badge-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--surface);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  font-weight: 100;
}
.marquee-track .dot { color: var(--gold); font-size: 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =================== SERVICES =================== */
.services-section {
  padding: 120px 5%;
  position: relative;
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block; width: 30px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 64px;
  color: var(--cream);
}
.section-title em { font-style: italic; color: var(--gold); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.service-card {
  background: var(--bg);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 30px; right: 30px;
  font-family: var(--font-serif);
  font-size: 11px;
  color: rgba(201,169,110,0.3);
  letter-spacing: 0.1em;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.service-card:hover { background: var(--surface); }
.service-card:hover::after { width: 100%; }
.service-card.featured { background: var(--surface2); }
.service-card.featured .svc-icon { color: var(--gold); }

.svc-icon {
  font-size: 28px;
  color: rgba(201,169,110,0.5);
  margin-bottom: 20px;
  display: block;
  transition: color 0.3s;
}
.service-card:hover .svc-icon { color: var(--gold); }
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--cream);
}
.service-card p {
  font-size: 12px;
  line-height: 1.9;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  font-weight: 100;
}
.svc-link {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: letter-spacing 0.3s;
}
.svc-link:hover { letter-spacing: 0.3em; }

/* STATS */
.stats-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--gold);
}
.stat-item p {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-top: 10px;
  font-weight: 100;
}
.stat-divider {
  width: 1px; height: 80px;
  background: var(--border-strong);
}

/* =================== ABOUT =================== */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.about-img-col {
  position: relative;
  overflow: hidden;
}
.about-img-main {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?w=800&q=80') center/cover;
  filter: brightness(0.7);
  transition: transform 0.8s var(--ease);
}
.about-img-col:hover .about-img-main { transform: scale(1.03); }
.about-img-accent {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.8) 0%, transparent 50%);
}
.about-quote {
  position: absolute;
  bottom: 50px; left: 40px; right: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--cream);
  line-height: 1.5;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  z-index: 2;
}
.about-text-col {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.about-text-col p {
  font-size: 13px;
  line-height: 2;
  color: rgba(245,240,232,0.6);
  margin-bottom: 20px;
  font-weight: 100;
}
.about-features {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.af-item {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.6);
  display: flex;
  align-items: center;
  gap: 12px;
}
.af-item span { color: var(--gold); font-size: 8px; }

/* =================== GALLERY =================== */
.gallery-section {
  padding: 120px 5%;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 8px;
}
.g-item { position: relative; overflow: hidden; }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.g-item:hover img { transform: scale(1.08); }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay span {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* =================== TESTIMONIALS =================== */
.testimonials-section {
  padding: 120px 5%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.testimonials-track {
  max-width: 700px;
  margin: 60px auto 40px;
  position: relative;
  min-height: 220px;
}
.tcard {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.tcard.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tcard-quote {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 24px;
}
.tcard p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cream);
  margin-bottom: 36px;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tcard-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dark);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-family: var(--font-serif);
}
.tcard-author strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--cream);
}
.tcard-author span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.tcard-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.tc-btn {
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--cream);
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 16px;
  transition: border-color 0.3s, color 0.3s;
}
.tc-btn:hover { border-color: var(--gold); color: var(--gold); }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 20px; height: 1px;
  background: rgba(245,240,232,0.2);
  transition: background 0.3s, width 0.3s;
}
.tc-dot.active { background: var(--gold); width: 36px; }

/* =================== BOOKING =================== */
.booking-section {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
  min-height: 85vh;
}
.booking-left {
  padding: 80px 60px;
  background: var(--surface2);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.booking-left p {
  font-size: 13px;
  line-height: 2;
  color: rgba(245,240,232,0.5);
  margin-bottom: 40px;
  font-weight: 100;
}
.booking-info { display: flex; flex-direction: column; gap: 24px; margin-bottom: 48px; }
.bi-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bi-icon {
  font-size: 18px;
  color: var(--gold);
  margin-top: 2px;
  min-width: 24px;
}
.bi-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 4px;
}
.bi-item p {
  font-size: 12px;
  color: rgba(245,240,232,0.45);
  margin-bottom: 0;
  font-weight: 100;
}
.booking-form-wrap {
  padding: 80px 60px;
  background: var(--surface);
  position: relative;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 100;
  letter-spacing: 0.05em;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,169,110,0.04);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select option { background: #1e1b17; color: var(--cream); }

/* Booking success */
.booking-success {
  display: none;
  text-align: center;
  padding: 60px 0;
}
.booking-success.show { display: block; }
.booking-form.hide { display: none; }
.success-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 24px;
  animation: pulse 1s ease;
}
@keyframes pulse {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}
.booking-success h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}
.booking-success p {
  font-size: 12px;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.05em;
}

/* =================== FOOTER =================== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 60px 5% 20px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-brand p {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.3);
  margin-top: 16px;
  font-weight: 100;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  transition: color 0.3s;
  font-weight: 100;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.4);
  transition: border-color 0.3s, color 0.3s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.2);
  font-weight: 100;
}

/* =================== SCROLL ANIMATION =================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }
.service-card:nth-child(6) { transition-delay: 0.5s; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin: 0 auto 48px; }
  .hero-cta { justify-content: center; }
  .hero-img-wrap { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-img-col { min-height: 400px; }
  .booking-section { grid-template-columns: 1fr; }
  .booking-left { padding: 60px 40px; }
  .booking-form-wrap { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .hero { padding: 100px 5% 80px; }
  .hero-bg-text { display: none; }
  .menu { display: none; }
  .nav-tag { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-item.tall, .g-item.wide { grid-column: span 1; grid-row: span 1; }
  .stats-section { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 50%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .hero-badge { display: none; }
}
