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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2D4059;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* Luxury Premium Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #4A4A4A;
}

a {
  color: #9A3620;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C84B31;
}

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

ul {
  list-style: none;
}

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

/* Header - Luxury Premium Style */
header {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D4059 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #D4AF37;
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 80%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #D4AF37;
  border: none;
  color: #1A1A1A;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #C9A052;
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #2D4059 100%);
  z-index: 1050;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D4AF37;
  border: none;
  color: #1A1A1A;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(212, 175, 55, 0.15);
  border-left-color: #D4AF37;
  color: #D4AF37;
  transform: translateX(5px);
}

/* Hero Section - Luxury Premium */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D4059 60%, #9A3620 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="%23D4AF37" opacity="0.05"/></svg>');
  background-size: 100px 100px;
  opacity: 0.3;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #ECDBBA;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-badges {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #D4AF37;
  letter-spacing: 0.5px;
}

/* Hero Small */
.hero-small {
  background: linear-gradient(135deg, #2D4059 0%, #1A1A1A 100%);
  color: #FFFFFF;
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.hero-small h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 16px;
}

.hero-small p {
  color: #ECDBBA;
  font-size: 18px;
  margin-bottom: 12px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ECDBBA;
}

.breadcrumb a {
  color: #D4AF37;
}

/* Buttons - Luxury Premium Style */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #C9A052 100%);
  color: #1A1A1A;
  border-color: #D4AF37;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C9A052 0%, #B8964A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #1A1A1A;
}

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

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #C9A052;
  color: #D4AF37;
  transform: translateY(-2px);
}

/* Section Spacing */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

/* USP Banner - Luxury Grid */
.usp-banner {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
  padding: 60px 20px;
}

.usp-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.usp-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  text-align: center;
  padding: 32px 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 3px solid #D4AF37;
}

.usp-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.usp-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: invert(36%) sepia(47%) saturate(947%) hue-rotate(334deg) brightness(85%) contrast(89%);
}

.usp-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

/* Services Overview */
.services-overview {
  background: #FFFFFF;
  text-align: center;
}

.services-overview h2 {
  margin-bottom: 16px;
}

.services-overview > p {
  font-size: 18px;
  color: #6A6A6A;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  max-width: 380px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid #E8E8E8;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37 0%, #C9A052 100%);
  border-radius: 12px 12px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  filter: invert(36%) sepia(47%) saturate(947%) hue-rotate(334deg) brightness(85%) contrast(89%);
}

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

.service-card p {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #9A3620;
  margin: 20px 0;
  font-family: 'Montserrat', serif;
}

.service-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* Process Steps - Luxury Timeline */
.process {
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
  text-align: center;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  padding: 24px 16px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A052 100%);
  color: #1A1A1A;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 16px;
  font-family: 'Montserrat', serif;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

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

.step p {
  font-size: 14px;
  color: #6A6A6A;
}

/* Testimonials - Premium Style */
.testimonials {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D4059 100%);
  color: #FFFFFF;
  text-align: center;
}

.testimonials h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;
  margin-bottom: 20px;
  border-left: 4px solid #D4AF37;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: #D4AF37;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.rating {
  color: #D4AF37;
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #2D4059;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0;
  font-style: italic;
}

.testimonial-card .project {
  font-size: 14px;
  color: #6A6A6A;
  margin-bottom: 12px;
}

.testimonial-card h3 {
  color: #1A1A1A;
  font-size: 18px;
  margin-bottom: 8px;
}

.trust-indicator,
.trust-badge {
  font-size: 16px;
  color: #D4AF37;
  font-weight: 600;
  margin-top: 32px;
}

/* Funding Teaser */
.funding-teaser {
  background: linear-gradient(135deg, #D4AF37 0%, #C9A052 100%);
  color: #1A1A1A;
  text-align: center;
}

.funding-teaser h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.funding-teaser p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #2D2D2D;
}

.funding-teaser ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}

.funding-teaser li {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  min-width: 250px;
}

/* CTA Section - Premium */
.cta-section {
  background: linear-gradient(135deg, #2D4059 0%, #1A1A1A 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 42px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #ECDBBA;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.additional-info,
.urgency {
  font-size: 14px;
  color: #D4AF37;
  margin-top: 24px;
}

/* Services Detailed */
.services-detailed {
  background: #FFFFFF;
}

.service-detail {
  background: #FAFAFA;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
}

.service-detail img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: invert(36%) sepia(47%) saturate(947%) hue-rotate(334deg) brightness(85%) contrast(89%);
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin: 24px 0;
}

.service-detail li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.service-detail li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.service-detail .price {
  font-size: 32px;
  font-weight: 700;
  color: #9A3620;
  margin: 24px 0;
  font-family: 'Montserrat', serif;
}

/* FAQ */
.faq {
  background: #F5F5F5;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 3px solid #D4AF37;
}

.faq-item h3 {
  color: #1A1A1A;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4A4A4A;
  line-height: 1.6;
}

/* Company Story */
.company-story {
  background: #FFFFFF;
}

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

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  text-align: center;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.milestone span {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 12px;
  font-family: 'Montserrat', serif;
}

.milestone p {
  font-size: 16px;
  color: #2D4059;
  margin: 0;
}

/* Mission Vision */
.mission-vision {
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
}

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

.content-grid > div {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
}

.values {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.values h3 {
  text-align: center;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.values li {
  padding: 16px 16px 16px 48px;
  position: relative;
  background: #F5F5F5;
  border-radius: 8px;
  border-left: 3px solid #D4AF37;
}

.values li::before {
  content: '◆';
  position: absolute;
  left: 16px;
  color: #D4AF37;
  font-size: 18px;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, #2D4059 0%, #1A1A1A 100%);
  color: #FFFFFF;
  text-align: center;
}

.stats h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 2px solid #D4AF37;
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.stat-number,
.stat span {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 12px;
  font-family: 'Montserrat', serif;
}

.stat p {
  font-size: 16px;
  color: #ECDBBA;
  margin: 0;
}

/* Certifications */
.certifications {
  background: #FFFFFF;
  text-align: center;
}

.certifications h2 {
  margin-bottom: 32px;
}

.certifications ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.certifications li {
  padding: 16px 16px 16px 48px;
  background: #F5F5F5;
  border-radius: 8px;
  text-align: left;
  position: relative;
  border-left: 3px solid #D4AF37;
}

.certifications li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

.certifications p {
  max-width: 600px;
  margin: 32px auto 0;
  font-size: 16px;
  font-weight: 600;
  color: #9A3620;
}

/* Testimonials Featured */
.testimonials-featured {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D4059 100%);
  color: #FFFFFF;
}

.testimonials-featured h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

/* Projects */
.projects {
  background: #F5F5F5;
}

.projects h2 {
  text-align: center;
  margin-bottom: 40px;
}

.project-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #D4AF37;
}

.project-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.project-card p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Funding Overview */
.funding-overview {
  background: #FFFFFF;
}

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

.funding-overview > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
}

.funding-programs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.program-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #D4AF37;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.program-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.program-card .amount {
  font-size: 24px;
  font-weight: 700;
  color: #9A3620;
  margin-top: 20px;
  font-family: 'Montserrat', serif;
}

/* Case Studies */
.case-studies {
  background: #F5F5F5;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 40px;
}

.case-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #D4AF37;
}

.case-card h3 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.case-card ul {
  margin: 24px 0;
}

.case-card li {
  padding: 12px 0 12px 32px;
  position: relative;
}

.case-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.highlight {
  background: linear-gradient(135deg, #D4AF37 0%, #C9A052 100%);
  color: #1A1A1A;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Contact Options */
.contact-options {
  background: #F5F5F5;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  max-width: 350px;
  text-align: center;
  padding: 40px 24px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.25);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  filter: invert(36%) sepia(47%) saturate(947%) hue-rotate(334deg) brightness(85%) contrast(89%);
}

.contact-option h3 {
  margin-bottom: 16px;
}

.contact-option .phone,
.contact-option .email {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
}

.contact-option .phone a,
.contact-option .email a {
  color: #9A3620;
}

/* Location Info */
.location-info {
  background: #FFFFFF;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.address-block,
.hours-block {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  padding: 32px;
  background: #F5F5F5;
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
}

.address-block h3,
.hours-block h3,
.address-block h4 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

/* Emergency Section */
.emergency-section {
  background: linear-gradient(135deg, #9A3620 0%, #C84B31 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
}

.emergency-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.emergency-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

.emergency-phone {
  margin: 32px 0;
}

.emergency-phone a {
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 20px 40px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: inline-block;
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
}

.emergency-phone a:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

/* Thank You Page */
.thank-you {
  background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4AF37 0%, #C9A052 100%);
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.next-steps {
  max-width: 600px;
  margin: 48px auto;
  text-align: left;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #D4AF37;
}

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

.next-steps ol {
  counter-reset: step-counter;
  list-style: none;
  margin: 24px 0;
}

.next-steps li {
  counter-increment: step-counter;
  padding: 12px 0 12px 48px;
  position: relative;
  margin-bottom: 16px;
}

.next-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  background: #D4AF37;
  color: #1A1A1A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.emergency {
  margin-top: 24px;
  padding: 16px;
  background: #FFF3E0;
  border-radius: 8px;
  border-left: 4px solid #9A3620;
}

/* Useful Links */
.useful-links {
  background: #FFFFFF;
}

.useful-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  max-width: 350px;
  padding: 24px;
  background: #F5F5F5;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 3px solid #D4AF37;
}

.link-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

.link-card h3 a {
  color: #1A1A1A;
}

.link-card p {
  font-size: 14px;
  color: #6A6A6A;
}

/* Contact Confirmation */
.contact-confirmation {
  background: #F5F5F5;
  text-align: center;
}

.contact-confirmation h2 {
  margin-bottom: 24px;
}

.contact-confirmation p {
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Return Nav */
.return-nav {
  background: #FFFFFF;
  text-align: center;
  padding: 40px 20px;
}

/* Legal Content */
.legal-content {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  margin: 16px 0 16px 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
  list-style: disc;
}

.legal-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid #E8E8E8;
  text-align: center;
}

.legal-links a {
  margin: 0 12px;
  font-weight: 600;
}

/* Footer - Luxury Premium */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D4059 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 3px solid #D4AF37;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-section h3,
.footer-section h4 {
  color: #D4AF37;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #ECDBBA;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-section li a {
  color: #ECDBBA;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 16px;
  position: relative;
}

.footer-section li a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

.footer-section li a:hover {
  color: #D4AF37;
  padding-left: 20px;
}

.footer-section a {
  color: #D4AF37;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  color: #ECDBBA;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D4059 100%);
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 3px solid #D4AF37;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
  color: #ECDBBA;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #D4AF37;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #D4AF37;
  border: none;
  color: #1A1A1A;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C9A052;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 3px solid #D4AF37;
}

.cookie-category h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #CCC;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle.active {
  background: #D4AF37;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: block;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

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

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .usp-item {
    flex: 1 1 100%;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .program-card {
    flex: 1 1 100%;
  }

  .contact-option {
    flex: 1 1 100%;
  }

  .stat {
    flex: 1 1 calc(50% - 32px);
  }

  .milestone {
    flex: 1 1 calc(50% - 24px);
  }

  .content-grid > div {
    flex: 1 1 100%;
  }

  .location-content {
    flex-direction: column;
  }

  .address-block,
  .hours-block {
    flex: 1 1 100%;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1 1 100%;
  }

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

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

  section {
    padding: 40px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .cta-section {
    padding: 60px 20px;
  }

  .service-detail {
    padding: 24px;
  }

  .emergency-phone a {
    font-size: 28px;
    padding: 16px 24px;
  }
}

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

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .stat {
    flex: 1 1 100%;
  }

  .milestone {
    flex: 1 1 100%;
  }

  .link-card {
    flex: 1 1 100%;
  }
}

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

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

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

/* Focus Styles */
*:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}