/* ============================================
   AURIC TREK - MONOCHROME SOPHISTICATED DESIGN
   Luxury Automotive Investment Excellence
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.lead {
  font-size: 20px;
  line-height: 1.8;
  color: #333333;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 80px;
  padding: 60px 0;
}

/* HEADER */
header {
  background-color: #1A1A1A;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F5F5F5;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.main-nav a:hover {
  color: #C9A961;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background-color: #1A1A1A;
  color: #F5F5F5;
  font-size: 28px;
  padding: 10px 16px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #C9A961;
  color: #1A1A1A;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background-color: #1A1A1A;
  z-index: 2000;
  padding: 80px 40px 40px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #F5F5F5;
  font-size: 32px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C9A961;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  color: #F5F5F5;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C9A961;
  padding-left: 12px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(201, 169, 97, 0.03) 25%, transparent 25%, transparent 75%, rgba(201, 169, 97, 0.03) 75%), linear-gradient(45deg, rgba(201, 169, 97, 0.03) 25%, transparent 25%, transparent 75%, rgba(201, 169, 97, 0.03) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  color: #F5F5F5;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  color: #E5E5E5;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.key-stat,
.featured-stat {
  font-size: 18px;
  color: #C9A961;
  font-weight: 600;
  padding: 16px 24px;
  background-color: rgba(201, 169, 97, 0.1);
  border-left: 3px solid #C9A961;
  margin-top: 32px;
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.indicator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0;
  min-width: 200px;
}

.indicator-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #C9A961;
  line-height: 1;
}

.indicator-label {
  font-size: 14px;
  color: #D5D5D5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #C9A961;
  color: #1A1A1A;
  border: 2px solid #C9A961;
}

.btn-primary:hover {
  background-color: transparent;
  color: #C9A961;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

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

.btn-secondary:hover {
  background-color: #F5F5F5;
  color: #1A1A1A;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 245, 245, 0.3);
}

/* GRIDS - FLEXBOX ONLY */
.value-grid,
.services-grid,
.insights-grid,
.differentiators-grid,
.benefits-grid,
.metrics-grid,
.fundamentals-grid,
.methods-grid,
.locations-grid,
.resources-grid,
.steps-grid,
.values-grid,
.team-grid,
.vehicles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-left: 4px solid #1A1A1A;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-left-color: #C9A961;
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-item p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* SERVICES OVERVIEW & CARDS */
.services-overview {
  padding: 80px 0;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #C9A961;
  transition: width 0.3s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  border-color: #1A1A1A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-price,
.service-investment {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #C9A961;
  margin-top: 24px;
  margin-bottom: 0;
}

/* SECTION CTA */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* MARKET INSIGHTS */
.market-insights {
  background-color: #1A1A1A;
  padding: 80px 0;
  color: #F5F5F5;
}

.market-insights h2 {
  color: #F5F5F5;
  text-align: center;
  margin-bottom: 48px;
}

.insight-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.insight-card:hover {
  background-color: rgba(201, 169, 97, 0.1);
  border-color: #C9A961;
  transform: translateY(-4px);
}

.insight-card p {
  color: #E5E5E5;
  font-size: 16px;
  margin-bottom: 0;
}

/* PROCESS STEPS */
.process {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.process h2 {
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px;
  background-color: #FFFFFF;
  border-left: 4px solid #E5E5E5;
  transition: all 0.3s ease;
}

.step:hover {
  border-left-color: #C9A961;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #E5E5E5;
  line-height: 1;
  min-width: 80px;
}

.step:hover .step-number {
  color: #C9A961;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  margin-bottom: 0;
}

/* WHY CHOOSE / DIFFERENTIATORS */
.why-choose {
  padding: 80px 0;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 48px;
}

.differentiator {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 40px;
  background-color: #F9F9F9;
  border-top: 3px solid #1A1A1A;
  transition: all 0.3s ease;
}

.differentiator:hover {
  border-top-color: #C9A961;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.differentiator h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background-color: #F5F5F5;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(201, 169, 97, 0.2);
  line-height: 1;
}

.testimonial-card:hover {
  border-color: #C9A961;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: #2A2A2A;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.testimonial-location {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, rgba(201, 169, 97, 0.05) 25%, transparent 25%, transparent 75%, rgba(201, 169, 97, 0.05) 75%), linear-gradient(45deg, rgba(201, 169, 97, 0.05) 25%, transparent 25%, transparent 75%, rgba(201, 169, 97, 0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 30px;
}

.cta-banner h2 {
  color: #F5F5F5;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: #E5E5E5;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* MISSION VISION */
.mission-vision {
  padding: 80px 0;
  background-color: #F9F9F9;
}

.mission-vision-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 48px;
  background-color: #FFFFFF;
  border-top: 4px solid #C9A961;
}

.values {
  margin-top: 60px;
}

.values h3 {
  text-align: center;
  margin-bottom: 32px;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

.value-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #C9A961;
}

/* COMPANY STORY */
.company-story {
  padding: 80px 0;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story > .container > p {
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background-color: #F9F9F9;
  border-bottom: 3px solid #E5E5E5;
  transition: all 0.3s ease;
}

.milestone:hover {
  border-bottom-color: #C9A961;
  transform: translateY(-4px);
}

.milestone .year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: #C9A961;
  margin-bottom: 16px;
}

.milestone p {
  font-size: 14px;
  margin-bottom: 0;
}

/* TEAM */
.team {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 24px;
}

.team > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 1px solid #E5E5E5;
  transition: all 0.3s ease;
}

.team-member:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.position {
  font-weight: 600;
  color: #C9A961;
  margin-bottom: 12px;
}

.credentials {
  font-size: 14px;
  color: #666666;
  margin-bottom: 0;
}

/* PERFORMANCE METRICS */
.performance-metrics {
  padding: 80px 0;
}

.performance-metrics h2 {
  text-align: center;
  margin-bottom: 48px;
}

.metric {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 40px 20px;
  background-color: #F9F9F9;
  border-top: 3px solid #1A1A1A;
  transition: all 0.3s ease;
}

.metric:hover {
  border-top-color: #C9A961;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.metric-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
  line-height: 1;
}

.metric-label,
.metric p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666666;
  margin-bottom: 0;
}

.metric-change {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #C9A961;
  margin-top: 8px;
}

/* SERVICES DETAIL */
.services-detail {
  padding: 80px 0;
}

.service-block {
  margin-bottom: 60px;
  padding: 48px;
  background-color: #F9F9F9;
  border-left: 4px solid #1A1A1A;
  transition: all 0.3s ease;
}

.service-block:hover {
  border-left-color: #C9A961;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.service-block ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-block li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* PORTFOLIO */
.portfolio-featured {
  padding: 80px 0;
}

.portfolio-featured h2 {
  text-align: center;
  margin-bottom: 48px;
}

.vehicle-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #C9A961;
  transition: height 0.3s ease;
}

.vehicle-card:hover::before {
  height: 100%;
}

.vehicle-card:hover {
  border-color: #1A1A1A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vehicle-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.vehicle-price {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #C9A961;
  margin-bottom: 20px;
}

.vehicle-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.vehicle-card li {
  margin-bottom: 8px;
  font-size: 15px;
}

.investment-case {
  padding: 20px;
  background-color: #F9F9F9;
  border-left: 3px solid #C9A961;
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.status {
  display: inline-block;
  padding: 8px 16px;
  background-color: #1A1A1A;
  color: #F5F5F5;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* MARKET ANALYSIS */
.market-analysis {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.market-analysis h2 {
  text-align: center;
  margin-bottom: 32px;
}

.market-analysis p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

/* INSIGHTS */
.featured-article {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.featured-article h2 {
  margin-bottom: 16px;
}

.article-meta {
  color: #666666;
  font-size: 14px;
  margin-bottom: 24px;
}

.featured-article ul {
  margin: 24px 0;
  padding-left: 20px;
}

.featured-article li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.articles-grid {
  padding: 80px 0;
}

.articles-grid h2 {
  text-align: center;
  margin-bottom: 48px;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  padding: 32px;
  background-color: #F9F9F9;
  border-top: 3px solid #E5E5E5;
  transition: all 0.3s ease;
}

.article-card:hover {
  border-top-color: #C9A961;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* MARKET DATA */
.market-data {
  background-color: #1A1A1A;
  padding: 80px 0;
  color: #F5F5F5;
}

.market-data h2 {
  color: #F5F5F5;
  text-align: center;
  margin-bottom: 48px;
}

.market-data .metric {
  background-color: rgba(255, 255, 255, 0.05);
  border-top-color: #C9A961;
}

.market-data .metric:hover {
  background-color: rgba(201, 169, 97, 0.1);
}

.market-data .metric-value {
  color: #F5F5F5;
}

.market-data .metric-label {
  color: #D5D5D5;
}

/* INVESTMENT BENEFITS */
.investment-benefits {
  padding: 80px 0;
  background-color: #F9F9F9;
}

.investment-benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefit-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 40px;
  background-color: #FFFFFF;
  border-top: 4px solid #1A1A1A;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-top-color: #C9A961;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* COMPARISON TABLE */
.performance-comparison {
  padding: 80px 0;
}

.performance-comparison h2,
.performance-comparison h3 {
  text-align: center;
  margin-bottom: 32px;
}

.comparison-table {
  max-width: 800px;
  margin: 48px auto;
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid #E5E5E5;
  transition: background-color 0.3s ease;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:hover {
  background-color: #F9F9F9;
}

.asset-name {
  font-weight: 600;
  color: #1A1A1A;
}

.asset-return {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #C9A961;
}

.methodology-note {
  max-width: 800px;
  margin: 32px auto 0;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

/* MARKET FUNDAMENTALS */
.market-fundamentals {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.market-fundamentals h2 {
  text-align: center;
  margin-bottom: 48px;
}

.fundamental {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 40px;
  background-color: #FFFFFF;
  border-left: 4px solid #E5E5E5;
  transition: all 0.3s ease;
}

.fundamental:hover {
  border-left-color: #C9A961;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.fundamental h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* CONTACT */
.contact-methods {
  padding: 80px 0;
  background-color: #F9F9F9;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px;
  background-color: #FFFFFF;
  border-top: 3px solid #1A1A1A;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-top-color: #C9A961;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.method-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.method-detail {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
}

.method-card a {
  color: #C9A961;
  font-weight: 600;
}

.method-card a:hover {
  text-decoration: underline;
}

/* CONTACT INFO */
.contact-info {
  padding: 80px 0;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-info > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
}

.contact-notice {
  max-width: 700px;
  margin: 32px auto;
  padding: 24px;
  background-color: #F9F9F9;
  border-left: 4px solid #C9A961;
}

.contact-notice p {
  margin-bottom: 12px;
}

.contact-notice p:last-child {
  margin-bottom: 0;
}

.contact-notice a {
  color: #C9A961;
  font-weight: 600;
}

/* OFFICE LOCATIONS */
.office-locations {
  background-color: #F9F9F9;
  padding: 80px 0;
}

.office-locations h2 {
  text-align: center;
  margin-bottom: 48px;
}

.location-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px;
  background-color: #FFFFFF;
  border: 2px solid #E5E5E5;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: #C9A961;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.location-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #C9A961;
}

.location-card a {
  color: #1A1A1A;
  font-weight: 600;
}

.location-card a:hover {
  color: #C9A961;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 80px 0;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content a {
  color: #C9A961;
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

/* THANK YOU */
.thank-you-content {
  padding: 80px 0;
}

.thank-you-content h1 {
  text-align: center;
  margin-bottom: 24px;
}

.thank-you-content .lead {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}

.thank-you-content > .container > p {
  text-align: center;
  margin-bottom: 48px;
}

.next-steps {
  margin: 60px 0;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.business-hours-note {
  text-align: center;
  font-size: 14px;
  color: #666666;
  margin-top: 32px;
}

.resources {
  background-color: #F9F9F9;
  padding: 60px 40px;
  margin: 60px 0;
}

.resources h2 {
  text-align: center;
  margin-bottom: 24px;
}

.resources > p {
  text-align: center;
  margin-bottom: 40px;
}

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background-color: #FFFFFF;
  border-top: 3px solid #1A1A1A;
  text-align: center;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-top-color: #C9A961;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.resource-card .btn {
  margin-top: 16px;
}

.immediate-contact {
  text-align: center;
  padding: 40px;
  background-color: #1A1A1A;
  color: #F5F5F5;
  margin: 60px 0;
}

.immediate-contact h2 {
  color: #F5F5F5;
  margin-bottom: 24px;
}

.immediate-contact p {
  margin-bottom: 8px;
}

.immediate-contact a {
  color: #C9A961;
  font-weight: 600;
}

.testimonial-section {
  margin: 60px 0;
}

.cta-section {
  text-align: center;
  margin-top: 60px;
}

/* FOOTER */
footer {
  background-color: #1A1A1A;
  color: #E5E5E5;
  padding: 60px 0 24px;
}

.footer-content {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-column {
  flex: 1 1 calc(33.333% - 48px);
  min-width: 250px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #C9A961;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #D5D5D5;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C9A961;
  padding-left: 8px;
}

.footer-column a {
  color: #C9A961;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #D5D5D5;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #C9A961;
}

.copyright {
  font-size: 13px;
  color: #999999;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #F5F5F5;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent p {
  flex: 1 1 400px;
  margin-bottom: 0;
  font-size: 14px;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent .btn {
  padding: 12px 24px;
  font-size: 13px;
}

.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-settings-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  padding: 48px;
  border-radius: 4px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  color: #1A1A1A;
  font-size: 28px;
  padding: 8px;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #C9A961;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F9F9F9;
  border-left: 3px solid #E5E5E5;
}

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-toggle input[type="checkbox"] {
  width: 40px;
  height: 20px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666666;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Sections */
  .section {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 0;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 24px;
  }
  
  .indicator {
    min-width: 100%;
  }
  
  /* Grids */
  .value-item,
  .service-card,
  .insight-card,
  .differentiator,
  .testimonial-card,
  .benefit-card,
  .metric,
  .vehicle-card,
  .article-card,
  .method-card,
  .location-card,
  .resource-card,
  .fundamental,
  .team-member,
  .milestone,
  .mission,
  .vision {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Steps */
  .step {
    flex-direction: column;
    gap: 16px;
  }
  
  .step-number {
    min-width: auto;
  }
  
  /* Service Block */
  .service-block {
    padding: 32px 24px;
  }
  
  /* Comparison Table */
  .comparison-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-consent p {
    flex: 1 1 100%;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent .btn {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .differentiator,
  .benefit-card,
  .fundamental,
  .team-member,
  .vehicle-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .service-card,
  .insight-card,
  .article-card,
  .method-card,
  .location-card,
  .resource-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-settings-modal,
  header,
  footer,
  .cta-banner,
  .hero-cta {
    display: none !important;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

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

.section {
  animation: fadeIn 0.6s ease-out;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #C9A961;
  outline-offset: 2px;
}

/* Selection Color */
::selection {
  background-color: #C9A961;
  color: #1A1A1A;
}

::-moz-selection {
  background-color: #C9A961;
  color: #1A1A1A;
}