/* ============================================================
   ROCKETSHIP STRATEGIES — Main Stylesheet
   ============================================================ */

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

:root {
  --red:       #c0392b;
  --red-dark:  #a93226;
  --dark:      #1a1a2e;
  --charcoal:  #2c2c3e;
  --white:     #ffffff;
  --offwhite:  #f8f8f8;
  --gray:      #666666;
  --lightgray: #e8e8e8;
  --nav-gray:  #6a6a6a;
  --font-main: 'Montserrat', sans-serif;
  --nav-h:     72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--nav-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 24px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  display: flex;
  justify-content: center;
  margin: 0 0 32px;
}
.section-divider img {
  height: 72px;
  width: auto;
}

/* ============================================================
   WHO WE ARE
   ============================================================ */
.who-we-are {
  background: var(--white);
  padding: 40px 48px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.who-we-are h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 28px;
}

.who-we-are p {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  background: var(--offwhite);
  padding: 40px 48px;
  text-align: center;
}

.services-section h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.service-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 36px 24px 28px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.service-card .card-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.4;
}

.services-section .btn {
  margin-top: 8px;
}

/* ============================================================
   QUOTE BANNER
   ============================================================ */
.quote-banner {
  background: var(--nav-gray);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/testimonials_parallax_edited.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.15;
}

.quote-banner blockquote {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.quote-banner blockquote p {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.quote-banner blockquote cite {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
  font-weight: 600;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--nav-gray);
  padding: 80px 48px;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-tagline {
  font-size: 1.1rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

.cta-tagline span {
  display: inline-block;
  margin: 0 8px;
}

.cta-section p {
  color: var(--white);
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-contact-info a {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
.cta-contact-info a:hover { color: var(--red); opacity: 1; }

.cta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  opacity: 0.6;
  margin-bottom: 4px;
}

.cta-form {
  max-width: 500px;
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.cta-form textarea { min-height: 120px; resize: vertical; }

.form-success {
  display: none;
  color: #7dcea0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.cta-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.cta-linkedin:hover { color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

.footer-linkedin a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-linkedin a:hover { color: var(--white); }
.footer-linkedin svg {
  width: 20px; height: 20px;
  fill: currentColor;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--nav-gray);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 32px;
    border-bottom: none;
    color: var(--white);
  }
  .nav-links a:hover { background: rgba(255,255,255,0.05); }
  .nav-toggle { display: flex; }

  .who-we-are,
  .services-section,
  .quote-banner,
  .cta-section { padding: 40px 24px; }

  .cta-contact-info { gap: 24px; flex-direction: column; align-items: center; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .site-footer { flex-direction: column; text-align: center; padding: 24px; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
