/* ===============================================
   YOMAMENTOR PREMIUM LANDING PAGE
   Color Palette:
   - White: #FFFFFF
   - Orange (primary): #FF7A18
   - Shaded black: #111111, #1A1A1A
   - Gold (accent): #C9A24D
   - Neutral grey: #F5F5F5, #6B6B6B
   =============================================== */

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1A1A1A;
  background-color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #111111;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #111111;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #6B6B6B;
  line-height: 1.8;
}

.lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: #111111;
  margin-bottom: 1.5rem;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================================
   STICKY NAVIGATION BAR
   =============================================== */
.navbar {
  position: sticky;
  top: 0;
  background-color: #FFFFFF;
  border-bottom: 1px solid #F5F5F5;
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF7A18;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-menu a {
  text-decoration: none;
  color: #6B6B6B;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #FF7A18;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FF7A18;
  transition: width 0.3s ease;
}

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

.nav-cta {
  background-color: #FF7A18;
  color: #FFFFFF;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.3);
  flex-shrink: 0;
}

.nav-cta:hover {
  background-color: #E67116;
  box-shadow: 0 6px 16px rgba(101, 56, 24, 0.559);
  transform: translateY(-2px);
}

/* MOBILE TOGGLE */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: #111111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background-color: rgba(255, 122, 24, 0.04);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 550px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FF7A18;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* HERO VISUAL - Laptop Mockup */
.hero-image {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.laptop-mockup {
  position: relative;
  width: 100%;
  height: 320px;
  background-color: #1A1A1A;
  border-radius: 12px 12px 40px 40px;
  border: 8px solid #111111;
  padding: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.laptop-screen {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cv-preview {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FF7A18;
  letter-spacing: 2px;
}

/* Laptop stand */
.laptop-mockup::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 15px;
  background-color: #111111;
  border-radius: 0 0 8px 8px;
  z-index: -1;
}

/* Chat bubbles */
.chat-bubble {
  position: absolute;
  background-color: #FF7A18;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 16px rgba(255, 122, 24, 0.3);
  animation: float 3s ease-in-out infinite;
}

.bubble-1 {
  top: 80px;
  right: -30px;
  padding: 10px 15px;
  font-size: 1.5rem;
  animation-delay: 0s;
}

.bubble-2 {
  bottom: 60px;
  left: -50px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Glow background */
.glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 122, 24, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* ===============================================
   TRUST BADGES STRIP
   =============================================== */
.trust-strip {
  background-color: #111111;
  padding: 40px 0;
  margin: 60px 0;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-align: center;
  justify-content: center;
}

.badge-icon {
  font-size: 1.5rem;
  color: #C9A24D;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn.primary {
  background-color: #FF7A18;
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(255, 122, 24, 0.3);
}

.btn.primary:hover {
  background-color: #E67116;
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.4);
  transform: translateY(-2px);
}

.btn.primary:active {
  transform: translateY(0);
}

.btn.secondary {
  background-color: #FFFFFF;
  color: #FF7A18;
  border: 2px solid #FF7A18;
  box-shadow: 0 4px 12px rgba(255, 122, 24, 0.15);
}

.btn.secondary:hover {
  background-color: #FF7A18;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.3);
  transform: translateY(-2px);
}

/* ===============================================
   SECTION HEADERS
   =============================================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background-color: #C9A24D;
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ===============================================
   OFFERINGS / SERVICES SECTION
   =============================================== */
#offerings {
  padding: 80px 0;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.offering-card {
  background-color: #FFFFFF;
  border: 2px solid #F5F5F5;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.offering-card:hover {
  border-color: #FF7A18;
  box-shadow: 0 12px 32px rgba(255, 122, 24, 0.15);
  transform: translateY(-6px);
}

.card-icon {
  font-size: 2.5rem;
  color: #FF7A18;
  margin-bottom: 1rem;
  display: inline-block;
}

.offering-card h3 {
  margin-bottom: 1rem;
}

.offering-card p {
  margin-bottom: 0;
}

/* ===============================================
   HELP SECTION
   =============================================== */
#help {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.help-card {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid #FF7A18;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.help-card h3 {
  color: #111111;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.help-card ul {
  list-style: none;
  padding: 0;
}

.help-card li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #6B6B6B;
  font-size: 0.95rem;
}

.help-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C9A24D;
  font-weight: bold;
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #FF7A18;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.star-rating {
  font-size: 1.2rem;
  color: #C9A24D;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
  border-left: 3px solid #C9A24D;
  padding-left: 1.5rem;
}

.testimonial-author {
  color: #6B6B6B;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===============================================
   PACKAGES SECTION
   =============================================== */
#packages {
  padding: 80px 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.package-card {
  background-color: #FFFFFF;
  border: 2px solid #F5F5F5;
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  border-color: #FF7A18;
  box-shadow: 0 12px 36px rgba(255, 122, 24, 0.2);
  transform: translateY(-6px);
}

.package-card.featured {
  border-color: #FF7A18;
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.15);
  transform: scale(1.02);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background-color: #FF7A18;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header {
  border-bottom: 2px solid #F5F5F5;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.package-header h3 {
  margin-bottom: 0;
  color: #111111;
}

.package-card p {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.package-cta {
  display: flex;
  gap: 1rem;
}

.package-cta .btn {
  flex: 1;
  justify-content: center;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact-section {
  padding: 80px 0;
  background-color: #111111;
  color: #FFFFFF;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.contact-text h2 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.contact-text p {
  color: #F5F5F5;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #F5F5F5;
  border-radius: 6px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6B6B6B;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #FF7A18;
  box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.1);
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-actions .btn {
  flex: 1;
  min-width: 150px;
}

.form-actions .btn.secondary {
  border-color: #FF7A18;
  color: #FF7A18;
}

.form-actions .btn.secondary:hover {
  background-color: #FF7A18;
  color: #FFFFFF;
}

.contact-email {
  text-align: center;
  color: #F5F5F5;
}

.contact-email a {
  color: #FF7A18;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-email a:hover {
  color: #C9A24D;
}

/* ===============================================
   FOOTER
   =============================================== */
.site-footer {
  background-color: #1A1A1A;
  color: #F5F5F5;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer a {
  color: #FF7A18;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #C9A24D;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */
@media (max-width: 768px) {
  .nav-container {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #F5F5F5;
    width: 100%;
    padding: 1rem 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #F5F5F5;
  }

  .nav-menu a {
    display: block;
    padding: 0.75rem 20px;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    height: 300px;
    margin-top: 2rem;
  }

  .laptop-mockup {
    height: 200px;
  }

  .cta-row {
    flex-direction: column;
  }

  .cta-row .btn {
    width: 100%;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .nav-cta {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .nav-menu a {
    padding: 0.5rem 20px;
  }

  .hero {
    padding: 40px 0 30px;
  }

  .help-grid,
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .badge-text {
    font-size: 0.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ===============================================
   SUBTLE ANIMATIONS & EFFECTS
   =============================================== */
@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }

  a, button, input, textarea, .btn {
    transition: all 0.25s ease;
  }
}
