/* SlingShot Consulting - Main Stylesheet */
:root {
  --ink: #0a0f1c;
  --cream: #f7f5f0;
  --gold: #c8a44e;
  --gold-light: #e8d9a0;
  --slate: #3a3f4b;
  --mist: #e8e5de;
  --accent: #1a3a5c;
  --accent-light: #2a5a8c;
  --white: #ffffff;
  --warm-gray: #6b6560;
  --section-pad: clamp(80px, 10vw, 140px);
  --side-pad: clamp(24px, 5vw, 80px);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Outfit', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--ink); display: flex; align-items: center; justify-content: center; transition: opacity 0.6s ease, visibility 0.6s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { opacity: 0; animation: preloaderIn 1.2s ease forwards; }
.preloader-logo img { height: 80px; width: auto; filter: brightness(0) invert(1); }
@keyframes preloaderIn { 0% { opacity:0; transform:translateY(20px);} 50% { opacity:1;} 100% { opacity:1; transform:translateY(0);} }

/* NAVIGATION */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px var(--side-pad); display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; background: transparent; }
.nav.scrolled { background: rgba(10,15,28,0.95); backdrop-filter: blur(20px); padding: 14px var(--side-pad); box-shadow: 0 2px 40px rgba(0,0,0,0.15); }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--white); }
.nav-brand img { height: 52px; width: auto; filter: brightness(0) invert(1); transition: height 0.3s ease; }
.nav.scrolled .nav-brand img { height: 40px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gold); color: var(--ink); padding: 10px 28px; border-radius: 2px; font-weight: 600; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; border: 2px solid var(--gold); }
.nav-cta:hover { background: transparent; color: var(--gold); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 28px; height: 2px; background: var(--white); margin: 6px 0; transition: all 0.3s ease; }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(10,15,28,0.98); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { color: var(--white); text-decoration: none; font-family: 'DM Serif Display', serif; font-size: 28px; transition: color 0.3s ease; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; }

/* HERO */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; background: var(--ink); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(200,164,78,0.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(26,58,92,0.15) 0%, transparent 50%), radial-gradient(ellipse at 60% 80%, rgba(200,164,78,0.05) 0%, transparent 40%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,164,78,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,164,78,0.04) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%); }
.hero-content { position: relative; z-index: 2; padding: 140px var(--side-pad) 80px; max-width: 900px; }
.hero-label { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s ease 1.4s forwards; }
.hero-label::before { content: ''; width: 40px; height: 1.5px; background: var(--gold); }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(42px, 6.5vw, 86px); color: var(--white); line-height: 1.05; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s ease 1.6s forwards; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: clamp(16px, 1.8vw, 20px); color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 620px; margin-bottom: 48px; font-weight: 300; opacity: 0; animation: fadeUp 0.8s ease 1.8s forwards; }
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s ease 2s forwards; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--ink); padding: 16px 40px; border-radius: 2px; font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all 0.35s ease; border: 2px solid var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: var(--white); padding: 16px 40px; border-radius: 2px; font-weight: 500; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: all 0.35s ease; border: 2px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; animation: scrollBounce 2s ease infinite; }
.hero-scroll-line { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px);} to { opacity:1; transform:translateY(0);} }
@keyframes scrollBounce { 0%,100% { transform:translateX(-50%) translateY(0);} 50% { transform:translateX(-50%) translateY(8px);} }

/* SECTIONS */
.section { padding: var(--section-pad) var(--side-pad); }
.section-dark { background: var(--ink); color: var(--white); }
.section-label { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.section-label::before { content: ''; width: 30px; height: 1.5px; background: var(--gold); }
.section-title { font-family: 'DM Serif Display', serif; font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15; margin-bottom: 24px; }
.section-sub { font-size: 17px; color: var(--warm-gray); line-height: 1.75; max-width: 600px; font-weight: 300; }

/* ABOUT */
.about-centered { max-width: 780px; margin: 0 auto; text-align: center; }
.about-centered .section-label { justify-content: center; }
.about-centered .section-title { margin-bottom: 24px; }
.about-centered .section-sub { max-width: 100%; margin-bottom: 36px; color: var(--warm-gray); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; text-align: left; }
.about-value { display: flex; gap: 14px; align-items: flex-start; }
.about-value-icon { width: 40px; height: 40px; flex-shrink: 0; background: rgba(200,164,78,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.about-value-icon svg { width: 18px; height: 18px; color: var(--gold); }
.about-value h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.about-value p { font-size: 13px; color: var(--warm-gray); line-height: 1.6; }

/* SERVICES */
.services-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: var(--white); border-radius: 4px; padding: 48px 36px; position: relative; overflow: hidden; transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.06); cursor: default; }
.service-card::before { content: ''; position: absolute; top: 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 { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.service-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; }
.service-icon svg { width: 26px; height: 26px; color: var(--ink); }
.service-card h3 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 16px; line-height: 1.3; }
.service-card p { font-size: 15px; color: var(--warm-gray); line-height: 1.75; margin-bottom: 24px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; transition: gap 0.3s ease; }
.service-link:hover { gap: 14px; }

/* WHY US */
.why-us { background: var(--ink); color: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
.why-us-inner { padding: 0 var(--side-pad); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us-features { display: flex; flex-direction: column; gap: 36px; }
.why-feature { display: flex; gap: 24px; align-items: flex-start; padding: 28px; border-radius: 4px; transition: background 0.3s; }
.why-feature:hover { background: rgba(255,255,255,0.03); }
.why-feature-num { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--gold); line-height: 1; flex-shrink: 0; width: 50px; }
.why-feature h4 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.why-feature p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* PROCESS */
.process-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }
.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: 2px; background: var(--mist); }
.process-step { text-align: center; position: relative; padding: 0 20px; }
.process-step-num { width: 80px; height: 80px; background: var(--white); border: 3px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--gold); position: relative; z-index: 2; transition: all 0.3s ease; }
.process-step:hover .process-step-num { background: var(--gold); color: var(--white); }
.process-step h4 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--warm-gray); line-height: 1.65; }

/* TESTIMONIALS */
.testimonials-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 0 var(--side-pad); }
.testimonial-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 40px; transition: all 0.3s ease; }
.testimonial-card:hover { border-color: rgba(200,164,78,0.3); background: rgba(255,255,255,0.06); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 16px; height: 16px; color: var(--gold); fill: var(--gold); }
.testimonial-quote { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 28px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--accent)); display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--white); }
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* INDUSTRIES */
.industries-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.industry-item { background: var(--white); border: 1px solid rgba(0,0,0,0.06); border-radius: 4px; padding: 32px 24px; text-align: center; transition: all 0.3s ease; }
.industry-item:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); border-color: var(--gold); }
.industry-item svg { width: 36px; height: 36px; color: var(--gold); margin-bottom: 16px; }
.industry-item h4 { font-size: 15px; font-weight: 600; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%); padding: 80px var(--side-pad); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(200,164,78,0.1), transparent 50%), radial-gradient(circle at 70% 50%, rgba(200,164,78,0.05), transparent 40%); }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: clamp(30px,4vw,48px); color: var(--white); margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--mist); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; cursor: pointer; font-weight: 500; font-size: 17px; transition: color 0.3s ease; background: none; border: none; width: 100%; text-align: left; font-family: inherit; color: var(--ink); }
.faq-question:hover { color: var(--gold); }
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold); }
.faq-item.active .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 24px; font-size: 15px; color: var(--warm-gray); line-height: 1.75; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.contact-card { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--white); border-radius: 4px; border: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease; }
.contact-card:hover { border-color: var(--gold); box-shadow: 0 8px 30px rgba(0,0,0,0.05); }
.contact-card-icon { width: 48px; height: 48px; flex-shrink: 0; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.contact-card-icon svg { width: 22px; height: 22px; color: var(--ink); }
.contact-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--warm-gray); line-height: 1.6; }
.contact-card a { color: var(--accent); text-decoration: none; }
.contact-form { background: var(--white); padding: 48px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; color: var(--slate); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1.5px solid var(--mist); border-radius: 4px; font-family: inherit; font-size: 15px; color: var(--ink); transition: border-color 0.3s ease; background: var(--cream); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--ink); border: 2px solid var(--gold); border-radius: 2px; font-family: inherit; font-weight: 600; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: all 0.35s ease; }
.form-submit:hover { background: var(--ink); color: var(--gold); border-color: var(--ink); }

/* FOOTER */
.footer { background: var(--ink); color: var(--white); padding: 80px var(--side-pad) 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand img { height: 56px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 320px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 15px; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: all 0.3s ease; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-socials svg { width: 16px; height: 16px; }

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

/* 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; }
  .industries-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .about, .why-us-inner, .faq-layout, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 350px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .contact-form { padding: 32px 24px; }
}
