@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-dark: #8B6914;
  --bg: #0A0B14;
  --bg2: #0F1022;
  --bg3: #161828;
  --text: #E8E8F0;
  --text-muted: #8888AA;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,168,76,0.2);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

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

/* SELECTION */
::selection { background: var(--gold); color: #000; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.gradient-text {
  background: linear-gradient(135deg, #F0D080 0%, #C9A84C 50%, #8B6914 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.2; margin-bottom: 20px;
}
.section-desc { color: var(--text-muted); font-size: 17px; max-width: 600px; line-height: 1.8; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; transition: all 0.3s ease; border: none;
  text-decoration: none; font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, #F0D080, #C9A84C);
  color: #0A0B14;
  box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,0.5); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid rgba(201,168,76,0.5);
}
.btn-outline:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-2px); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-18px); } }
@keyframes pulse { 0%,100% { opacity:0.6; transform:scale(1); } 50% { opacity:1; transform:scale(1.05); } }
@keyframes rotateSlow { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes counterUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* No hover transforms on touch devices */
.touch-device .service-card:hover,
.touch-device .industry-card:hover,
.touch-device .testimonial-card:hover { transform: none; }
.touch-device .btn-primary:hover,
.touch-device .btn-outline:hover { transform: none; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0; transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(10,11,20,0.92); backdrop-filter: blur(20px);
  padding: 12px 0; border-bottom: 1px solid var(--glass-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: var(--text); text-decoration: none;
}
.logo-text { white-space: nowrap; }
.logo-white { color: #FFFFFF !important; }
.logo-gold { color: #C9A84C !important; }
.logo-icon { width: 42px; height: 42px; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.3s; letter-spacing: 0.5px;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px; padding: 6px 16px; margin-bottom: 28px;
  font-size: 13px; color: var(--gold); font-weight: 500;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px;
}
.hero-desc { font-size: 18px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.8; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats { display: flex; gap: 40px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 700; color: var(--gold); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-svg-wrap {
  width: 100%; max-width: 520px;
  animation: float 6s ease-in-out infinite;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); opacity: 0.4; animation: float 4s ease-in-out infinite;
}

/* ===== MARQUEE ===== */
.marquee-section { padding: 30px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); overflow: hidden; }
.marquee-track { display: flex; gap: 60px; animation: marquee 20s linear infinite; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-muted); font-weight: 500; }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ===== ABOUT ===== */
#about { padding: 120px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px;
  position: absolute; right: -20px; bottom: -20px;
  backdrop-filter: blur(10px); min-width: 200px;
}
.about-card-title { font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.about-card-sub { font-size: 13px; color: var(--text-muted); }
.about-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; color: var(--text-muted); font-size: 15px; }
.about-check { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

/* ===== SERVICES ===== */
#services { padding: 120px 0; background: var(--bg2); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 36px 30px;
  transition: all 0.4s ease; cursor: default; 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); border-color: rgba(201,168,76,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 64px; height: 64px; margin-bottom: 24px; }
.service-title { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 600; margin-bottom: 14px; }
.service-desc { color: var(--text-muted); font-size: 15px; line-height: 1.7; }
.service-arrow { margin-top: 24px; color: var(--gold); font-size: 20px; }

/* ===== PROCESS ===== */
#process { padding: 120px 0; }
.process-header { text-align: center; margin-bottom: 80px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.4;
}
.process-step { text-align: center; padding: 0 20px; position: relative; }
.process-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1.5px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700;
  color: var(--gold); margin: 0 auto 24px;
}
.process-title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.process-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ===== INDUSTRIES ===== */
#industries { padding: 120px 0; background: var(--bg2); }
.industries-header { text-align: center; margin-bottom: 64px; }
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; align-items: center; gap: 20px;
  transition: all 0.3s ease;
}
.industry-card:hover { transform: translateX(6px); border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.05); }
.industry-icon { width: 52px; height: 52px; flex-shrink: 0; }
.industry-name { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.industry-count { font-size: 13px; color: var(--gold); }

/* ===== TESTIMONIALS ===== */
#testimonials { padding: 120px 0; }
.testimonials-header { text-align: center; margin-bottom: 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 36px; position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,0.3); }
.testimonial-quote {
  font-size: 48px; line-height: 1; color: var(--gold); opacity: 0.5;
  font-family: 'Playfair Display', serif; margin-bottom: 16px;
}
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: #000; flex-shrink: 0; }
.testimonial-name { font-size: 15px; font-weight: 600; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.stars { color: var(--gold); font-size: 14px; margin-bottom: 16px; }

/* ===== CONTACT ===== */
#contact { padding: 120px 0; background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-item-icon { width: 50px; height: 50px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 24px; height: 24px; }
.contact-item-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.contact-item-value { font-size: 16px; font-weight: 500; color: var(--text); }
.form-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 44px; backdrop-filter: blur(10px);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.form-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 8px; display: block; letter-spacing: 0.5px; }
.form-input, .form-textarea, .form-select {
  width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 14px 16px; color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 15px; transition: all 0.3s; outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(201,168,76,0.5); background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--bg3); }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg); border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { max-width: 280px; }
.footer-desc { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-top: 16px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social-link {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; text-decoration: none; color: var(--text-muted);
}
.footer-social-link:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4); color: var(--gold); }
.footer-col-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--glass-border); }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-gold { color: var(--gold); }

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,11,20,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 24px; color: var(--text); text-decoration: none; font-family: 'Playfair Display', serif; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text); font-size: 28px; cursor: pointer; }

/* ===== SCROLL TOP ===== */
#scrollTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, #F0D080, #C9A84C);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0; transform: translateY(20px); transition: all 0.3s; pointer-events: none;
}
#scrollTop.show { opacity: 1; transform: translateY(0); pointer-events: all; }
#scrollTop:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 48px; }
  .contact-grid { gap: 48px; }
  #about, #services, #process, #industries, #testimonials, #contact { padding: 90px 0; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar { padding: 16px 0; }

  /* Hero */
  #hero { padding: 100px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-visual { order: -1; justify-content: center; }
  .hero-svg-wrap { max-width: 300px; margin: 0 auto; }
  .hero-badge { justify-content: center; }
  .hero-desc { font-size: 16px; max-width: 100%; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-stats { justify-content: center; gap: 28px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 26px; }

  /* Sections */
  #about, #services, #process, #industries, #testimonials, #contact { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .about-card { right: 0; bottom: -16px; }
  .about-text { text-align: center; }
  .about-list li { text-align: left; }
  .about-text .btn { margin: 0 auto; display: inline-flex; }

  /* Services */
  .services-header { text-align: center; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; display: flex; flex-direction: column; }

  /* Process */
  .process-header .section-desc { font-size: 15px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .process-step { padding: 0 16px; }
  .process-num { width: 68px; height: 68px; font-size: 20px; }

  /* Industries */
  .industries-grid { grid-template-columns: 1fr; gap: 12px; }
  .industry-card { padding: 20px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { margin-top: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* Scroll top */
  #scrollTop { bottom: 20px; right: 20px; width: 44px; height: 44px; }

  /* Typography scale down */
  .section-title { font-size: clamp(26px, 7vw, 40px); }
  .section-desc { font-size: 15px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero extra small */
  #hero { padding: 90px 0 50px; }
  .hero-svg-wrap { max-width: 240px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-desc { font-size: 15px; }
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-label { font-size: 12px; }

  /* Buttons */
  .btn { padding: 13px 24px; font-size: 14px; }

  /* Sections */
  #about, #services, #process, #industries, #testimonials, #contact { padding: 56px 0; }
  .about-card { position: static; margin-top: 20px; right: auto; bottom: auto; }
  .about-visual { padding-bottom: 0; }

  /* Service cards */
  .service-card { padding: 24px 18px; }
  .service-icon { width: 52px; height: 52px; }
  .service-title { font-size: 19px; }

  /* Process */
  .process-num { width: 60px; height: 60px; font-size: 18px; }
  .process-title { font-size: 16px; }

  /* Industries */
  .industry-card { padding: 16px; gap: 14px; }
  .industry-icon { width: 42px; height: 42px; }
  .industry-name { font-size: 15px; }

  /* Testimonials */
  .testimonial-card { padding: 22px 18px; }
  .testimonial-quote { font-size: 36px; }

  /* Form */
  .form-card { padding: 24px 16px; }
  .form-title { font-size: 22px; }
  .form-input, .form-textarea, .form-select { padding: 12px 14px; font-size: 14px; }

  /* Footer */
  .footer-grid { gap: 28px; }
  .logo { font-size: 19px; }
  .logo-icon { width: 36px; height: 36px; }

  /* Mobile menu font */
  .mobile-menu a { font-size: 20px; }

  /* Marquee slower on mobile */
  .marquee-track { animation-duration: 14s; }
}
