/* ========================================
   WEALTHORA - MAIN STYLESHEET
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #1a1a1a;
  --color-secondary: #2d2d2d;
  --color-gold: #d4af37;
  --color-gold-dark: #b8941f;
  --color-gold-light: #e8c547;
  --color-white: #ffffff;
  --color-light: #f5f5f5;
  --color-gray: #666666;
  --color-dark-gray: #444444;
  --color-success: #4caf50;
  
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Playfair Display', serif;
  --font-tertiary: 'DM Sans', sans-serif;
  
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-tertiary);
  color: var(--color-primary);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.text-gold {
  color: var(--color-gold);
}

.text-center {
  text-align: center;
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   BUTTONS
   ======================================== */

button {
  font-family: var(--font-tertiary);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 4px;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 14px 35px;
  font-size: 1rem;
}

.btn-gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold-sm {
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-gold-sm:hover {
  background: var(--color-gold-dark);
}

.btn-outline {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: var(--color-white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.navbar-left {
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  transition: var(--transition);
}

.logo:hover {
  color: var(--color-gold);
}

.logo-icon {
  color: var(--color-gold);
  width: 32px;
  height: 32px;
}

.logo-text {
  font-family: var(--font-secondary);
}

.navbar-center {
  flex: 2;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding-bottom: 5px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.nav-links a.active {
  color: var(--color-gold);
}

.navbar-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 0;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2.5px;
  background: var(--color-primary);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--color-white);
  padding: 30px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: var(--color-primary);
  font-size: 1.1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 20px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-scroll-arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-gold);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   STATS BAR
   ======================================== */

.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-light);
  padding: 60px 20px;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-secondary);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 2px;
  height: 60px;
  background: var(--color-gold);
  opacity: 0.3;
}

/* ========================================
   SECTIONS
   ======================================== */

section {
  padding: 100px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-gold);
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.feature-card {
  background: var(--color-light);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-gold);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: var(--color-primary);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 120px 20px 80px;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--color-gold);
  text-decoration: none;
}

.page-hero h1 {
  margin: 20px 0;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

/* ========================================
   MISSION SECTION
   ======================================== */

.mission-section {
  background: var(--color-light);
}

.mission-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.mission-statement {
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 500;
  line-height: 2;
}

/* ========================================
   TIMELINE
   ======================================== */

.timeline-section {
  background: var(--color-white);
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-gold);
  opacity: 0.3;
}

.timeline-item {
  margin-bottom: 50px;
  display: flex;
  gap: 40px;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-secondary);
  min-width: 100px;
  display: flex;
  align-items: center;
}

.timeline-content {
  flex: 1;
  background: var(--color-light);
  padding: 30px;
  border-radius: 8px;
  border-left: 3px solid var(--color-gold);
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 3px solid var(--color-gold);
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: var(--color-primary);
}

/* ========================================
   SERVICE DETAIL
   ======================================== */

.service-detail {
  padding: 80px 20px;
  border-bottom: 1px solid var(--color-light);
}

.service-detail:nth-child(even) {
  background: var(--color-light);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-content h2 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-list {
  list-style: none;
  margin: 30px 0;
}

.service-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--color-gray);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: bold;
}

.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--color-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.2);
}

.image-placeholder svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 80px 20px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
  color: var(--color-white);
}

.contact-section p {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-white);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-family: var(--font-tertiary);
  transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.form-submit:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* ========================================
   TEAM SECTION
   ======================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.team-card {
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.team-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(0, 0, 0, 0.1);
}

.team-info {
  padding: 30px;
}

.team-info h3 {
  color: var(--color-primary);
  margin-bottom: 5px;
}

.team-role {
  color: var(--color-gold);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 60px 20px 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================================
   REVEAL ANIMATION
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.service-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid transparent;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--color-gold);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.service-title {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-description {
  color: var(--color-gray);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-link {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  display: inline-block;
}

.service-link:hover {
  color: var(--color-gold-dark);
  padding-left: 5px;
}

/* ========================================
   TEAM SECTION STYLES
   ======================================== */

.team-image {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-radius: 8px 8px 0 0;
}

.team-role {
  color: var(--color-gold);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ========================================
   WHY CHOOSE SECTION
   ======================================== */

.why-choose {
  background: var(--color-light);
  padding: 100px 20px;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-content {
  padding: 0 40px;
}

.why-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 40px;
  line-height: 1.2;
}

.why-benefits {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-item h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
  padding: 100px 20px;
  background: var(--color-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.testimonial-card {
  background: var(--color-light);
  padding: 40px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 4px solid var(--color-gold);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 15px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-stars {
  color: var(--color-gold);
  margin-bottom: 15px;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
  margin: 0;
  font-size: 0.95rem;
}

.testimonial-author span {
  color: var(--color-gray);
  font-weight: 400;
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 80px 20px;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 15px 20px;
  }

  .navbar-center {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    min-height: 80vh;
    padding: 80px 20px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
  }

  .stats-bar {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    width: 60px;
    height: 2px;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
    gap: 20px;
  }

  .timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
  }

  .timeline-content {
    border-left: 3px solid var(--color-gold) !important;
  }

  .timeline-year {
    min-width: 60px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 60px 15px;
  }

  .navbar {
    padding: 12px 15px;
  }

  .logo-text {
    display: none;
  }

  .hero {
    padding: 70px 15px 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
