/* ===================================
   MODERN BOLD DESIGN SYSTEM - VaricDaphn
   Bold typography, vibrant colors, geometric shapes
   =================================== */

/* ===================================
   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;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* ===================================
   TYPOGRAPHY - BOLD & MODERN
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

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

strong {
  font-weight: 700;
  color: #1a1a1a;
}

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

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

/* ===================================
   HEADER - BOLD & STRIKING
   =================================== */
header {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4567 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(44, 95, 141, 0.3);
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

/* ===================================
   MOBILE MENU - BOLD SLIDE-IN
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #E8863D;
  color: #ffffff;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(232, 134, 61, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F8D 0%, #1a4567 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  border-left: 4px solid #E8863D;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(232, 134, 61, 0.2);
  transform: translateX(8px);
  border-left-color: #F4F1EA;
}

/* ===================================
   BUTTONS - BOLD & GEOMETRIC
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #E8863D;
  color: #ffffff;
  border: 3px solid #E8863D;
  box-shadow: 0 4px 15px rgba(232, 134, 61, 0.3);
}

.btn-primary:hover {
  background: #d97530;
  border-color: #d97530;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 134, 61, 0.4);
}

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

.btn-secondary:hover {
  background: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

/* ===================================
   HERO SECTION - BOLD & IMPACTFUL
   =================================== */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4567 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(232, 134, 61, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(244, 241, 234, 0.05);
  border-radius: 50%;
  z-index: 0;
}

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

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

.hero-subheadline {
  color: #F4F1EA;
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
}

.trust-item img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

/* ===================================
   SERVICE CARDS - GEOMETRIC & BOLD
   =================================== */
.services-overview,
.service-details {
  padding: 80px 20px;
}

.services-overview h2,
.service-details h2 {
  text-align: center;
  color: #2C5F8D;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 60px;
}

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

.service-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  background: #ffffff;
  border: 3px solid #2C5F8D;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #E8863D;
  transition: width 0.4s ease;
  z-index: 0;
}

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

.service-card:hover {
  border-color: #E8863D;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(232, 134, 61, 0.3);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover img {
  filter: brightness(0) invert(1);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #F4F1EA;
}

.service-card .price {
  font-weight: 700;
  font-size: 18px;
  color: #E8863D;
  margin-top: auto;
  transition: color 0.3s ease;
}

.service-card:hover .price {
  color: #ffffff;
}

/* ===================================
   SERVICE DETAIL CARDS
   =================================== */
.service-detail-card {
  background: #F4F1EA;
  border-left: 6px solid #E8863D;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(232, 134, 61, 0.2);
}

.service-detail-card img {
  width: 80px;
  height: 80px;
}

.service-detail-card h2 {
  color: #2C5F8D;
  margin-bottom: 16px;
  text-align: left;
}

.price-info {
  font-weight: 700;
  font-size: 24px;
  color: #E8863D;
  margin: 20px 0;
}

/* ===================================
   FEATURES GRID - BOLD LAYOUT
   =================================== */
.why-choose-us,
.values,
.advantages {
  background: #F4F1EA;
  padding: 80px 20px;
}

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

.feature,
.value-card {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 30px;
  background: #ffffff;
  border: 3px solid #2C5F8D;
  transition: all 0.3s ease;
}

.feature:hover,
.value-card:hover {
  transform: translateY(-8px);
  border-color: #E8863D;
  box-shadow: 0 8px 25px rgba(232, 134, 61, 0.2);
}

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

.feature h3,
.value-card h3 {
  color: #2C5F8D;
  font-size: 20px;
}

/* ===================================
   TESTIMONIALS - HIGH CONTRAST
   =================================== */
.testimonials,
.testimonials-section {
  padding: 80px 20px;
  background: #2C5F8D;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 40px);
  min-width: 300px;
  background: #ffffff;
  border-left: 6px solid #E8863D;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232, 134, 61, 0.3);
}

.rating {
  color: #E8863D;
  font-size: 20px;
  font-weight: 700;
}

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

.customer-name {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

/* ===================================
   CTA SECTIONS - BOLD CALL TO ACTION
   =================================== */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #E8863D 0%, #d97530 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-banner p,
.cta-section p {
  color: #F4F1EA;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn-primary {
  background: #2C5F8D;
  border-color: #2C5F8D;
}

.cta-buttons .btn-primary:hover {
  background: #1a4567;
  border-color: #1a4567;
}

.availability,
.contact-info {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

/* ===================================
   PAGE HERO - BOLD HEADER
   =================================== */
.page-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a4567 100%);
  padding: 60px 20px 40px;
  text-align: center;
}

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

.breadcrumb a {
  color: #E8863D;
  font-weight: 700;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-hero p {
  color: #F4F1EA;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.last-updated {
  color: #F4F1EA;
  font-size: 14px;
  font-style: italic;
}

/* ===================================
   STATS & ACHIEVEMENTS - BOLD NUMBERS
   =================================== */
.stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-item strong {
  font-size: 48px;
  font-weight: 800;
  color: #E8863D;
  line-height: 1;
}

.stat-item span {
  font-size: 16px;
  font-weight: 600;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================================
   ADVANTAGES LIST - CLEAN & BOLD
   =================================== */
.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #E8863D;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(232, 134, 61, 0.2);
}

.advantage-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.advantage-item h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 8px;
}

/* ===================================
   PROJECT CARDS - PORTFOLIO STYLE
   =================================== */
.project-showcase {
  padding: 60px 20px;
}

.project-card {
  background: #F4F1EA;
  padding: 40px;
  margin-bottom: 40px;
  border-left: 6px solid #2C5F8D;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateX(8px);
  border-left-color: #E8863D;
  box-shadow: 0 4px 20px rgba(232, 134, 61, 0.2);
}

.project-card h2 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.project-location {
  color: #E8863D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.project-description {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 16px;
}

/* ===================================
   PRICING TABLES - CLEAR & BOLD
   =================================== */
.price-table {
  padding: 80px 20px;
  background: #F4F1EA;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.price-item {
  background: #ffffff;
  padding: 30px;
  border-left: 6px solid #E8863D;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(232, 134, 61, 0.2);
}

.price-item h3 {
  color: #2C5F8D;
  font-size: 22px;
  margin-bottom: 8px;
}

.price-item .price {
  font-size: 28px;
  font-weight: 800;
  color: #E8863D;
  margin: 8px 0;
}

.disclaimer {
  text-align: center;
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 40px;
}

/* ===================================
   FACTORS & BENEFITS - GRID LAYOUT
   =================================== */
.factors-grid,
.key-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 40px 0;
}

.factor,
.benefit {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  padding: 24px;
  background: #ffffff;
  border: 3px solid #2C5F8D;
  text-align: center;
  transition: all 0.3s ease;
}

.factor:hover {
  border-color: #E8863D;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(232, 134, 61, 0.2);
}

.factor h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit {
  display: inline-flex;
  padding: 12px 24px;
  background: #E8863D;
  color: #ffffff;
  font-weight: 700;
  border: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.contact-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: #F4F1EA;
  padding: 40px 30px;
  text-align: center;
  border: 3px solid #2C5F8D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: #E8863D;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(232, 134, 61, 0.2);
}

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

.contact-card h3 {
  color: #2C5F8D;
  font-size: 20px;
}

.contact-card a {
  color: #E8863D;
  font-weight: 700;
}

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

/* ===================================
   FORM SECTIONS
   =================================== */
.contact-form-section {
  padding: 60px 20px;
  background: #F4F1EA;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-info {
  margin-bottom: 30px;
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #E8863D;
}

.privacy-note {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.privacy-note a {
  color: #2C5F8D;
  font-weight: 700;
}

.form-placeholder {
  background: #ffffff;
  padding: 40px;
  border: 3px solid #2C5F8D;
  text-align: center;
}

.form-fields-list ul {
  text-align: left;
  max-width: 400px;
  margin: 30px auto;
}

.form-fields-list li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666666;
}

/* ===================================
   BUSINESS HOURS & INFO
   =================================== */
.business-hours,
.office-info {
  padding: 60px 20px;
}

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

.hours-item {
  flex: 1 1 calc(50% - 40px);
  min-width: 280px;
  padding: 30px;
  background: #F4F1EA;
  border-left: 4px solid #E8863D;
}

.hours-item h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.holiday-note {
  text-align: center;
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* ===================================
   THANK YOU PAGE - CELEBRATION STYLE
   =================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #E8863D 0%, #d97530 100%);
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  margin: 0 auto 30px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.subheadline,
.confirmation {
  color: #F4F1EA;
  font-size: 18px;
  margin-bottom: 16px;
}

.next-steps {
  padding: 80px 20px;
  background: #F4F1EA;
}

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

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border: 3px solid #2C5F8D;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

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

.step h3 {
  color: #2C5F8D;
  font-size: 20px;
}

.timeline {
  text-align: center;
  font-weight: 700;
  color: #E8863D;
  font-size: 16px;
}

.useful-links {
  padding: 60px 20px;
}

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

.link-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  padding: 30px;
  background: #F4F1EA;
  border: 3px solid #2C5F8D;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #E8863D;
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(232, 134, 61, 0.2);
}

.link-card img {
  width: 50px;
  height: 50px;
}

.link-card h3 {
  color: #2C5F8D;
  font-size: 18px;
}

.back-home {
  padding: 60px 20px;
  text-align: center;
}

/* ===================================
   LEGAL CONTENT - READABLE TEXT
   =================================== */
.legal-content {
  padding: 60px 20px;
  background: #ffffff;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-section h2 {
  color: #2C5F8D;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 3px solid #E8863D;
  padding-bottom: 12px;
}

.text-section h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 16px;
}

.text-section ul {
  list-style: disc;
  margin-left: 30px;
  margin-bottom: 20px;
}

.text-section li {
  margin-bottom: 8px;
  color: #333333;
}

.text-section a {
  color: #2C5F8D;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.text-section a:hover {
  border-bottom-color: #E8863D;
}

.note {
  background: #F4F1EA;
  padding: 16px 24px;
  border-left: 4px solid #E8863D;
  font-size: 14px;
  color: #666666;
  margin: 20px 0;
}

/* ===================================
   FOOTER - BOLD & ORGANIZED
   =================================== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2C5F8D 100%);
  color: #F4F1EA;
  padding: 60px 20px 20px;
}

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

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

.footer-section h4 {
  color: #E8863D;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border-bottom: 3px solid #E8863D;
  padding-bottom: 12px;
}

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

.footer-section a {
  color: #F4F1EA;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: #E8863D;
  transform: translateX(4px);
}

.footer-section p {
  color: #F4F1EA;
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid rgba(232, 134, 61, 0.3);
}

.footer-bottom p {
  color: #F4F1EA;
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER - BOLD & CLEAR
   =================================== */
#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C5F8D;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: slideUp 0.4s ease;
}

#cookie-consent-banner.show {
  display: block;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text {
  flex: 1 1 60%;
  color: #F4F1EA;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: flex-end;
}

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

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

.cookie-btn-accept:hover {
  background: #d97530;
  border-color: #d97530;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 134, 61, 0.4);
}

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

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.cookie-btn-settings:hover {
  background: rgba(244, 241, 234, 0.1);
}

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

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid #2C5F8D;
  position: relative;
}

.cookie-modal-header {
  background: #2C5F8D;
  color: #ffffff;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h2 {
  color: #ffffff;
  margin: 0;
}

.cookie-modal-close {
  background: #E8863D;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal-body {
  padding: 30px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #F4F1EA;
}

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

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

.cookie-category-header h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin: 0;
}

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

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

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

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

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

.cookie-category-description {
  color: #666666;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-modal-footer {
  padding: 24px;
  background: #F4F1EA;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  /* Service Cards */
  .service-card {
    flex: 1 1 100%;
  }
  
  /* Features */
  .feature,
  .value-card {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stats {
    gap: 30px;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  /* Steps */
  .step {
    flex: 1 1 100%;
  }
  
  /* Contact Cards */
  .contact-card {
    flex: 1 1 100%;
  }
  
  /* Links Grid */
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Price Items */
  .price-item {
    padding: 20px;
  }
  
  /* Factors */
  .factor {
    flex: 1 1 100%;
  }
  
  /* Hours Grid */
  .hours-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Service Cards - 2 columns */
  .service-card {
    flex: 1 1 calc(50% - 30px);
  }
  
  /* Features - 2 columns */
  .feature,
  .value-card {
    flex: 1 1 calc(50% - 40px);
  }
  
  /* Steps - 2 columns */
  .step {
    flex: 1 1 calc(50% - 30px);
  }
  
  /* Contact Cards - 2 columns */
  .contact-card {
    flex: 1 1 calc(50% - 30px);
  }
}

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

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

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

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent-banner,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* END OF STYLES */