/* ===================================================
   FinVista — Finansal Danışmanlık
   style.css
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --dark:    #090c12;
  --dark-2:  #0d1117;
  --dark-3:  #131923;
  --dark-4:  #1a2232;
  --gold:    #c9a96e;
  --gold-2:  #e8c98a;
  --gold-3:  #8b6914;
  --text:    #e8eaf0;
  --text-dim:#9aa3b0;
  --border:  rgba(201,169,110,0.15);
  --radius:  16px;
  --transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: 'Playfair Display', serif; line-height: 1.15; }

a { text-decoration: none; color: inherit; }

img, svg { max-width: 100%; }

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

/* ====================================================
   REVEAL ANIMATIONS (Intersection Observer)
   ==================================================== */
.reveal-fade,
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-fade  { transform: scale(0.97); }
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }

/* ====================================================
   NAVBAR
   ==================================================== */
#mainNav {
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  z-index: 1000;
}
#mainNav.scrolled {
  background: rgba(9,12,18,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon { color: var(--gold); font-size: 1.1rem; }

.nav-link {
  color: var(--text-dim) !important;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover { color: var(--text) !important; background: rgba(255,255,255,0.05); }

.btn-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 22px !important;
  border-radius: 50px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--gold-2);
  box-shadow: 0 0 30px rgba(201,169,110,0.35);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar-toggler { border: none; background: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ====================================================
   HERO
   ==================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  overflow: hidden;
}

/* Grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(201,169,110,0.12), transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: 50px; left: -100px;
  background: radial-gradient(circle, rgba(139,105,20,0.1), transparent 70%);
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201,169,110,0.06), transparent 70%);
}

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

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,110,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Hero title */
.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.title-accent {
  color: var(--gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 36px;
}

/* Hero buttons */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary-hero {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.btn-primary-hero:hover {
  background: var(--gold-2);
  color: var(--dark);
  box-shadow: 0 0 40px rgba(201,169,110,0.4);
  transform: translateY(-2px);
}

.btn-ghost-hero {
  background: transparent;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s ease;
}
.btn-ghost-hero:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.06);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hero-stat .stat-num + span {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- Floating Cards (Hero Right) ---- */
.hero-card-wrap {
  position: relative;
  padding: 40px;
}

.floating-card {
  background: rgba(26,34,50,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.card-main {
  padding: 28px;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.card-title-small {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 500;
}
.card-badge.positive {
  background: rgba(0,200,100,0.12);
  color: #00c864;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 20px;
}
.bar {
  flex: 1;
  background: rgba(201,169,110,0.2);
  border-radius: 4px 4px 0 0;
  height: var(--h);
  transition: background 0.3s;
}
.bar.active { background: var(--gold); }
.bar:hover { background: var(--gold-2); }

.card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
}
.card-sub {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.card-mini {
  position: absolute;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 150px;
}
.card-mini i { font-size: 1.3rem; color: var(--gold); }
.mini-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.mini-label { font-size: 0.72rem; color: var(--text-dim); }

.card-mini-1 {
  bottom: -10px; left: -20px;
  animation: float-mini1 7s ease-in-out infinite;
}
.card-mini-2 {
  top: 0px; right: -30px;
  animation: float-mini2 5s ease-in-out infinite;
}
@keyframes float-mini1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}
@keyframes float-mini2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(10px) rotate(0deg); }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* ====================================================
   TICKER
   ==================================================== */
.ticker-wrap {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  padding: 0 36px;
  font-size: 0.8rem;
  color: var(--text-dim);
  border-right: 1px solid var(--border);
}
.ticker-item strong { color: var(--text); margin-right: 6px; }
.ticker-item .up { color: #00c864; }
.ticker-item .down { color: #ff4757; }

/* ====================================================
   SECTIONS — Common
   ==================================================== */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.centered { display: block; text-align: center; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title.centered { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.section-subtitle {
  color: var(--text-dim);
  font-size: 0.95rem;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

/* ====================================================
   ABOUT
   ==================================================== */
.section-about {
  padding: 120px 0;
  background: var(--dark);
}

.about-visual { position: relative; }

.about-img-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-img-inner { background: var(--dark-2); }
.about-svg { display: block; width: 100%; }

.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.about-badge-float i { font-size: 1.6rem; color: var(--gold); }
.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
}
.about-badge-float span { font-size: 0.78rem; color: var(--text-dim); }

.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }

.about-feat {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: background 0.25s, border-color 0.25s;
}
.about-feat:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.3);
}
.feat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.about-feat strong { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.about-feat span { font-size: 0.8rem; color: var(--text-dim); }

/* ====================================================
   SERVICES
   ==================================================== */
.section-services {
  padding: 120px 0;
  position: relative;
  background: var(--dark);
}
.services-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(139,105,20,0.06), transparent);
  pointer-events: none;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,169,110,0.2);
  border-color: rgba(201,169,110,0.25);
}
.service-card:hover::before { opacity: 1; }

.service-card-featured {
  background: linear-gradient(135deg, rgba(201,169,110,0.1), rgba(139,105,20,0.05));
  border-color: rgba(201,169,110,0.3);
}
.service-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: rgba(201,169,110,0.2); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.875rem; line-height: 1.7; color: var(--text-dim); margin-bottom: 20px; }

.service-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
}
.service-link:hover { gap: 10px; color: var(--gold-2); }

/* ====================================================
   STATISTICS
   ==================================================== */
.section-stats {
  padding: 80px 0;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-block:last-child { border-right: none; }

.stat-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.7;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  display: inline-block;
}
.stat-plus {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  display: inline-block;
  margin-left: 2px;
}
.stat-desc {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.3px;
}

/* ====================================================
   TEAM
   ==================================================== */
.section-team {
  padding: 120px 0;
  background: var(--dark);
}

.team-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid var(--border);
  background: var(--dark-4);
}
.team-avatar svg { width: 100%; height: 100%; }

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.team-role {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.82rem; line-height: 1.65; color: var(--text-dim); margin-bottom: 16px; }

.team-socials { display: flex; justify-content: center; gap: 10px; }
.team-socials a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.team-socials a:hover {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border-color: rgba(201,169,110,0.3);
}

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.section-testimonials {
  padding: 120px 0;
  background: var(--dark-2);
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}
.testimonial-featured {
  background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(139,105,20,0.04));
  border-color: rgba(201,169,110,0.3);
}

.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}

.testimonial-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.88rem; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-dim); }

.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }

/* ====================================================
   CONTACT
   ==================================================== */
.section-contact {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,169,110,0.05), transparent 60%);
  pointer-events: none;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  transition: background 0.25s, border-color 0.25s;
}
.contact-item:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.25);
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.contact-item span { font-size: 0.82rem; color: var(--text-dim); }

.contact-form-wrap {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}

.custom-input {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  font-size: 0.875rem !important;
  transition: border-color 0.25s, box-shadow 0.25s !important;
}
.custom-input::placeholder { color: var(--text-dim) !important; }
.custom-input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201,169,110,0.12) !important;
  background: rgba(201,169,110,0.03) !important;
}
.custom-input option { background: var(--dark-2); color: var(--text); }

.btn-submit {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-submit:hover {
  background: var(--gold-2);
  box-shadow: 0 0 40px rgba(201,169,110,0.4);
  transform: translateY(-2px);
  color: var(--dark);
}
.btn-submit:active { transform: translateY(0); }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-top { padding-bottom: 60px; border-bottom: 1px solid var(--border); }

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-desc { font-size: 0.82rem; line-height: 1.7; color: var(--text-dim); margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: all 0.25s;
}
.footer-socials a:hover {
  background: rgba(201,169,110,0.1);
  color: var(--gold);
  border-color: rgba(201,169,110,0.3);
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { padding-top: 32px; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 6px; }
.footer-disclaimer { opacity: 0.6; }

/* ====================================================
   SCROLL TOP BUTTON
   ==================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 36px; right: 36px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}
.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-btn:hover { background: var(--gold-2); transform: translateY(-3px) !important; }

/* ====================================================
   TOAST NOTIFICATION
   ==================================================== */
.toast-notification {
  position: fixed;
  bottom: 36px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark-3);
  border: 1px solid rgba(0,200,100,0.3);
  border-radius: 12px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.toast-notification i { color: #00c864; font-size: 1.1rem; }
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 991px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .stat-block:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-block:nth-child(4) { border-right: none; }
  .stat-block { border-bottom: 1px solid var(--border); }
  .stat-block:nth-child(3),
  .stat-block:nth-child(4) { border-bottom: none; }

  .hero-right { display: none; }
  .hero-title { font-size: 3rem; }

  .about-badge-float { right: 0; }
}

@media (max-width: 767px) {
  .section-about,
  .section-services,
  .section-team,
  .section-testimonials,
  .section-contact { padding: 80px 0; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 2.5rem; letter-spacing: -1px; }

  .contact-form-wrap { padding: 24px; }
  .hero-stats { gap: 18px; }

  .scroll-top-btn { bottom: 20px; right: 20px; }
  .toast-notification { font-size: 0.78rem; padding: 12px 18px; white-space: normal; max-width: 90vw; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-hero,
  .btn-ghost-hero { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-block { border-right: none !important; }
}
