/* 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, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: #ffffff;
  overflow-x: hidden;
}

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

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

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

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

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #d89500;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

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

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

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

/* Header */
header {
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #F8B739;
  transform: translateY(-2px);
}

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

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #1a4a6d;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  padding: 8px 12px;
  font-size: 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid transparent;
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #7BA7BC 100%);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(248, 183, 57, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  color: #F8B739;
}

.hero-subheadline {
  font-size: 18px;
  margin-bottom: 32px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #d89500;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(216, 149, 0, 0.3);
}

.btn-primary:hover {
  background: #F8B739;
  color: #1a4a6d;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 149, 0, 0.4);
}

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

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

.btn-link {
  background: transparent;
  color: #1a4a6d;
  padding: 12px 24px;
  text-decoration: underline;
}

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

/* Page Hero */
.hero-page {
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 60px;
}

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

.hero-page .container p{
  font-size: 20px;
  color: #F8B739 !important;
  margin-bottom: 0;
}

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

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
  color: #1a4a6d;
}

section > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4a4a4a;
}

/* Services Overview */
.services-overview {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  border-top: 4px solid #2C5F8D;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-top-color: #d89500;
}

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

.service-card p {
  margin-bottom: 20px;
  color: #4a4a4a;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #d89500 0%, #F8B739 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
}

/* Process Steps */
.process {
  background: #ffffff;
}

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

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

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

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2C5F8D 0%, #7BA7BC 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

.step p {
  font-size: 15px;
  color: #4a4a4a;
}

/* Benefits */
.benefits {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.benefit {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 550px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d89500;
  transition: all 0.3s ease;
  position: relative;
}

.benefit:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.benefit h3 {
  color: #1a4a6d;
  margin-bottom: 12px;
}

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

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #2C5F8D 0%, #7BA7BC 100%);
  color: #ffffff;
}

.testimonials h2 {
  color: #ffffff;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

.testimonial-card .client-name {
  display: block;
  font-weight: 700;
  color: #1a4a6d;
  font-size: 16px;
  margin-top: 16px;
}

/* CTA Sections */
.cta-final,
.cta-quote,
.cta-services,
.cta-about,
.cta-portfolio {
  background: linear-gradient(135deg, #d89500 0%, #F8B739 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0;
}

.cta-final h2,
.cta-quote h2,
.cta-services h2,
.cta-about h2,
.cta-portfolio h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-final p,
.cta-quote p,
.cta-services p,
.cta-about p,
.cta-portfolio p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #ffffff;
}

.cta-final .btn-primary,
.cta-quote .btn-primary,
.cta-services .btn-primary,
.cta-about .btn-primary,
.cta-portfolio .btn-primary {
  background: #1a4a6d;
}

.cta-final .btn-primary:hover,
.cta-quote .btn-primary:hover,
.cta-services .btn-primary:hover,
.cta-about .btn-primary:hover,
.cta-portfolio .btn-primary:hover {
  background: #2C5F8D;
  color: #ffffff;
}

/* Pricing Page */
.pricing-detailed {
  background: #ffffff;
}

.pricing-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-top: 6px solid #2C5F8D;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-top-color: #d89500;
}

.pricing-card h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
  font-size: 26px;
}

.pricing-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #d89500 0%, #F8B739 100%);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #4a4a4a;
}

.pricing-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.pricing-card ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d89500;
  font-weight: 700;
  font-size: 20px;
}

/* Pricing Factors */
.pricing-factors {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.factor {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  border-left: 6px solid #2C5F8D;
  position: relative;
}

.factor h3 {
  color: #1a4a6d;
  margin-bottom: 12px;
}

.factor p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Discounts */
.discounts {
  background: #ffffff;
}

.discount-card {
  background: linear-gradient(135deg, #2C5F8D 0%, #7BA7BC 100%);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.discount-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.discount-card h3 {
  color: #F8B739;
  margin-bottom: 12px;
}

.discount-card p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}

/* Services Detailed */
.services-detailed {
  background: #ffffff;
}

.service-detail {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border-top: 6px solid #2C5F8D;
  position: relative;
}

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

.service-detail .price {
  display: inline-block;
  background: linear-gradient(135deg, #d89500 0%, #F8B739 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-detail h4 {
  color: #1a4a6d;
  margin-top: 24px;
  margin-bottom: 12px;
}

.service-detail ul {
  list-style: none;
  padding-left: 0;
}

.service-detail ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d89500;
  font-weight: 700;
  font-size: 20px;
}

/* Guarantees */
.guarantees {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.guarantee {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
  border-left: 6px solid #d89500;
  transition: all 0.3s ease;
  position: relative;
}

.guarantee:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.guarantee h3 {
  color: #1a4a6d;
  margin-bottom: 12px;
}

.guarantee p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Company Story */
.company-story {
  background: #ffffff;
}

.company-story p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #4a4a4a;
}

/* Mission & Vision */
.mission-vision {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.value {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-top: 4px solid #2C5F8D;
  transition: all 0.3s ease;
  position: relative;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-top-color: #d89500;
}

.value h3 {
  color: #1a4a6d;
  margin-bottom: 12px;
}

.value p {
  color: #4a4a4a;
  margin-bottom: 0;
}

/* Team Stats */
.team-stats {
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  color: #ffffff;
  text-align: center;
}

.team-stats h2 {
  color: #ffffff;
}

.team-stats .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

.stat {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 200px;
  max-width: 300px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat .number {
  font-size: 48px;
  font-weight: 700;
  color: #F8B739;
  display: block;
}

.stat .label {
  font-size: 16px;
  color: #ffffff;
  display: block;
}

/* Testimonials About */
.testimonials-about {
  background: #ffffff;
}

.testimonials-about .testimonial-card {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 6px solid #d89500;
}

/* Portfolio */
.portfolio {
  background: #ffffff;
}

.case-study {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border-left: 6px solid #2C5F8D;
  position: relative;
}

.case-study h3 {
  color: #1a4a6d;
  margin-bottom: 20px;
  font-size: 24px;
}

.case-study p {
  margin-bottom: 12px;
  color: #4a4a4a;
}

.case-study strong {
  color: #1a4a6d;
  font-weight: 700;
}

.case-study blockquote {
  background: #ffffff;
  padding: 24px;
  border-left: 4px solid #d89500;
  margin: 24px 0 0 0;
  font-style: italic;
  color: #2d2d2d;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Results Stats */
.results-stats {
  background: linear-gradient(135deg, #2C5F8D 0%, #7BA7BC 100%);
  color: #ffffff;
  text-align: center;
}

.results-stats h2 {
  color: #ffffff;
}

.results-stats .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}

/* Contact Methods */
.contact-methods {
  background: #ffffff;
}

.contact-card {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  border-top: 4px solid #2C5F8D;
  transition: all 0.3s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-top-color: #d89500;
}

.contact-card h3 {
  color: #1a4a6d;
  margin-bottom: 16px;
}

.contact-card p {
  color: #4a4a4a;
  margin-bottom: 8px;
}

.contact-card a {
  color: #2C5F8D;
  font-weight: 600;
}

.contact-card a:hover {
  color: #d89500;
}

/* Contact Form Section */
.contact-form-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.form-note {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #d89500;
  max-width: 800px;
  margin: 0 auto;
}

.form-note p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

.form-note strong {
  color: #1a4a6d;
}

.form-note a {
  color: #2C5F8D;
  font-weight: 600;
}

.form-note a:hover {
  color: #d89500;
}

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

.form-note ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

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

/* Quote Process */
.quote-process {
  background: #ffffff;
}

.quote-process .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-process .step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  max-width: 100%;
}

.quote-process .step-number {
  flex-shrink: 0;
  margin: 0;
}

.quote-process .step h3 {
  margin-bottom: 8px;
}

.quote-process .step p {
  margin-bottom: 0;
}

/* Location */
.location {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.location ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto;
}

.location ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 16px;
}

.location ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #d89500;
  font-weight: 700;
  font-size: 18px;
}

/* Legal Page */
.legal-page {
  background: #ffffff;
  padding: 60px 20px;
}

.legal-page h1 {
  color: #1a4a6d;
  margin-bottom: 32px;
  font-size: 40px;
}

.legal-page h2 {
  color: #1a4a6d;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 26px;
  text-align: left;
}

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

.legal-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.legal-page ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
}

.legal-page ul li::before {
  content: '•';
  position: absolute;
  left: 12px;
  color: #2C5F8D;
  font-weight: 700;
  font-size: 20px;
}

/* Thank You Page */
.thank-you-page {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 20px;
  text-align: center;
  min-height: 60vh;
}

.thank-you-page h1 {
  color: #1a4a6d;
  margin-bottom: 16px;
  font-size: 48px;
}

.thank-you-page .subtitle {
  color: #d89500;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}

.thank-you-page p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #4a4a4a;
}

.thank-you-page h2 {
  color: #1a4a6d;
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
}

.thank-you-page ul {
  list-style: none;
  padding-left: 0;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: left;
}

.thank-you-page ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: #4a4a4a;
  font-size: 16px;
}

.thank-you-page ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d89500;
  font-weight: 700;
  font-size: 20px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #F8B739;
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #F8B739;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: 24px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a4a6d 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-consent p {
  color: #ffffff;
  margin: 0;
  flex: 1 1 300px;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

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

.cookie-accept:hover {
  background: #F8B739;
  transform: scale(1.05);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

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

.cookie-settings {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #F8B739;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
}

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

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
}

.cookie-category h3 {
  color: #1a4a6d;
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

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

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

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

input:disabled + .cookie-slider {
  background-color: #2C5F8D;
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  flex: 1;
  min-width: 140px;
}

.cookie-save {
  background: #d89500;
  color: #ffffff;
}

.cookie-save:hover {
  background: #F8B739;
}

.cookie-close {
  background: #e0e0e0;
  color: #2d2d2d;
}

.cookie-close:hover {
  background: #d0d0d0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 44px;
  }
  
  .footer-section {
    flex: 1 1 calc(50% - 40px);
  }
}

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Trust badges */
  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Service cards */
  .service-card {
    flex: 1 1 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Benefits */
  .benefit {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stat {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Quote process */
  .quote-process .step {
    flex-direction: column;
    text-align: center;
  }
  
  .quote-process .step-number {
    margin: 0 auto 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-page h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 40px 20px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* Accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus,
input:focus {
  outline: 3px solid #d89500;
  outline-offset: 2px;
}

/* Smooth transitions */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

img,
video {
  transition: none;
}

/* Prevent layout shift */
img {
  max-width: 100%;
  height: auto;
}

/* Content Grid Layout (Flexbox) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.content-grid > * {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

/* Text-Image Section (Flexbox) */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-image-section .text-content {
  flex: 1 1 55%;
  min-width: 300px;
}

.text-image-section .image-content {
  flex: 1 1 40%;
  min-width: 280px;
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
  
  .content-grid > * {
    flex: 1 1 100%;
  }
}