/* ============================================
   SPECTRA FLOW - WARM & FRIENDLY CSS STYLES
   Design Style: Warm, approachable, professional
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
  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: #2C2C2C;
  background-color: #FFF8F0;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1D3F5F;
  margin-bottom: 16px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

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

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

a:hover {
  color: #B87300;
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

strong {
  font-weight: 600;
  color: #1D3F5F;
}

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

section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(29, 63, 95, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #1D3F5F;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
}

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

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

.cta-button {
  background: linear-gradient(135deg, #D68A00 0%, #F4A623 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(214, 138, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, #F4A623 0%, #D68A00 100%);
  box-shadow: 0 6px 16px rgba(214, 138, 0, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background-color: #D68A00;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 12px rgba(214, 138, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #1D3F5F;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #1D3F5F;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.mobile-nav a:hover {
  background-color: #FFF8F0;
  color: #D68A00;
  transform: translateX(8px);
  text-decoration: none;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #D68A00 0%, #F4A623 100%);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(214, 138, 0, 0.25);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4A623 0%, #D68A00 100%);
  box-shadow: 0 6px 16px rgba(214, 138, 0, 0.35);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background-color: #FFFFFF;
  color: #1D3F5F;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: 2px solid #D68A00;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #D68A00;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 138, 0, 0.2);
  text-decoration: none;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50px 50px;
  margin-bottom: 60px;
}

.hero h1 {
  color: #1D3F5F;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.trust-badges span {
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1D3F5F;
  box-shadow: 0 2px 8px rgba(29, 63, 95, 0.1);
}

/* ===== VALUE PROPOSITION ===== */
.value-proposition {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

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

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  min-width: 220px;
  padding: 24px;
  background-color: #FFF8F0;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.15);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.value-item h3 {
  color: #1D3F5F;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: #4A4A4A;
  font-size: 15px;
  margin-bottom: 0;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A4A4A;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 300px;
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.2);
}

.service-card h3 {
  color: #1D3F5F;
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card .price {
  color: #D68A00;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
  flex-grow: 1;
}

.services-overview > .container > .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ===== PROCESS STEPS ===== */
.process {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.process h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 24px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #D68A00 0%, #F4A623 100%);
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(214, 138, 0, 0.3);
}

.step h3 {
  color: #1D3F5F;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: #4A4A4A;
  font-size: 15px;
  margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 60px 20px;
}

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

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

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 4px solid #D68A00;
}

.testimonial-card p {
  color: #2C2C2C;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card cite {
  color: #1D3F5F;
  font-weight: 600;
  font-style: normal;
  font-size: 15px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #D68A00 0%, #F4A623 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.3);
  margin: 60px 20px;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #a56c04;
}

.cta-banner .btn-primary:hover {
  background-color: #FFF8F0;
  color: #1D3F5F;
}

.cta-info {
  margin-top: 20px;
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.9;
}

/* ===== STATS ===== */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin: 40px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D68A00;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
}

/* ===== STORY SECTION ===== */
.story {
  padding: 60px 20px;
}

.story h2 {
  color: #1D3F5F;
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.8;
  color: #4A4A4A;
}

/* ===== MISSION VISION ===== */
.mission-vision {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.mission, .vision {
  flex: 1 1 400px;
  min-width: 300px;
  padding: 32px;
  background-color: #FFF8F0;
  border-radius: 20px;
}

.mission h2, .vision h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
  font-size: 28px;
}

.mission p, .vision p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== VALUES ===== */
.values {
  padding: 60px 20px;
}

.values h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

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

.value-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 250px;
  min-width: 240px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.2);
}

.value-card h3 {
  color: #1D3F5F;
  margin-bottom: 12px;
  font-size: 20px;
}

.value-card p {
  color: #4A4A4A;
  font-size: 15px;
  margin-bottom: 0;
}

/* ===== TEAM ===== */
.team {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.team h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 16px;
}

.team > .container > p {
  text-align: center;
  color: #4A4A4A;
  margin-bottom: 48px;
  font-size: 18px;
}

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

.team-member {
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 250px;
  min-width: 240px;
  text-align: center;
}

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

.team-member .role {
  color: #D68A00;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

.team-member p {
  color: #4A4A4A;
  font-size: 15px;
  margin-bottom: 0;
}

/* ===== CERTIFICATIONS ===== */
.certifications {
  padding: 60px 20px;
}

.certifications h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 32px;
}

.cert-list {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.cert-list li {
  background-color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(29, 63, 95, 0.08);
  color: #4A4A4A;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #D68A00;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== SERVICES DETAILED ===== */
.services-detailed {
  padding: 60px 20px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  margin-bottom: 32px;
}

.service-detail h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.service-detail .price {
  color: #D68A00;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.service-detail p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background-color: #FFF8F0;
  padding: 60px 20px;
  border-radius: 30px;
}

.guarantee h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 32px;
}

.guarantee ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.guarantee li {
  background-color: #FFFFFF;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(29, 63, 95, 0.08);
  color: #4A4A4A;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.guarantee li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #D68A00;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== PORTFOLIO ===== */
.portfolio-intro {
  padding: 60px 20px;
  text-align: center;
}

.portfolio-intro h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.portfolio-intro p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A4A4A;
}

.portfolio-featured {
  padding: 60px 20px;
}

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

.project-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  margin-bottom: 32px;
}

.project-card h3 {
  color: #1D3F5F;
  margin-bottom: 12px;
  font-size: 24px;
}

.project-card .client {
  color: #D68A00;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 16px;
}

.project-card p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.project-card .testimonial {
  background-color: #FFF8F0;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #D68A00;
  font-style: italic;
  color: #2C2C2C;
}

/* ===== RESULTS METRICS ===== */
.results-metrics {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.results-metrics h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  min-width: 180px;
  padding: 24px;
  background-color: #FFF8F0;
  border-radius: 20px;
}

.metric-value {
  font-size: 56px;
  font-weight: 700;
  color: #D68A00;
  margin-bottom: 12px;
}

.metric span:last-child {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
}

/* ===== CONSULTATION ===== */
.consultation-intro {
  padding: 60px 20px;
  text-align: center;
}

.consultation-intro h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.consultation-intro p {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: #4A4A4A;
}

.benefits-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  padding: 0;
}

.benefits-list li {
  background-color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(29, 63, 95, 0.08);
  color: #4A4A4A;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefits-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #D68A00;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== CONSULTATION TYPES ===== */
.consultation-types {
  padding: 60px 20px;
}

.consultation-types h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

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

.type-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 300px;
  min-width: 280px;
  transition: all 0.3s ease;
}

.type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.2);
}

.type-card h3 {
  color: #1D3F5F;
  margin-bottom: 12px;
  font-size: 22px;
}

.type-card .price {
  color: #D68A00;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.type-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ===== CONSULTATION PROCESS ===== */
.consultation-process {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.consultation-process h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

/* ===== CONTACT METHODS ===== */
.contact-methods {
  padding: 60px 20px;
}

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

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

.method-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 300px;
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.2);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

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

.method-card p {
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 60px 20px;
}

.contact-form-section h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  color: #4A4A4A;
  margin-bottom: 32px;
  font-size: 18px;
}

.form-notice {
  max-width: 800px;
  margin: 0 auto;
  background-color: #FFF8F0;
  padding: 32px;
  border-radius: 20px;
  border-left: 4px solid #D68A00;
}

.form-notice p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.form-notice a {
  color: #D68A00;
  font-weight: 600;
}

.form-notice ul {
  margin-top: 16px;
}

.form-notice li {
  color: #4A4A4A;
  font-size: 15px;
}

/* ===== SHOWROOM INFO ===== */
.showroom-info {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.showroom-info h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.showroom-info p {
  color: #4A4A4A;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.showroom-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.showroom-info li {
  background-color: #FFF8F0;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #4A4A4A;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showroom-info li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #D68A00;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== BUSINESS HOURS ===== */
.business-hours {
  padding: 60px 20px;
}

.business-hours h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

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

.hours-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 350px;
  min-width: 300px;
  text-align: center;
}

.hours-card h3 {
  color: #1D3F5F;
  margin-bottom: 16px;
  font-size: 22px;
}

.hours-card p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.legal-hero p {
  color: #4A4A4A;
  font-size: 18px;
  margin-bottom: 8px;
}

.legal-content {
  padding: 40px 20px;
}

.legal-content h2 {
  color: #1D3F5F;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  color: #1D3F5F;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  color: #4A4A4A;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFE8D6 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  margin-bottom: 40px;
}

.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #D68A00;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(214, 138, 0, 0.3);
}

.thank-you-hero h1 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.thank-you-hero .hero-subtitle {
  color: #4A4A4A;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ===== CONFIRMATION DETAILS ===== */
.confirmation-details {
  padding: 60px 20px;
}

.confirmation-details h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.confirmation-details .step {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 220px;
  min-width: 200px;
}

.note {
  text-align: center;
  color: #4A4A4A;
  font-size: 14px;
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== NEXT STEPS ===== */
.next-steps {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.next-steps h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.next-steps p {
  color: #4A4A4A;
  font-size: 17px;
  margin-bottom: 24px;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  background-color: #FFF8F0;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #4A4A4A;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.next-steps li::before {
  content: '→';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: #D68A00;
  color: #FFFFFF;
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== USEFUL RESOURCES ===== */
.useful-resources {
  padding: 60px 20px;
}

.useful-resources h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

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

.resource-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(29, 63, 95, 0.1);
  flex: 1 1 300px;
  min-width: 280px;
  transition: all 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(214, 138, 0, 0.2);
}

.resource-card h3 {
  color: #1D3F5F;
  margin-bottom: 12px;
  font-size: 22px;
}

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

.resource-card a {
  color: #D68A00;
  font-weight: 600;
  text-decoration: none;
}

.resource-card a:hover {
  color: #B87300;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(29, 63, 95, 0.08);
}

.social-proof h2 {
  text-align: center;
  color: #1D3F5F;
  margin-bottom: 48px;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  min-width: 180px;
}

.stat span:first-child {
  font-size: 56px;
  font-weight: 700;
  color: #D68A00;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #4A4A4A;
  font-weight: 500;
  margin-bottom: 0;
}

/* ===== CONTACT REMINDER ===== */
.contact-reminder {
  padding: 60px 20px;
  text-align: center;
}

.contact-reminder h2 {
  color: #1D3F5F;
  margin-bottom: 16px;
}

.contact-reminder p {
  color: #4A4A4A;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
footer {
  background-color: #1D3F5F;
  color: #FFFFFF;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #F4A623;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #E0E0E0;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #E0E0E0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #F4A623;
  padding-left: 4px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #E0E0E0;
  font-size: 14px;
  margin: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 20px rgba(29, 63, 95, 0.15);
  padding: 24px 20px;
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 300px;
  color: #4A4A4A;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-consent-text a {
  color: #D68A00;
  font-weight: 600;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D68A00 0%, #F4A623 100%);
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #F4A623 0%, #D68A00 100%);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background-color: transparent;
  color: #1D3F5F;
  border: 2px solid #1D3F5F;
}

.cookie-btn-reject:hover {
  background-color: #1D3F5F;
  color: #FFFFFF;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #D68A00;
  border: 2px solid #D68A00;
}

.cookie-btn-settings:hover {
  background-color: #D68A00;
  color: #FFFFFF;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(29, 63, 95, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: #1D3F5F;
  margin: 0;
  font-size: 24px;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #4A4A4A;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

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

.cookie-category {
  background-color: #FFF8F0;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  color: #1D3F5F;
  margin: 0;
  font-size: 18px;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #D68A00;
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(24px);
}

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

.cookie-category p {
  color: #4A4A4A;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  section {
    padding: 30px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .value-grid,
  .services-grid,
  .process-steps,
  .testimonial-grid,
  .mission-vision-grid,
  .values-grid,
  .team-grid,
  .types-grid,
  .methods-grid,
  .hours-grid,
  .resources-grid,
  .stats-grid,
  .metrics-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .step,
  .testimonial-card,
  .mission,
  .vision,
  .value-card,
  .team-member,
  .type-card,
  .method-card,
  .hours-card,
  .resource-card {
    min-width: 100%;
  }
  
  .stat-number,
  .metric-value {
    font-size: 40px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .hero {
    padding: 40px 16px;
    border-radius: 0 0 30px 30px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .service-card,
  .project-card,
  .service-detail {
    padding: 24px;
  }
  
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .stat-number,
  .metric-value {
    font-size: 36px;
  }
}

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

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

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

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

*:focus-visible {
  outline: 3px solid #D68A00;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}