/* ===================================
   KINETIC GLIDE - MODERN BOLD DESIGN
   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', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

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

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

/* ===================================
   MODERN BOLD TYPOGRAPHY
   Strong, Impactful Fonts
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: #1D4129;
  margin-bottom: 20px;
}

h1 {
  font-size: 56px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

h3 {
  font-size: 28px;
  font-weight: 800;
}

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

/* ===================================
   CONTAINER & LAYOUT
   Flexbox-Based Structure
   =================================== */

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

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

/* ===================================
   HEADER - BOLD & PROMINENT
   =================================== */

header {
  background: linear-gradient(135deg, #1D4129 0%, #2D5F3F 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(29, 65, 41, 0.3);
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #D4811A;
  border-bottom-color: #D4811A;
  transform: translateY(-2px);
}

.header-cta {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===================================
   BUTTONS - BOLD & GEOMETRIC
   =================================== */

.btn-primary,
.btn-secondary,
.btn-small {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
  text-align: center;
  border: 3px solid transparent;
}

.btn-primary {
  background-color: #D4811A;
  color: #ffffff;
  border-color: #D4811A;
  box-shadow: 0 6px 20px rgba(212, 129, 26, 0.4);
}

.btn-primary:hover {
  background-color: #ffffff;
  color: #D4811A;
  border-color: #D4811A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 129, 26, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: #1D4129;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-small {
  padding: 12px 24px;
  font-size: 14px;
  background-color: #1D4129;
  color: #ffffff;
  border-color: #1D4129;
}

.btn-small:hover {
  background-color: #D4811A;
  border-color: #D4811A;
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU - SLIDE IN ANIMATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #D4811A;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  box-shadow: 0 4px 15px rgba(212, 129, 26, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1D4129;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1D4129 0%, #2D5F3F 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #ffffff;
  background-color: #D4811A;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #1D4129;
  transform: rotate(90deg);
}

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

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

.mobile-nav a:hover {
  background-color: #D4811A;
  padding-left: 30px;
  border-bottom-color: #ffffff;
}

/* ===================================
   HERO SECTION - BOLD & DRAMATIC
   =================================== */

.hero {
  background: linear-gradient(135deg, #1D4129 0%, #2D5F3F 50%, #D4811A 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  z-index: 1;
}

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

.hero h1 {
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-subheadline {
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 600;
  line-height: 1.5;
}

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

.trust-badge {
  display: inline-block;
  background-color: #D4811A;
  color: #ffffff;
  padding: 12px 30px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   BREADCRUMB NAVIGATION
   =================================== */

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #D4811A;
}

/* ===================================
   VALUE PROPOSITION - BOLD CARDS
   =================================== */

.value-proposition {
  background-color: #f8f8f8;
  padding: 80px 20px;
}

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

.features-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background-color: #ffffff;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 4px solid #1D4129;
  box-shadow: 8px 8px 0 #D4811A;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 #D4811A;
}

.feature-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(25%) saturate(1574%) hue-rotate(105deg) brightness(91%) contrast(92%);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  font-weight: 600;
}

/* ===================================
   SERVICES GRID - GEOMETRIC LAYOUT
   =================================== */

.services-overview,
.services-detailed {
  padding: 80px 20px;
  background-color: #ffffff;
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
  font-weight: 600;
}

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

.service-card {
  background-color: #f8f8f8;
  padding: 35px 30px;
  flex: 1 1 350px;
  max-width: 380px;
  border-left: 6px solid #D4811A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(212, 129, 26, 0.3);
  border-left-width: 10px;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 900;
  color: #D4811A;
  margin: 20px 0;
  text-transform: uppercase;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #D4811A 0%, #1D4129 100%);
  padding: 80px 20px;
  color: #ffffff;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 35px 30px;
  flex: 1 1 450px;
  max-width: 550px;
  border: 4px solid #1D4129;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

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

.rating {
  color: #D4811A;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #1a1a1a;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.customer-name {
  font-weight: 800;
  color: #1D4129;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.trust-score {
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   PRODUCT CATEGORIES - BOLD GRID
   =================================== */

.product-categories,
.product-benefits {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.categories-grid,
.benefits-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-card,
.benefit-card {
  background-color: #ffffff;
  padding: 35px 25px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  border: 3px solid #1D4129;
  transition: all 0.3s ease;
  position: relative;
}

.category-card:hover,
.benefit-card:hover {
  background-color: #D4811A;
  border-color: #D4811A;
  transform: scale(1.05);
}

.category-card:hover h3,
.category-card:hover p,
.benefit-card:hover h3,
.benefit-card:hover p {
  color: #ffffff;
}

.category-card img,
.benefit-card img {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
}

.category-card h3,
.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.category-card p,
.benefit-card p {
  font-size: 15px;
  color: #555;
  font-weight: 600;
}

/* ===================================
   CONSULTATION SERVICES
   =================================== */

.consultation-types {
  padding: 80px 20px;
  background-color: #ffffff;
}

.consultation-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.consultation-card {
  background-color: #f8f8f8;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 4px solid #D4811A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.consultation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212, 129, 26, 0.3);
}

.consultation-card h3 {
  font-size: 24px;
  text-transform: uppercase;
}

.consultation-card .duration {
  font-size: 16px;
  color: #555;
  font-weight: 600;
}

.consultation-card .price {
  font-size: 32px;
  font-weight: 900;
  color: #D4811A;
  text-transform: uppercase;
}

/* ===================================
   CONSULTATION TOPICS
   =================================== */

.consultation-topics {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.topics-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.topic-card {
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
  flex: 1 1 220px;
  max-width: 250px;
  border: 3px solid #1D4129;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.topic-card:hover {
  background-color: #1D4129;
  transform: scale(1.05);
}

.topic-card:hover p {
  color: #ffffff;
}

.topic-card img {
  width: 60px;
  height: 60px;
}

.topic-card p {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1D4129;
}

/* ===================================
   EXPERT TEAM
   =================================== */

.expert-team {
  padding: 80px 20px;
  background-color: #ffffff;
}

.experts-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.expert-card {
  background-color: #f8f8f8;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 4px solid #D4811A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(29, 65, 41, 0.3);
}

.expert-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.expert-card .title {
  font-size: 16px;
  color: #D4811A;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.expert-card p {
  font-size: 16px;
  color: #555;
}

/* ===================================
   STORY & VALUES
   =================================== */

.story {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.story-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.story-column {
  flex: 1 1 450px;
  max-width: 550px;
}

.story-column p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.values {
  padding: 80px 20px;
  background-color: #ffffff;
}

.values-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.value-card {
  background-color: #f8f8f8;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  border: 4px solid #1D4129;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.value-card:hover {
  background-color: #D4811A;
  border-color: #D4811A;
  transform: scale(1.05);
}

.value-card:hover h3,
.value-card:hover p {
  color: #ffffff;
}

.value-card img {
  width: 70px;
  height: 70px;
}

/* ===================================
   CERTIFICATIONS & SUSTAINABILITY
   =================================== */

.certifications,
.sustainability {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.certifications-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-badge {
  background-color: #1D4129;
  color: #ffffff;
  padding: 25px 30px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  border: 3px solid #D4811A;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cert-badge:hover {
  background-color: #D4811A;
  border-color: #1D4129;
  transform: scale(1.05);
}

.sustainability-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.sustainability-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  padding: 25px 30px;
  border-left: 6px solid #D4811A;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.sustainability-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(212, 129, 26, 0.2);
}

.sustainability-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.sustainability-item p {
  font-size: 17px;
  font-weight: 600;
  color: #1D4129;
  margin: 0;
}

/* ===================================
   BLOG SECTION
   =================================== */

.blog-categories {
  padding: 60px 20px 40px;
  background-color: #f8f8f8;
}

.categories-filter {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-btn {
  background-color: #ffffff;
  color: #1D4129;
  padding: 12px 25px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border: 3px solid #1D4129;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.category-btn:hover,
.category-btn.active {
  background-color: #D4811A;
  color: #ffffff;
  border-color: #D4811A;
  transform: translateY(-2px);
}

.blog-grid {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.articles-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.article-card {
  background-color: #ffffff;
  padding: 35px 30px;
  flex: 1 1 350px;
  max-width: 380px;
  border: 3px solid #1D4129;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(29, 65, 41, 0.2);
}

.article-category {
  background-color: #D4811A;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  align-self: flex-start;
}

.article-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.article-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 2px solid #f0f0f0;
}

.article-meta span {
  display: inline-block;
}

/* ===================================
   NEWSLETTER
   =================================== */

.newsletter {
  background: linear-gradient(135deg, #1D4129 0%, #D4811A 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.newsletter h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.newsletter p {
  font-size: 18px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto 20px;
}

.email-input {
  flex: 1 1 300px;
  padding: 16px 20px;
  font-size: 16px;
  border: 3px solid #ffffff;
  background-color: #ffffff;
  color: #1D4129;
  font-weight: 600;
}

.email-input::placeholder {
  color: #999;
}

.subscriber-count {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-options {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

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

.contact-card {
  background-color: #ffffff;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 300px;
  max-width: 350px;
  border: 4px solid #1D4129;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212, 129, 26, 0.3);
}

.contact-card img {
  width: 70px;
  height: 70px;
}

.contact-card h3 {
  font-size: 22px;
  text-transform: uppercase;
}

.contact-card a {
  color: #D4811A;
  font-weight: 700;
  font-size: 18px;
}

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

/* ===================================
   CONTACT FORM - BOLD DESIGN
   =================================== */

.contact-form-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.form-group label {
  font-weight: 700;
  font-size: 16px;
  color: #1D4129;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input {
  padding: 15px 20px;
  font-size: 16px;
  border: 3px solid #1D4129;
  background-color: #f8f8f8;
  color: #1a1a1a;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #D4811A;
  background-color: #ffffff;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

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

.checkbox-label a {
  color: #D4811A;
  text-decoration: underline;
}

.response-time {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-top: 20px;
  font-weight: 600;
}

/* ===================================
   LOCATION DETAILS
   =================================== */

.location-details {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.location-content {
  max-width: 800px;
  margin: 0 auto;
}

.location-info {
  background-color: #ffffff;
  padding: 40px 35px;
  border: 4px solid #1D4129;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hours-table {
  width: 100%;
  margin-bottom: 25px;
}

.hours-table tr {
  border-bottom: 2px solid #f0f0f0;
}

.hours-table td {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
}

.hours-table td:first-child {
  color: #1D4129;
  font-weight: 700;
}

.hours-table td:last-child {
  text-align: right;
  color: #555;
}

.parking-info {
  font-size: 16px;
  color: #D4811A;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===================================
   STATS & EXPERTISE
   =================================== */

.expertise {
  padding: 80px 20px;
  background: linear-gradient(135deg, #D4811A 0%, #1D4129 100%);
  color: #ffffff;
}

.expertise h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

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

.stat-card {
  background-color: #ffffff;
  color: #1D4129;
  padding: 40px 30px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  border: 4px solid #1D4129;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.08);
  background-color: #D4811A;
  color: #ffffff;
}

.stat-card h3 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 10px;
  color: inherit;
}

.stat-card p {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   CTA SECTIONS - BOLD & DRAMATIC
   =================================== */

.cta-banner,
.cta-section,
.cta-booking,
.cta-visit {
  background: linear-gradient(135deg, #1D4129 0%, #D4811A 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.cta-banner h2,
.cta-section h2,
.cta-booking h2,
.cta-visit h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p,
.cta-booking p,
.cta-visit p {
  font-size: 20px;
  margin-bottom: 35px;
  font-weight: 600;
}

.phone-number,
.phone-cta {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.phone-number a,
.phone-cta a {
  color: #ffffff;
  text-decoration: none;
}

.phone-number a:hover,
.phone-cta a:hover {
  color: #D4811A;
}

.location-info .cta-visit {
  background: none;
  padding: 0;
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-hero {
  background: linear-gradient(135deg, #1D4129 0%, #2D5F3F 100%);
  padding: 80px 20px;
}

.legal-hero h1 {
  color: #ffffff;
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.last-updated,
.effective-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin-top: 15px;
}

.legal-content {
  padding: 80px 20px;
  background-color: #ffffff;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

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

.content-wrapper p {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.content-wrapper a {
  color: #D4811A;
  font-weight: 700;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #1D4129;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-section {
  padding: 100px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.thank-you-content {
  max-width: 900px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #D4811A;
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  border: 5px solid #1D4129;
  border-radius: 0;
}

.thank-you-content h1 {
  margin-bottom: 20px;
}

.subheadline {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
  font-weight: 600;
}

.next-steps {
  background-color: #ffffff;
  padding: 40px 30px;
  border: 4px solid #1D4129;
  margin-bottom: 40px;
}

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

.steps-grid {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background-color: #f8f8f8;
  padding: 30px 25px;
  flex: 1 1 200px;
  max-width: 250px;
  border-left: 6px solid #D4811A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background-color: #D4811A;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.step-card p {
  font-size: 16px;
  font-weight: 600;
  color: #1D4129;
}

.while-you-wait {
  margin-bottom: 40px;
}

.while-you-wait h2 {
  margin-bottom: 30px;
}

.links-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.link-card {
  background-color: #ffffff;
  color: #1D4129;
  padding: 20px 30px;
  flex: 1 1 220px;
  max-width: 280px;
  border: 3px solid #1D4129;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-align: center;
}

.link-card:hover {
  background-color: #D4811A;
  color: #ffffff;
  border-color: #D4811A;
  transform: translateY(-4px);
}

.urgent-contact {
  background-color: #ffffff;
  padding: 40px 30px;
  border: 4px solid #D4811A;
}

.urgent-contact h3 {
  margin-bottom: 15px;
}

.urgent-contact .phone-number {
  font-size: 28px;
  color: #D4811A;
  margin: 20px 0;
}

.opening-hours {
  font-size: 16px;
  color: #555;
  font-weight: 600;
}

/* ===================================
   FOOTER - BOLD & STRUCTURED
   =================================== */

footer {
  background: linear-gradient(135deg, #1D4129 0%, #0f2517 100%);
  color: #ffffff;
  padding: 60px 20px 30px;
}

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

.footer-column {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-column h3 {
  color: #D4811A;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

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

.footer-column nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 15px;
}

.footer-column nav a:hover {
  color: #D4811A;
  border-left-color: #D4811A;
  padding-left: 20px;
}

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

.legal-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.legal-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.legal-nav a:hover {
  color: #D4811A;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* ===================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1D4129 0%, #2D5F3F 100%);
  color: #ffffff;
  padding: 25px 20px;
  z-index: 1500;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.cookie-text a {
  color: #D4811A;
  text-decoration: underline;
  font-weight: 700;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background-color: #D4811A;
  color: #ffffff;
  border-color: #D4811A;
}

.cookie-btn-accept:hover {
  background-color: #ffffff;
  color: #D4811A;
  border-color: #D4811A;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-btn-reject:hover {
  background-color: #ffffff;
  color: #1D4129;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #D4811A;
  border-color: #D4811A;
}

.cookie-btn-settings:hover {
  background-color: #D4811A;
  color: #ffffff;
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px 35px;
  border: 4px solid #1D4129;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: #1D4129;
  background-color: transparent;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 25px;
  color: #1D4129;
}

.cookie-category {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

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

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

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

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

.cookie-toggle-slider::before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  transition: 0.3s;
}

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

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #1D4129;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  p { font-size: 16px; }
  
  /* Header mobile */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Hero mobile */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Sections mobile */
  .section {
    padding: 40px 20px;
  }
  
  /* Cards mobile */
  .features-grid,
  .services-grid,
  .categories-grid,
  .benefits-grid,
  .consultation-grid,
  .topics-grid,
  .experts-grid,
  .values-grid,
  .testimonials-grid,
  .contact-grid,
  .stats-grid,
  .articles-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-card,
  .service-card,
  .category-card,
  .benefit-card,
  .consultation-card,
  .topic-card,
  .expert-card,
  .value-card,
  .testimonial-card,
  .contact-card,
  .stat-card,
  .article-card {
    max-width: 100%;
    width: 100%;
  }
  
  /* Story mobile */
  .story-content {
    flex-direction: column;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-column {
    max-width: 100%;
  }
  
  .legal-nav {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Form mobile */
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input {
    width: 100%;
  }
  
  /* Thank you mobile */
  .steps-grid,
  .links-grid {
    flex-direction: column;
  }
  
  .step-card,
  .link-card {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  
  .feature-card,
  .service-card,
  .category-card {
    flex: 1 1 calc(50% - 30px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

/* Apply animations */
.hero-content {
  animation: fadeIn 0.8s ease;
}

.feature-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }

/* ===================================
   END OF MODERN BOLD DESIGN STYLES
   =================================== */