/* =================================================================
   PLUME CLIMATE - COMPREHENSIVE CSS STYLES
   Design Style: Warm & Friendly Climate Solutions
   ================================================================= */

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

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

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

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

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #4a5568;
}

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

a:hover {
  color: #2C7BB6;
}

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

li {
  margin-bottom: 8px;
  color: #4a5568;
}

strong {
  font-weight: 600;
  color: #2c3e50;
}

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

/* HEADER STYLES */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #FFB088;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
}

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

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

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2c3e50;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #FFE8DC;
  color: #0A4D8C;
  transform: translateY(-2px);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: #FF8C5A;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 140, 90, 0.3);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  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: 1050;
  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: #FFE8DC;
  color: #FF8C5A;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2c3e50;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #fef8f5;
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background-color: #FFE8DC;
  color: #0A4D8C;
  transform: translateX(8px);
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #FF8C5A;
  color: #ffffff;
  border-color: #FF8C5A;
}

.btn-primary:hover {
  background-color: #FF6B2C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 90, 0.3);
}

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

.btn-secondary:hover {
  background-color: #FFE8DC;
  transform: translateY(-3px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  align-items: center;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 32px 32px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  color: #1a252f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges span {
  background-color: #ffffff;
  color: #0A4D8C;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* HERO INTERNAL PAGES */
.hero-internal {
  background: linear-gradient(135deg, #FFF5F0 0%, #FFE8DC 100%);
  padding: 40px 20px;
  margin-bottom: 40px;
  border-radius: 0 0 24px 24px;
}

.breadcrumbs {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #0A4D8C;
  font-weight: 500;
}

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

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #718096;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* BENEFITS GRID */
.benefits {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefits h2 {
  text-align: center;
  color: #1a252f;
}

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

.benefit-card {
  background-color: #FFF5F0;
  padding: 28px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 90, 0.15);
  border-color: #FFB088;
}

.benefit-card h3 {
  color: #0A4D8C;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #4a5568;
  margin-bottom: 0;
}

/* SERVICES OVERVIEW */
.services-overview {
  background-color: #fef8f5;
}

.services-overview h2 {
  text-align: center;
}

.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: 16px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #FFE8DC;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 140, 90, 0.2);
  border-color: #FF8C5A;
}

.service-card h3 {
  color: #0A4D8C;
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #FF8C5A;
  margin: 8px 0;
}

.service-card p {
  color: #4a5568;
  flex-grow: 1;
}

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

/* PROCESS STEPS */
.process {
  background: linear-gradient(135deg, #ffffff 0%, #FFF5F0 100%);
  border-radius: 24px;
}

.process h2 {
  text-align: center;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid #FFE8DC;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 90, 0.15);
  border-color: #FFB088;
}

.step-number {
  background-color: #FF8C5A;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.step h3 {
  color: #0A4D8C;
  font-size: 18px;
  margin-bottom: 8px;
}

.step p {
  color: #4a5568;
  margin-bottom: 0;
}

.timeline {
  text-align: center;
  font-weight: 600;
  color: #FF8C5A;
  margin-top: 32px;
  font-size: 18px;
}

/* STATISTICS */
.trust-indicators {
  background-color: #0A4D8C;
  color: #ffffff;
  border-radius: 24px;
  padding: 60px 20px;
}

.trust-indicators h2 {
  text-align: center;
  color: #ffffff;
}

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

.stat {
  text-align: center;
  flex: 1 1 200px;
  padding: 20px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #FFB088;
  margin-bottom: 8px;
  display: block;
}

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

/* FAQ SECTION */
.faq {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq h2 {
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background-color: #FFF5F0;
  padding: 28px;
  border-radius: 16px;
  border: 2px solid #FFE8DC;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #FFB088;
  box-shadow: 0 4px 12px rgba(255, 140, 90, 0.1);
}

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

.faq-item p {
  color: #4a5568;
  margin-bottom: 0;
  line-height: 1.7;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #FF8C5A 0%, #FFB088 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 60px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 140, 90, 0.3);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 32px;
}

.cta-banner p {
  color: #ffffff;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #FF8C5A;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background-color: #FFF5F0;
  transform: translateY(-3px);
}

.additional-info {
  color: #FFF5F0;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}

/* SERVICES DETAILED */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFE8DC;
}

.service-detail h2 {
  color: #0A4D8C;
  margin-bottom: 16px;
}

.service-detail p {
  color: #4a5568;
  margin-bottom: 16px;
}

.service-includes {
  background-color: #FFF5F0;
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}

.service-includes h3 {
  color: #0A4D8C;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-includes ul {
  margin-left: 20px;
}

.service-includes li {
  color: #4a5568;
  margin-bottom: 8px;
}

.service-detail .price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #FF8C5A;
  margin-top: 20px;
}

/* SERVICE BENEFITS */
.service-benefits {
  background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
  border-radius: 24px;
}

.service-benefits h2 {
  text-align: center;
}

.service-benefits .benefits-grid {
  gap: 20px;
}

.benefit {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 10px);
  min-width: 250px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #4a5568;
  font-weight: 500;
  border: 2px solid #FFE8DC;
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  border-color: #FFB088;
}

/* TECHNOLOGY PARTNERS */
.technology-partners {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.technology-partners h2 {
  color: #0A4D8C;
}

.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.brands-list span {
  background-color: #FFF5F0;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  color: #2c3e50;
  border: 2px solid #FFE8DC;
  transition: all 0.3s ease;
}

.brands-list span:hover {
  background-color: #FFE8DC;
  border-color: #FFB088;
  transform: scale(1.05);
}

/* CTA SERVICES */
.cta-services {
  background: linear-gradient(135deg, #0A4D8C 0%, #2C7BB6 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
}

.cta-services h2 {
  color: #ffffff;
}

.cta-services p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 24px;
}

.cta-services .btn-primary {
  background-color: #FF8C5A;
  border-color: #FF8C5A;
}

/* PRICING TABLES */
.pricing-tables {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pricing-tables h2 {
  color: #0A4D8C;
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFE8DC;
}

.pricing-table thead {
  background-color: #0A4D8C;
  color: #ffffff;
}

.pricing-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.pricing-table td {
  padding: 16px;
  border-bottom: 1px solid #FFE8DC;
  color: #4a5568;
}

.pricing-table tbody tr:hover {
  background-color: #FFF5F0;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* PRICING INFO */
.pricing-info {
  background-color: #FFF5F0;
  border-radius: 16px;
  padding: 32px;
}

.pricing-info h2 {
  color: #0A4D8C;
  margin-bottom: 24px;
}

.included-items {
  list-style: none;
  margin-left: 0;
}

.included-items li {
  color: #4a5568;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.included-items li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF8C5A;
  font-weight: 700;
  font-size: 18px;
}

.disclaimer {
  margin-top: 24px;
  padding: 16px;
  background-color: #FFE8DC;
  border-radius: 12px;
  color: #2c3e50;
  font-size: 14px;
  font-style: italic;
}

/* CTA PRICING */
.cta-pricing {
  background: linear-gradient(135deg, #FF8C5A 0%, #FFB088 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
}

.cta-pricing h2 {
  color: #ffffff;
}

.cta-pricing p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

/* COMPANY STORY */
.company-story {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.company-story h2 {
  color: #0A4D8C;
}

.company-story p {
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 32px;
}

.milestone {
  background-color: #FFE8DC;
  padding: 16px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 8px);
  min-width: 200px;
  text-align: center;
  font-weight: 600;
  color: #0A4D8C;
  border: 2px solid #FFB088;
}

/* MISSION & VISION */
.mission-vision {
  background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
  border-radius: 24px;
}

.mission-vision h2 {
  color: #0A4D8C;
  text-align: center;
}

.mission, .values {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid #FFE8DC;
}

.mission h3, .values h3 {
  color: #FF8C5A;
  margin-bottom: 16px;
}

.mission p, .values p {
  color: #4a5568;
  line-height: 1.8;
}

.values ul {
  list-style: none;
  margin-left: 0;
}

.values li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.values li:before {
  content: '●';
  position: absolute;
  left: 0;
  color: #FF8C5A;
  font-size: 20px;
}

/* STATISTICS (About page) */
.statistics {
  background-color: #0A4D8C;
  color: #ffffff;
  border-radius: 24px;
}

.statistics h2 {
  color: #ffffff;
  text-align: center;
}

/* CERTIFICATIONS */
.certifications {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.certifications h2 {
  color: #0A4D8C;
}

.cert-list {
  list-style: none;
  margin-left: 0;
}

.cert-list li {
  background-color: #FFF5F0;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 12px;
  color: #4a5568;
  border: 2px solid #FFE8DC;
  transition: all 0.3s ease;
}

.cert-list li:hover {
  background-color: #FFE8DC;
  border-color: #FFB088;
  transform: translateX(8px);
}

/* CTA ABOUT */
.cta-about {
  background: linear-gradient(135deg, #FF8C5A 0%, #FFB088 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
}

.cta-about h2 {
  color: #ffffff;
}

.cta-about p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

/* PORTFOLIO */
.portfolio-intro {
  text-align: center;
  margin-bottom: 40px;
}

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

.project-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFE8DC;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255, 140, 90, 0.2);
  border-color: #FF8C5A;
}

.project-card h3 {
  color: #0A4D8C;
  font-size: 20px;
}

.project-type {
  font-weight: 600;
  color: #FF8C5A;
  font-size: 14px;
  margin-bottom: 8px;
}

.project-details {
  color: #718096;
  font-size: 14px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #FFE8DC;
}

/* TESTIMONIALS */
.testimonials-portfolio {
  background-color: #FFF5F0;
  border-radius: 24px;
}

.testimonials-portfolio h2 {
  text-align: center;
  color: #0A4D8C;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFE8DC;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  color: #2c3e50;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-author {
  font-weight: 600;
  color: #0A4D8C;
  font-style: normal;
  margin-top: 8px;
}

/* PORTFOLIO CTA */
.portfolio-cta {
  background: linear-gradient(135deg, #0A4D8C 0%, #2C7BB6 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
}

.portfolio-cta h2 {
  color: #ffffff;
}

.portfolio-cta p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 24px;
}

/* CONTACT METHODS */
.contact-methods h2 {
  text-align: center;
  color: #0A4D8C;
}

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

.contact-method {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid #FFE8DC;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  border-color: #FF8C5A;
}

.contact-method h3 {
  color: #0A4D8C;
  margin-bottom: 16px;
}

.contact-value {
  font-weight: 700;
  color: #FF8C5A;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-method p {
  color: #4a5568;
}

/* CONTACT INFO DETAILED */
.contact-info-detailed {
  background-color: #FFF5F0;
  border-radius: 24px;
}

.contact-info-detailed h2 {
  color: #0A4D8C;
}

.contact-details {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border: 2px solid #FFE8DC;
  max-width: 600px;
  margin: 0 auto;
}

.contact-details p {
  color: #4a5568;
  margin-bottom: 12px;
}

.contact-details strong {
  color: #0A4D8C;
}

/* MAP INFO */
.map-info {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.transport-info {
  background-color: #FFF5F0;
  padding: 24px;
  border-radius: 12px;
  margin-top: 24px;
}

.transport-info h3 {
  color: #0A4D8C;
  margin-bottom: 16px;
}

.transport-info p {
  color: #4a5568;
  margin-bottom: 8px;
}

/* SERVICE AREA MAP */
.service-area-map {
  background: linear-gradient(135deg, #FFF5F0 0%, #ffffff 100%);
  border-radius: 24px;
}

.service-area-map h2 {
  color: #0A4D8C;
}

.zone {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 2px solid #FFE8DC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.zone h3 {
  color: #FF8C5A;
  margin-bottom: 12px;
}

.zone p {
  color: #4a5568;
  margin-bottom: 8px;
}

/* CONTACT CTA */
.contact-cta {
  background: linear-gradient(135deg, #FF8C5A 0%, #FFB088 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 50px 20px;
  text-align: center;
}

.contact-cta h2 {
  color: #ffffff;
}

.contact-cta p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 24px;
}

.response-time {
  color: #FFF5F0;
  font-size: 14px;
  margin-top: 20px;
  font-weight: 500;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #0A4D8C;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  color: #4a5568;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 60px 20px;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  padding: 48px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 3px solid #FFB088;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #34D399;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
}

.thank-you h1 {
  color: #0A4D8C;
  margin-bottom: 16px;
}

.thank-you-message {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

.next-steps {
  background-color: #FFF5F0;
  padding: 24px;
  border-radius: 16px;
  margin: 32px 0;
  text-align: left;
}

.next-steps h2 {
  color: #0A4D8C;
  font-size: 22px;
  margin-bottom: 16px;
}

.next-steps ol {
  margin-left: 24px;
}

.next-steps li {
  color: #4a5568;
  margin-bottom: 12px;
  line-height: 1.6;
}

.estimated-response {
  color: #718096;
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

/* THANK YOU ADDITIONAL */
.thank-you-additional {
  padding: 40px 20px;
}

.thank-you-additional h2 {
  text-align: center;
  color: #0A4D8C;
  margin-bottom: 32px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.suggestion-card {
  background-color: #ffffff;
  padding: 24px 32px;
  border-radius: 16px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  text-align: center;
  font-weight: 600;
  color: #0A4D8C;
  border: 2px solid #FFE8DC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  background-color: #FFE8DC;
  border-color: #FF8C5A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 140, 90, 0.2);
}

/* FOOTER */
footer {
  background-color: #1a252f;
  color: #E8F4F8;
  padding: 50px 20px 20px;
  margin-top: 60px;
  border-radius: 32px 32px 0 0;
}

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

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

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

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

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

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

.footer-section a {
  color: #cbd5e0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #FFB088;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #2d3748;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 1000;
  border-top: 3px solid #FF8C5A;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-text {
  flex: 1 1 300px;
}

.cookie-text p {
  color: #4a5568;
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-accept:hover {
  background-color: #FF6B2C;
}

.cookie-reject {
  background-color: #ffffff;
  color: #718096;
  border-color: #cbd5e0;
}

.cookie-reject:hover {
  background-color: #f7fafc;
  border-color: #a0aec0;
}

.cookie-settings {
  background-color: #ffffff;
  color: #0A4D8C;
  border-color: #0A4D8C;
}

.cookie-settings:hover {
  background-color: #E8F4F8;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 2px solid #FFE8DC;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h3 {
  color: #0A4D8C;
  margin-bottom: 0;
}

.cookie-modal-close {
  background-color: #FFE8DC;
  color: #FF8C5A;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #FFF5F0;
  border-radius: 12px;
  border: 2px solid #FFE8DC;
}

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

.cookie-category h4 {
  color: #0A4D8C;
  margin-bottom: 0;
  font-size: 16px;
}

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

.cookie-toggle.active {
  background-color: #FF8C5A;
}

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

.cookie-toggle.active:after {
  transform: translateX(24px);
}

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 2px solid #FFE8DC;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Section spacing */
  section {
    margin-bottom: 40px;
    padding: 24px 16px;
  }
  
  /* Flexbox adjustments for mobile */
  .benefits-grid,
  .services-grid,
  .process-steps,
  .stats-grid,
  .contact-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .contact-method,
  .project-card,
  .benefit {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Stats */
  .stat {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Tables */
  .pricing-table {
    font-size: 14px;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    gap: 24px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Thank you page */
  .suggestions {
    flex-direction: column;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step {
    flex: 1 1 calc(50% - 12px);
  }
  
  .contact-method {
    flex: 1 1 calc(50% - 12px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .cta-services,
  .cta-pricing,
  .cta-about,
  .portfolio-cta,
  .contact-cta {
    display: none;
  }
  
  body {
    background-color: #ffffff;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}

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

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

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

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

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

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

/* 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-width: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #FF8C5A;
  outline-offset: 2px;
}

/* Ensure proper color contrast for readability */
.testimonial-card p {
  color: #2c3e50 !important;
}

.testimonial-author {
  color: #0A4D8C !important;
}

/* END OF CSS */