/* Final CSS Styles for Lededge Advisors Website - Converted from React/Tailwind */

/* CSS Variables - Premium Corporate Colors */
:root {
  --navy: #0D2540;
  --gold: #C39D60;
  --off-white: #F7F6F2;
  --white: #ffffff;
  --light-gray: #E5E7EB;
  --gray: #6B7280;
  --dark-gray: #374151;

  /* Shadows */
  --shadow-elevated: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-floating: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: var(--off-white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

/* Page System */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Utility Classes */
.text-gold {
  color: var(--gold);
}

.bg-white {
  background-color: var(--white);
}

.bg-off-white {
  background-color: var(--off-white);
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.logo img {
  height: 100px;
  transition: transform 0.3s ease; /* smooth animation */
}

.logo img:hover {
  transform: scale(1.1); /* zoom in by 10% */
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.logo-icon span {
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.logo-text h1 {
  color: var(--navy);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}

.logo-text p {
  color: var(--gray);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 10px;
  position: relative;
  transition: var(--transition);
  border: transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  outline: none !important;
  outline-offset: unset !important;
}

.nav-link:focus {
  color: var(--gold);
  outline: none !important;
  outline-offset: unset !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--gold);
  border-radius: 19px;
}

.nav-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: rgba(195, 157, 96, 0.1);
  border: none;
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.hamburger {
  width: 20px;
  height: 2px;
  background-color: var(--gold);
  margin: 2px 0;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-floating);
}

.mobile-nav.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-nav-content {
  padding: 1.5rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 4px;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(195, 157, 96, 0.1);
  color: var(--gold);
}

.mobile-nav-cta {
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
  margin-top: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background-color: var(--gold);
  color: white;
}

.btn-primary:hover {
  background-color: rgba(195, 157, 96, 0.9);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--navy);
}

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

.btn-outline:hover {
  background-color: var(--navy);
  color: white;
}

.btn-download {
  background-color: var(--gold);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: var(--shadow-elevated);
}

.btn-download:hover {
  background-color: rgba(195, 157, 96, 0.9);
  color: white;
  transform: scale(1.05);
}

.btn-download.small {
  padding: 8px 16px;
  font-size: 12px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 37, 64, 0.75);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  color: #fff;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle-large {
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray);
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background-color: var(--gold);
  color: white;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--gray);
  line-height: 1.6;
  font-size: 15px;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-floating);
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--gold);
  color: white;
}

.service-link {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.service-card:hover .service-link {
  color: var(--navy);
}

.service-link svg {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Detailed Service Cards */
.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.detailed-service-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.detailed-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-floating);
}

.service-features {
  margin: 2rem 0;
}

.service-features h4 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--gray);
}

.bullet {
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}

/* wrapper & scroll area */
.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

/* leave horizontal padding so arrows don't cover card edges */
.testimonials-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 64px;
  /* IMPORTANT: room for arrows */
  scrollbar-width: none;
}

.testimonials-scroll::-webkit-scrollbar {
  display: none;
}

/* card */
.testimonial-card {
  flex: 0 0 320px;
  background: #fff;
  padding: 1.6rem;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

/* quote mark */
.testimonial-icon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--gold, #c5a46d);
  margin-bottom: 0.6rem;
}

/* text and client */
.testimonial-text {
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 1rem;
  color: #444;
}

.testimonial-client {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.testimonial-client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin: 0;
}

.client-role {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

/* arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.testimonial-arrow.left {
  left: 12px;
}

.testimonial-arrow.right {
  right: 12px;
}

.testimonial-arrow:hover {
  background: var(--gold, #c5a46d);
  color: #fff;
}

.testimonial-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

/* accessibility focus */
.testimonial-arrow:focus {
  outline: 3px solid rgba(197, 164, 109, 0.25);
}


/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.content-column {
  max-width: none;
}

.content-text p {
  margin-bottom: 1.5rem;
  color: var(--gray);
  line-height: 1.6;
}

.image-column {
  position: relative;
}

.image-container {
  position: relative;
}

.main-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: var(--shadow-floating);
}

.decoration-1 {
  position: absolute;
  width: 8rem;
  height: 8rem;
  background-color: var(--gold);
  opacity: 0.2;
  border-radius: 1rem;
  bottom: -1.5rem;
  right: -1.5rem;
  z-index: -1;
}

.decoration-2 {
  position: absolute;
  width: 6rem;
  height: 6rem;
  background-color: var(--navy);
  opacity: 0.1;
  border-radius: 1rem;
  top: -1.5rem;
  left: -1.5rem;
  z-index: -1;
}

/* Centered Content */
.centered-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

/* Vision Card */
.vision-card {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.vision-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 2rem;
}

.vision-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray);
}

/* Commitment Card */
.commitment-card {
  background: var(--navy);
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}

.commitment-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.commitment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-content {
  position: relative;
  z-index: 10;
  padding: 3rem;
  text-align: center;
}

.commitment-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(195, 157, 96, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 2rem;
}

.commitment-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.benefit-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.benefit-content h4 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: var(--gray);
  margin: 0;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  text-align: center;
}

.process-number {
  width: 5rem;
  height: 5rem;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1.5rem;
}

/* Team Components */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
}

.team-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.team-profile {
  text-align: center;
  margin-bottom: 2rem;
}

.team-avatar {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.team-avatar img {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-elevated);
}

.star-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 2rem;
  height: 2rem;
  background-color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.team-name {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.qualifications {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.experience {
  color: var(--gray);
  font-weight: 500;
}

.team-bio {
  margin-bottom: 2rem;
  text-align: left;
}

.team-bio p {
  color: var(--gray);
  line-height: 1.6;
}

.team-expertise {
  margin-bottom: 2rem;
  text-align: left;
}

.team-expertise h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.expertise-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-item {
  display: flex;
  align-items: center;
  padding: 12px;
  background-color: var(--off-white);
  border-radius: 12px;
}

.expertise-item span:last-child {
  color: var(--navy);
  font-weight: 500;
  margin-left: 16px;
}

.team-contact {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-gray);
}

.social-btn {
  width: 3rem;
  height: 3rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  background-color: var(--gold);
  color: white;
}

/* Team Values Grid */
.team-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-value-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
}

.team-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-floating);
}

.team-value-card .feature-icon {
  margin-bottom: 1.5rem;
}

.team-value-card:hover .feature-icon {
  background-color: var(--gold);
  color: white;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
  font-size: 0.875rem;
}

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

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

.article-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  transition: var(--transition);
  /*cursor: pointer;*/
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-floating);
}

.article-card.simple {
  padding: 2rem;
  overflow: visible;
}

.article-image {
  height: 16rem;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--gold);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.article-category.small {
  background: rgba(195, 157, 96, 0.1);
  color: var(--gold);
  position: static;
  display: inline-block;
  margin: 0;
}

.article-content {
  padding: 2rem;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.article-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}

.article-card:hover .article-icon {
  background-color: var(--gold);
  color: white;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.simple-article-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-title {
  color: var(--navy);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: var(--transition);
}

.article-card:hover .article-title {
  color: var(--gold);
}

.article-card.simple .article-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.article-description {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.875rem;
}

.read-more {
  display: flex;
  align-items: center;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.article-card:hover .read-more {
  color: var(--navy);
}

.read-more svg {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.article-card:hover .read-more svg {
  transform: translateX(4px);
}

/* Newsletter */
.newsletter-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(195, 157, 96, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 24rem;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-family: 'Open Sans', sans-serif;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.insight-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 2rem;
}

/* Contact Components */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-form-section {
  background-color: var(--off-white);
  border-radius: 1rem;
  padding: 2.5rem;
}

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

.form-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.form-description {
  color: var(--gray);
  margin-bottom: 0;
}

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

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

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

.form-group label {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  background-color: white;
  font-family: 'Open Sans', sans-serif;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-submit {
  align-self: stretch;
}

.contact-info-section {
  /* Contact info styles */
}

.info-header {
  margin-bottom: 2.5rem;
}

.info-description {
  color: var(--gray);
  line-height: 1.6;
}

.contact-info {
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background-color: var(--gold);
  color: white;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-details h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.contact-details small {
  color: var(--gray);
  font-size: 0.875rem;
}

.business-hours {
  background-color: var(--off-white);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.business-hours-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.hours-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(195, 157, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-right: 1rem;
}

.business-hours h3 {
  color: var(--navy);
  font-size: 1.125rem;
  margin: 0;
}

.hours-content p {
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.download-cta {
  background-color: var(--navy);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  color: white;
}

.download-cta h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.download-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.map-placeholder {
  height: 24rem;
  background-color: var(--light-gray);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-content {
  color: var(--gray);
}

.map-content svg {
  margin-bottom: 1rem;
}

.map-content h3 {
  color: var(--gray);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.map-content p {
  color: var(--gray);
  font-size: 0.875rem;
}

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

.faq-item {
  background-color: var(--off-white);
  border-radius: 1rem;
  padding: 2rem;
}

.faq-item h3 {
  color: var(--navy);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background-color: var(--navy);
  color: white;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta-quote {
  font-size: 2.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: white;
}

.cta-title {
  font-size: 2.25rem;
  color: white;
  margin-bottom: 2rem;
}

.cta-text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 2rem;
  color: white;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Footer */
.footer {
  background-color: var(--navy);
  color: white;
}

.footer-main {
  padding: 4rem 0;
}

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

.footer-column h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
}

.footer-logo .logo-icon {
  width: 3rem;
  height: 3rem;
}

.footer-logo .logo-text h3 {
  color: white;
  font-size: 1.125rem;
  margin: 0;
}

.footer-logo .logo-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-services {
  list-style: none;
  padding: 0;
}

.footer-services li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.footer-contact {
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-detail svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.social-links h5 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--gold);
  color: white;
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.copyright span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition);
}

.legal-links a:hover {
  color: var(--gold);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.heart {
  color: var(--gold);
}

/* Toast System */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-floating);
  padding: 1rem 1.5rem;
  min-width: 300px;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideInRight 0.3s ease-out;
}

.toast.success {
  border-left: 4px solid #10b981;
}

.toast.error {
  border-left: 4px solid #ef4444;
}

.toast.info {
  border-left: 4px solid #3b82f6;
}

.toast-content h4 {
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
}

.toast-content p {
  color: var(--gray);
  font-size: 0.75rem;
  margin: 0;
}

.toast-close {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  margin-left: auto;
}

.testimonial-inner-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: row;
  }

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

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .copyright {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .nav-cta {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .two-column-layout {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1.1;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .cta-quote,
  .cta-title {
    font-size: 1.875rem;
  }

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1rem;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.15;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .cta-quote,
  .cta-title {
    font-size: 1.5rem;
  }

  .detailed-services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .services-grid,
  .articles-grid,
  .simple-articles-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .stats-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .service-card,
  .detailed-service-card,
  .team-card {
    padding: 1.5rem;
  }

  .contact-form-section {
    padding: 1.5rem;
  }

  .article-card.simple {
  pointer-events: none;
  cursor: default;
}

/* Re-enable only links/buttons inside the card (if any now or later) */
.article-card.simple a,
.article-card.simple button,
.article-card.simple [role="button"] {
  pointer-events: auto;
  cursor: pointer;
}

    .article-card.simple:hover {
        transform: none !important;
        box-shadow: none !important;
    }

}