/* ========================================
   PREMIUM LIFE COACHING WEBSITE
   Color Psychology: Hope, Transformation, Elegance
   ======================================== */

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

:root {
  /* Premium Color Palette */
  --navy-deep: #0A1128;
  --navy-rich: #1E2749;
  --navy-soft: #2D3B66;
  --gold-rich: #D4AF37;
  --gold-soft: #E8D4A0;
  --rose-gold: #B76E79;
  --cream: #FAF8F5;
  --ivory: #FFFEF9;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --shadow-sm: 0 2px 8px rgba(10, 17, 40, 0.08);
  --shadow-md: 0 4px 20px rgba(10, 17, 40, 0.12);
  --shadow-lg: 0 8px 40px rgba(10, 17, 40, 0.16);
  --shadow-xl: 0 12px 60px rgba(10, 17, 40, 0.20);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-deep);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--text-dark);
  opacity: 0.9;
}

/* ========== NAVIGATION ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.mantra {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--navy-rich);
  font-style: italic;
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--navy-rich);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-rich);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold-rich);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(10, 17, 40, 0.75) 0%, 
    rgba(30, 39, 73, 0.60) 50%,
    rgba(212, 175, 55, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 3rem;
  font-family: var(--font-heading);
  font-style: italic;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-md);
}

.btn-primary {
  background: var(--gold-rich);
  color: var(--navy-deep);
}

.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid var(--white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ========== SECTION STYLES ========== */
.section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-rich);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ========== ABOUT SECTION ========== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-content h3 {
  color: var(--rose-gold);
  margin-bottom: 1rem;
  font-style: italic;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.credential-item {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.credential-icon {
  font-size: 1.5rem;
  color: var(--gold-rich);
  flex-shrink: 0;
}

.credential-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-rich);
  line-height: 1.5;
}

.watch-story {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  background: var(--navy-deep);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.watch-story:hover {
  background: var(--navy-rich);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========== PROGRAMS SECTION ========== */
.programs {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

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

.program-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-rich) 0%, var(--rose-gold) 100%);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-rich);
}

.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--rose-gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--navy-deep);
}

.program-tagline {
  font-size: 1rem;
  color: var(--gold-rich);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.program-features h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--navy-rich);
}

.program-features ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.program-features li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.program-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-rich);
  font-weight: bold;
  font-size: 1.1rem;
}

.program-results {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(183, 110, 121, 0.08) 100%);
  padding: 1.25rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.program-results h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--navy-deep);
}

.program-results ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.program-results li {
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--navy-rich);
}

.program-results li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--rose-gold);
  font-weight: bold;
}

.program-duration {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.program-card .btn {
  width: 100%;
  text-align: center;
  padding: 1rem;
  background: var(--navy-deep);
  color: var(--white);
}

.program-card .btn:hover {
  background: var(--gold-rich);
  color: var(--navy-deep);
}

/* ========== GUARANTEE SECTION ========== */
.guarantee {
  background: var(--navy-deep);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(183, 110, 121, 0.1) 0%, transparent 50%);
}

.guarantee-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee h2 {
  color: var(--gold-rich);
  margin-bottom: 1.5rem;
  font-size: 3rem;
}

.guarantee p {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.guarantee-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 2rem auto;
  border: 5px solid var(--gold-rich);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

/* ========== BOOKING SECTION ========== */
.booking {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream) 100%);
}

.booking-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(10, 17, 40, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: var(--cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-rich);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

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

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--gold-rich);
  color: var(--navy-deep);
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.submit-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ========== MEDIA SECTION ========== */
.media {
  background: var(--white);
}

.video-placeholder {
  background: var(--navy-deep);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 3rem;
  max-width: 900px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '▶';
  font-size: 4rem;
  color: var(--gold-rich);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.media-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.media-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(212, 175, 55, 0.05) 100%);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: 10px;
  left: 20px;
  color: var(--gold-soft);
  font-family: var(--font-heading);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--navy-deep);
  font-size: 1.1rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--gold-rich);
  margin-top: 0.25rem;
}

/* ========== SOCIAL CONNECT ========== */
.social-connect {
  background: var(--white);
}

.social-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.social-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-rich);
}

.social-icon {
  font-size: 2rem;
  color: var(--gold-rich);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
}

.social-info h4 {
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
  font-size: 1.125rem;
}

.social-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-form {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-rich) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  color: var(--gold-rich);
  margin-bottom: 1.5rem;
}

.contact-form .form-group label {
  color: var(--white);
}

.contact-form .submit-btn {
  background: var(--gold-rich);
  color: var(--navy-deep);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3rem 2rem 1.5rem;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-social a {
  color: var(--gold-soft);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold-rich);
  transform: translateY(-3px);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .about-container,
  .social-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .media-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: start;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: 600px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .programs-grid {
    grid-template-columns: 1fr;
  }
  
  .credentials {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .media-gallery {
    grid-template-columns: 1fr;
  }
  
  .booking-form {
    padding: 2rem 1.5rem;
  }
  
  .logo-section {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .mantra {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4rem 1.5rem;
  }
  
  .logo {
    height: 50px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}
