/* 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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

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

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

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #1E3A5F;
}

h3 {
  font-size: 24px;
  color: #1E3A5F;
}

h4 {
  font-size: 18px;
  color: #1E3A5F;
}

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

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

ul {
  list-style: none;
}

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

/* Header */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

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

.logo {
  height: 50px;
  width: auto;
}

.main-nav {
  display: none;
  gap: 32px;
}

.main-nav a {
  color: #1E3A5F;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

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

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

.cta-button {
  display: none;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 10px;
  color: #D4AF37;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

.hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subheadline {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

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

.btn-primary, .btn-secondary {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

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

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

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

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

.services-overview, .why-choose-us, .pricing-table, .whats-included {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-overview .container,
.why-choose-us .container,
.pricing-table .container,
.whats-included .container {
  padding: 40px 20px;
}

.services-overview h2,
.why-choose-us h2,
.pricing-table h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-overview > .container > p,
.pricing-table > .container > p {
  text-align: center;
  color: #5A7C9E;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Grid */
.service-grid, .benefits-grid, .values-grid, .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card, .benefit, .value-card, .stat {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover, .benefit:hover, .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.service-card h3, .benefit h3, .value-card h3 {
  margin-bottom: 12px;
  color: #1E3A5F;
}

.service-card p, .benefit p, .value-card p {
  color: #5A7C9E;
  margin-bottom: 20px;
}

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

/* Statistics */
.stat {
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 32px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 16px;
  opacity: 0.95;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials .container {
  padding: 60px 20px;
}

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

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

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

.testimonial-card .author {
  color: #5A7C9E;
  font-weight: 600;
  font-style: normal;
}

.testimonial-card .rating {
  color: #D4AF37;
  font-size: 18px;
}

/* CTA Banner */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.cta-banner h2, .cta-section h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-banner p, .cta-section p {
  margin-bottom: 32px;
  font-size: 18px;
  opacity: 0.95;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.page-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
}

/* Services Detailed */
.services-detailed {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-detailed .container {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail {
  padding: 32px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 16px;
  border-left: 4px solid #667eea;
}

.service-detail h2 {
  margin-bottom: 16px;
}

.service-detail p {
  color: #5A7C9E;
  margin-bottom: 20px;
}

.service-detail ul {
  margin-bottom: 20px;
}

.service-detail ul li {
  color: #1a1a1a;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
}

.service-detail .price {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
}

/* Company Story & Values */
.company-story, .values, .statistics {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.company-story .container,
.values .container,
.statistics .container {
  padding: 60px 20px;
}

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

.company-story p {
  color: #5A7C9E;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Projects Showcase */
.projects-showcase {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.projects-showcase .container {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  border-left: 4px solid #764ba2;
}

.project-card h3 {
  margin-bottom: 12px;
}

.project-card p {
  color: #5A7C9E;
  margin-bottom: 20px;
}

.project-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.project-card ul li {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
}

/* Project Testimonials */
.project-testimonials {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.project-testimonials .container {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.project-testimonials .testimonial-card {
  margin-bottom: 0;
}

/* Pricing */
.price-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 40px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.price-card h3 {
  margin-bottom: 16px;
}

.price-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #667eea;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.price-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #5A7C9E;
}

.price-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
}

.whats-included h2 {
  text-align: center;
  margin-bottom: 32px;
}

.whats-included ul {
  max-width: 600px;
  margin: 0 auto;
}

.whats-included ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #5A7C9E;
  font-size: 18px;
}

.whats-included ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: 700;
  font-size: 20px;
}

/* Contact Page */
.contact-info {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info .container {
  padding: 60px 20px;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.contact-method h3 {
  margin-bottom: 16px;
  color: #667eea;
}

.contact-method p {
  color: #5A7C9E;
  margin-bottom: 8px;
}

.contact-form-section {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-section .container {
  padding: 60px 20px;
}

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

.contact-form-section > .container > p {
  text-align: center;
  color: #5A7C9E;
  margin-bottom: 40px;
}

.form-note {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.form-note p {
  color: #5A7C9E;
  margin-bottom: 24px;
}

.service-area {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-area .container {
  padding: 60px 20px;
  text-align: center;
}

.service-area h2 {
  margin-bottom: 24px;
}

.service-area p {
  color: #5A7C9E;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: white;
  color: #667eea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.next-steps, .alternative-contact, .useful-links {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.next-steps .container,
.alternative-contact .container,
.useful-links .container {
  padding: 60px 20px;
}

.next-steps h2,
.alternative-contact h2,
.useful-links h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.step {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 32px;
  border-radius: 16px;
  flex: 1 1 240px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.1);
}

.step h3 {
  color: #667eea;
  margin-bottom: 12px;
}

.step p {
  color: #5A7C9E;
}

.alternative-contact {
  text-align: center;
}

.alternative-contact p {
  color: #5A7C9E;
  font-size: 18px;
  margin-bottom: 16px;
}

.alternative-contact p strong {
  color: #1E3A5F;
}

.thank-you-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 32px;
}

.thank-you-nav a {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 16px 24px;
  border-radius: 12px;
  color: #667eea;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.thank-you-nav a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateX(5px);
}

.useful-links {
  text-align: center;
}

/* Legal Pages */
.legal-page {
  background: white;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-page .container {
  padding: 60px 40px;
}

.legal-page h1 {
  margin-bottom: 32px;
  color: #1E3A5F;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-page ul, .legal-page ol {
  margin-bottom: 16px;
  padding-left: 32px;
}

.legal-page li {
  color: #5A7C9E;
  margin-bottom: 8px;
  line-height: 1.6;
  list-style: disc;
}

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

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

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

.footer-column h4 {
  color: #D4AF37;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

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

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 5px;
}

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

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

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

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

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1E3A5F 0%, #2c4a6f 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

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

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

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

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(-50px);
  transition: transform 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: #f0f2ff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #667eea;
  color: white;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  background: #f8f9ff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category p {
  color: #5A7C9E;
  font-size: 14px;
  margin: 0;
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  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-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .cta-button {
    display: inline-block;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .hero {
    padding: 120px 20px;
  }

  .hero-subheadline {
    font-size: 20px;
  }

  section {
    padding: 80px 20px;
  }

  .service-card, .benefit, .value-card {
    flex: 1 1 300px;
  }

  .stat {
    flex: 1 1 250px;
  }

  .testimonial-card {
    flex: 1 1 450px;
  }

  .price-card {
    flex: 1 1 300px;
  }

  .step {
    flex: 1 1 220px;
  }

  .contact-method {
    flex: 1 1 300px;
  }

  .footer-content {
    justify-content: space-around;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  .service-card, .benefit, .value-card {
    flex: 1 1 280px;
  }
}

@media (max-width: 767px) {
  header .container {
    justify-content: space-between;
  }

  .logo {
    height: 40px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-badges {
    flex-direction: column;
  }

  .service-grid, .benefits-grid, .values-grid, .stats-grid {
    flex-direction: column;
  }

  .service-card, .benefit, .value-card, .stat {
    max-width: 100%;
  }

  .testimonial-grid {
    flex-direction: column;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .legal-nav {
    flex-direction: column;
    align-items: center;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }

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

  .legal-page .container {
    padding: 40px 24px;
  }

  .steps-grid {
    flex-direction: column;
  }

  .step {
    max-width: 100%;
  }

  .contact-methods {
    flex-direction: column;
  }

  .contact-method {
    max-width: 100%;
  }
}

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

.service-card, .benefit, .value-card, .testimonial-card, .project-card, .price-card {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Smooth Scrolling */
html {
  scroll-padding-top: 80px;
}

/* Focus States */
a:focus, button:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header, footer, .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none;
  }

  body {
    background: white;
  }

  .hero, .page-hero, .cta-banner, .cta-section {
    background: white;
    color: #1a1a1a;
  }

  .hero h1, .page-hero h1 {
    color: #1E3A5F;
  }
}
.price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.testimonial-card {
    max-height: 150px;
}