/* ============================================================
   VISHAL VERMA — PORTFOLIO
   Bold Luxury Real Estate
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --gold-dark: #9a7a30;
  --white: #ffffff;
  --gray: #888888;
  --gray-light: #cccccc;
  --border: rgba(201, 168, 76, 0.2);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;
}

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

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

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

/* ============================================================ LOADER */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.loader-name {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 24px;
}

.loader-word {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
}

.loader-word.gold {
  color: var(--gold);
  font-style: italic;
}

.loader-bar-wrap {
  width: 300px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 20px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--gold);
}

.loader-tagline {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
}

.loader-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--bg);
  z-index: 1;
}

.loader-panel-left  { left: 0; }
.loader-panel-right { right: 0; }

/* ============================================================ WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 36px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ============================================================ CHATBOT */
.chat-bubble {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(201,168,76,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}
.chat-bubble:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(201,168,76,0.6); }
.chat-bubble svg { width: 26px; height: 26px; fill: var(--bg); }
.chat-notif {
  position: absolute;
  top: 3px; right: 3px;
  width: 13px; height: 13px;
  background: #ef4444;
  border-radius: 50%;
  border: 2px solid var(--bg);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.chat-window {
  position: fixed;
  bottom: 104px;
  right: 32px;
  width: 360px;
  max-height: 520px;
  background: #111;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  z-index: 800;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transform-origin: bottom right;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), opacity 0.25s ease;
}
.chat-window.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chat-header {
  background: var(--gold);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid rgba(0,0,0,0.15);
}
.chat-header-info { flex: 1; }
.chat-header-name { font-family: var(--font-display); font-size: 0.8rem; font-weight: 700; color: var(--bg); }
.chat-header-status { font-size: 0.65rem; color: rgba(0,0,0,0.5); margin-top: 1px; }
.chat-close { background: none; border: none; color: var(--bg); font-size: 1.2rem; cursor: pointer; opacity: 0.6; transition: opacity 0.2s; line-height: 1; }
.chat-close:hover { opacity: 1; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
}
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.msg {
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.84rem;
  line-height: 1.55;
  animation: msg-in 0.3s ease;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.msg.bot { background: #1e1e1e; color: var(--gray-light); border-bottom-left-radius: 3px; align-self: flex-start; border: 1px solid rgba(255,255,255,0.05); }
.msg.user { background: var(--gold); color: var(--bg); border-bottom-right-radius: 3px; align-self: flex-end; font-weight: 500; }

.msg-options { display: flex; flex-wrap: wrap; gap: 7px; align-self: flex-start; animation: msg-in 0.3s ease; }
.msg-option {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 13px;
  border-radius: 20px;
  font-size: 0.73rem;
  font-family: var(--font-display);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.msg-option:hover { background: var(--gold); color: var(--bg); }

.chat-typing {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 13px;
  background: #1e1e1e;
  border-radius: 12px; border-bottom-left-radius: 3px;
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.05);
  animation: msg-in 0.3s ease;
}
.chat-typing span {
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: typing-dot 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-input-row {
  display: flex; gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  background: #1e1e1e;
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  padding: 9px 13px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}
.chat-input:focus { border-color: var(--gold); }
.chat-input::placeholder { color: var(--gray); }
.chat-send {
  width: 38px; height: 38px;
  background: var(--gold); border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s;
}
.chat-send:hover { background: var(--gold-light); }
.chat-send svg { width: 16px; height: 16px; fill: var(--bg); }

/* ============================================================ RAY WHITE BADGE */
.rw-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--border);
  margin-top: 36px;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.rw-badge:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.rw-badge-icon { font-size: 1.6rem; }
.rw-badge-label { font-family: var(--font-display); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.rw-badge-name { font-size: 0.85rem; color: var(--white); font-weight: 500; }

/* ============================================================ HERO SOCIAL ROW */
.hero-social { display: flex; gap: 12px; margin-top: 28px; }

/* ============================================================ Custom Cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.cursor.active {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--gold);
}

/* Noise Texture Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ============================================================ NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ============================================================ HERO */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 160px 60px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 36px;
}

.hero-badge::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  overflow: hidden;
  will-change: transform;
}

.hero-name .line {
  display: block;
}

.hero-name .gold {
  color: var(--gold);
  font-style: italic;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 48px;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-light);
  max-width: 440px;
  margin-bottom: 56px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 18px 36px;
  text-decoration: none;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary svg {
  transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
  transform: translateX(6px);
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-container {
  position: relative;
  height: 100%;
  min-height: 100vh;
}

.hero-img-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 30%);
  z-index: 1;
}

.hero-img-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 1.5s ease;
}

.hero-img.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Big background text */
.hero-bg-text {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  font-family: var(--font-serif);
  font-size: clamp(5rem, 12vw, 14rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.04em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scroll-anim 2s ease infinite;
}

@keyframes scroll-anim {
  0% { left: -100%; }
  100% { left: 100%; }
}

.scroll-text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================ STATS BAR */
.stats-bar {
  background: var(--gold);
  padding: 32px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
  border-right: 1px solid rgba(0,0,0,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-weight: 900;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.6);
}

/* ============================================================ SECTIONS SHARED */
section {
  padding: 120px 60px;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

.section-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--gray-light);
  max-width: 560px;
}

/* ============================================================ ABOUT */
#about {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-left {
  position: relative;
}

.about-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60%;
  height: 60%;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  transition: transform 0.5s ease;
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
}

.about-img-wrap:hover::before {
  transform: translate(8px, 8px);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(20%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.about-img-wrap:hover .about-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.about-right {
  padding-left: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================================ SERVICES */
#services {
  background: var(--bg);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  background: rgba(201, 168, 76, 0.03);
}

.service-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s ease;
}

.service-card:hover .service-num {
  color: rgba(201, 168, 76, 0.15);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.service-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--gray);
}

/* ============================================================ VIDEO */
#video-section {
  background: var(--bg2);
  padding: 120px 60px;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 120px 60px;
  background: #0f0f0f;
}

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

/* Slider */
.tslider-wrap {
  overflow: hidden;
  position: relative;
}

.tslider-track {
  display: flex;
  gap: 28px;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.77,0,0.18,1);
  will-change: transform;
}

.testimonial-card {
  background: #161616;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 40px;
  flex: 0 0 calc((100% - 56px) / 3);
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.4);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: -20px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #bbb;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 20px;
}

.testimonial-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Slider controls */
.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.tslider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.tslider-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}

.tslider-dots {
  display: flex;
  gap: 8px;
}

.tslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
}

.tslider-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* ── VIDEO ── */
.video-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 64px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border: 1px solid var(--border);
}

.video-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  transform: translate(8px, 8px);
  pointer-events: none;
  z-index: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  z-index: 1;
}

/* ============================================================ CONTACT DETAILS */
#contact-info {
  background: var(--bg);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-items {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  group: true;
}

.contact-info-item:first-child {
  border-top: 1px solid var(--border);
}

.contact-info-item:hover {
  padding-left: 12px;
  border-bottom-color: var(--gold);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-value {
  font-size: 1.05rem;
  color: var(--white);
}

/* Social row */
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 48px;
}

.social-link {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-light);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.social-link:hover {
  color: var(--bg);
  border-color: var(--gold);
}

.social-link:hover::before {
  transform: translateY(0);
}

.social-link svg {
  position: relative;
  z-index: 1;
}

/* ============================================================ CONTACT FORM */
#contact {
  background: var(--bg2);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.form-left {
  position: sticky;
  top: 120px;
}

.form-cta-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-light);
  margin-top: 24px;
  margin-bottom: 40px;
}

.form-right form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--gold);
}

.form-group textarea {
  resize: none;
  height: 120px;
}

.form-group select option {
  background: #111;
  color: var(--white);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  border: none;
  padding: 20px 44px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.3);
}

.btn-submit svg {
  transition: transform 0.3s ease;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px;
  border: 1px solid var(--gold);
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.form-success p {
  color: var(--gray-light);
}

/* ============================================================ FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.footer-logo span {
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.footer-social {
  display: flex;
  gap: 12px;
}

/* ============================================================ DIVIDER LINE */
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 28px 0;
}

/* reveal classes — visibility controlled by GSAP */

/* ============================================================ HORIZONTAL MARQUEE */
.marquee-container {
  overflow: hidden;
  background: var(--gold);
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  white-space: nowrap;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================ PARTICLES */
#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* ============================================================ MOBILE HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 450;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

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

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 24px 40px; }
  nav.scrolled { padding: 16px 40px; }
  section { padding: 100px 40px; }
  footer { padding: 48px 40px; }

  #home { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 160px 40px 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-left { max-width: 400px; }
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { flex: 0 0 calc((100% - 28px) / 2); }
  #testimonials { padding: 100px 40px; }
  .contact-details-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-form-grid { grid-template-columns: 1fr; gap: 60px; }
  .form-left { position: static; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 24px; }
  footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
  .stats-bar { padding: 24px; grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  #testimonials { padding: 80px 24px; }
  .testimonial-card { flex: 0 0 100%; padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .scroll-indicator { left: 24px; }
  .hero-bg-text { font-size: 5rem; }
  .hero-badge::before { display: none; }
}
