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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 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 {
  list-style: none;
}

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

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;
}

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

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

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #1a3a5c;
  box-shadow: 0 4px 20px rgba(26, 58, 92, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

header img {
  height: 50px;
  width: auto;
}

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

header nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #FF6B35;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

.phone-link {
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover {
  color: #c74100;
  transform: scale(1.05);
}

.cta-button {
  background: #FF6B35;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #c74100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #1a3a5c;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FF6B35;
  padding-left: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 0;
}

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

.hero p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

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

.btn-primary {
  background: #FF6B35;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  background: #c74100;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 18px 40px;
  border: 3px solid #ffffff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

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

.btn-link {
  color: #1a3a5c;
  font-weight: 700;
  font-size: 18px;
  text-decoration: underline;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 24px;
}

.btn-link:hover {
  color: #FF6B35;
  transform: translateX(8px);
}

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.rating {
  color: #FF6B35;
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-top: 16px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  background: #f8f9fa;
  padding: 80px 0;
}

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

.services-overview > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

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

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 4px solid #FF6B35;
  position: relative;
  margin-bottom: 20px;
}

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

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

.service-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card .price {
  color: #FF6B35;
  font-weight: 700;
  font-size: 20px;
  margin-top: auto;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 6px solid #FF6B35;
  transition: all 0.3s ease;
}

.service-detail:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-detail h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.service-detail p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail .price {
  color: #FF6B35;
  font-weight: 700;
  font-size: 22px;
  display: block;
}

/* ===== WHY US / FEATURES ===== */
.why-us {
  background: #ffffff;
  padding: 80px 0;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.feature {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.feature:hover {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature h3 {
  color: #1a3a5c;
  font-size: 22px;
  margin-bottom: 8px;
}

.feature h3::before {
  content: '✓';
  color: #FF6B35;
  font-weight: 700;
  font-size: 24px;
  margin-right: 12px;
}

.feature p {
  color: #555;
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-left: 6px solid #FF6B35;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #1a1a1a;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-weight: 700;
  color: #1a3a5c;
  font-size: 16px;
  font-style: normal;
}

.testimonial-card .rating {
  color: #FF6B35;
  font-size: 20px;
  margin-top: 8px;
}

/* ===== TESTIMONIALS DETAILED ===== */
.testimonials-detailed {
  background: #ffffff;
  padding: 80px 0;
}

.testimonials-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-detailed > .container > p {
  text-align: center;
  font-size: 20px;
  color: #FF6B35;
  font-weight: 700;
  margin-bottom: 48px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #1a3a5c 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  margin-bottom: 0;
}

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

.cta-section p {
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .contact-info {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  color: #FF6B35;
}

/* ===== COMPANY STORY ===== */
.company-story {
  background: #ffffff;
  padding: 80px 0;
}

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

.company-story > .container > p {
  max-width: 900px;
  margin: 0 auto 56px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  text-align: center;
}

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

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 180px;
  padding: 24px;
  margin-bottom: 20px;
}

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

.stat .label {
  display: block;
  font-size: 16px;
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== VALUES ===== */
.values {
  background: #f8f9fa;
  padding: 80px 0;
}

.values h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.value-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
  margin-bottom: 20px;
}

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

.value-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a3a5c;
}

.value-card p {
  color: #555;
  line-height: 1.7;
}

/* ===== TEAM ===== */
.team {
  background: #ffffff;
  padding: 80px 0;
}

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

.team > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
}

.team-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.team-categories span {
  background: #FF6B35;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.team-categories span:hover {
  background: #c74100;
  transform: scale(1.05);
}

/* ===== PROJECT SHOWCASE ===== */
.project-showcase {
  background: #ffffff;
  padding: 80px 0;
}

.project-showcase h2 {
  text-align: center;
  margin-bottom: 56px;
}

.project-card {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #FF6B35;
  transition: all 0.3s ease;
}

.project-card:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.project-card p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

/* ===== STATS SECTION ===== */
.stats {
  background: #f8f9fa;
  padding: 80px 0;
}

.stats h2 {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== SUCCESS METRICS ===== */
.success-metrics {
  background: #ffffff;
  padding: 80px 0;
}

.success-metrics h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.metric {
  text-align: center;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 220px;
  padding: 40px 24px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.metric:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.metric .number {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: #FF6B35;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.metric .label {
  display: block;
  font-size: 18px;
  color: #1a3a5c;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== CONTACT OPTIONS ===== */
.contact-options {
  background: #ffffff;
  padding: 80px 0;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.contact-card {
  background: #f8f9fa;
  padding: 40px 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
  margin-bottom: 20px;
}

.contact-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.contact-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-card strong {
  color: #FF6B35;
  font-size: 18px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: #f8f9fa;
  padding: 80px 0;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #555;
}

.form-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.form-info p {
  font-size: 17px;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.form-info ul {
  list-style: none;
  padding-left: 0;
}

.form-info li {
  padding: 8px 0;
  padding-left: 32px;
  position: relative;
  color: #555;
  font-size: 16px;
}

.form-info li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FF6B35;
  font-weight: 700;
  font-size: 18px;
}

/* ===== MAP LOCATION ===== */
.map-location {
  background: #ffffff;
  padding: 80px 0;
}

.map-location h2 {
  text-align: center;
  margin-bottom: 32px;
}

.map-location p {
  text-align: center;
  font-size: 17px;
  color: #555;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 16px;
}

.map-location strong {
  color: #1a3a5c;
  font-size: 18px;
}

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

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1a3a5c;
  padding-top: 20px;
  border-top: 2px solid #f8f9fa;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.7;
}

.legal-content strong {
  color: #1a3a5c;
}

.legal-content em {
  color: #777;
  font-size: 15px;
}

/* ===== CONFIRMATION CONTENT (THANK YOU) ===== */
.confirmation-content {
  background: #ffffff;
  padding: 80px 0;
}

.confirmation-content h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.step {
  background: #f8f9fa;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #FF6B35;
  margin-bottom: 20px;
}

.step:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.step p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* ===== IMMEDIATE CONTACT ===== */
.immediate-contact {
  background: #f8f9fa;
  padding: 80px 0;
  text-align: center;
}

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

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

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

.phone-large a {
  font-size: 42px;
  font-weight: 700;
  color: #FF6B35;
  transition: all 0.3s ease;
}

.phone-large a:hover {
  color: #c74100;
  transform: scale(1.05);
}

/* ===== HELPFUL RESOURCES ===== */
.helpful-resources {
  background: #ffffff;
  padding: 80px 0;
}

.helpful-resources h2 {
  text-align: center;
  margin-bottom: 56px;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.resource-card {
  background: #f8f9fa;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  color: #1a3a5c;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.resource-card:hover {
  background: #ffffff;
  border-color: #FF6B35;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #FF6B35;
}

/* ===== FOOTER ===== */
footer {
  background: #1a3a5c;
  color: #ffffff;
  padding: 60px 0 24px;
}

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

.footer-column {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 240px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #FF6B35;
  padding-left: 8px;
}

.footer-column .trust-badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-column .trust-badges span {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3a5c;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  display: none;
  animation: slideUp 0.4s ease;
}

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

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

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

.cookie-banner-text {
  flex: 1 1 auto;
  min-width: 300px;
}

.cookie-banner-text p {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.cookie-btn-accept:hover {
  background: #c74100;
  transform: translateY(-2px);
}

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

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

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

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

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a3a5c;
}

.cookie-preference {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.cookie-preference h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-preference p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 56px;
  height: 28px;
}

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

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

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.3s;
}

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

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

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

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  section {
    padding: 50px 0;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  section {
    padding: 40px 0;
    margin-bottom: 50px;
  }
  
  /* SHOW MOBILE MENU */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  header nav {
    display: none;
  }
  
  header .phone-link,
  header .cta-button {
    display: none;
  }
  
  header .container {
    justify-content: center;
  }
  
  /* RESPONSIVE GRIDS */
  .services-grid,
  .features-grid,
  .value-cards,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .value-card,
  .contact-card {
    flex: 1 1 100%;
  }
  
  .stats-grid,
  .metrics-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .stat,
  .metric {
    flex: 1 1 100%;
    max-width: 300px;
  }
  
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .resource-links {
    flex-direction: column;
  }
  
  .resource-card {
    flex: 1 1 100%;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .phone-large a {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section {
    padding: 32px 0;
    margin-bottom: 40px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 16px;
  }
  
  .service-card,
  .value-card,
  .contact-card {
    padding: 24px;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  .stat .number,
  .metric .number {
    font-size: 48px;
  }
  
  .phone-large a {
    font-size: 28px;
  }
}