/* ===================================
   SLICKVAULT NOTARIAT - PLAYFUL DYNAMIC STYLE
   Modern, Energetic, Professional Design
   =================================== */

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

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

body {
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.7;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  overflow-x: hidden;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #154166;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  color: #154166;
  text-shadow: 2px 2px 4px rgba(21, 65, 102, 0.1);
  animation: slideInDown 0.8s ease-out;
}

h2 {
  font-size: 36px;
  color: #1a4d7a;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #9d8010, #d4af37);
  border-radius: 2px;
}

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

h4 {
  font-size: 20px;
  color: #2c5f8d;
}

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

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

a:hover {
  color: #9d8010;
  transform: translateX(2px);
}

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

li {
  margin-bottom: 8px;
}

/* ANIMATIONS */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #1a4d7a, #2c5f8d);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(21, 65, 102, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #2c5f8d, #3a7eb0);
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(21, 65, 102, 0.4);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #154166 0%, #1a4d7a 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  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;
  gap: 5px;
}

.mobile-nav a {
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(157, 128, 16, 0.8);
  transform: translateX(10px);
  box-shadow: 0 4px 10px rgba(157, 128, 16, 0.3);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #154166 0%, #1a4d7a 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(21, 65, 102, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  animation: slideInDown 0.6s ease-out;
}

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

.logo {
  height: 60px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
  animation: wiggle 0.5s ease;
}

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

.main-nav a {
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #9d8010, #d4af37);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 15px rgba(157, 128, 16, 0.4);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 50%, #7dd3fc 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

.hero h1 {
  color: white;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  color: white;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

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

.trust-badges span {
  background: rgba(255, 255, 255, 0.9);
  color: #154166;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.trust-badges span:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: white;
}

/* BREADCRUMB */
.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f97316, #fb923c);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: white;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  animation: fadeInUp 0.8s ease-out;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #3d3d3d;
}

/* SERVICE CARDS */
.services-grid,
.services-overview .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

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

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
  border-color: #0ea5e9;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #f59e0b;
  margin: 12px 0;
  display: block;
}

.service-card p {
  color: #3d3d3d;
  line-height: 1.6;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.step,
.process-step {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step:hover,
.process-step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
  animation: bounce 2s ease-in-out infinite;
}

.step h3,
.process-step h3 {
  color: #154166;
  margin-bottom: 12px;
  font-size: 20px;
}

.step p,
.process-step p {
  color: #3d3d3d;
  font-size: 15px;
}

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

.benefit-item {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #0ea5e9;
}

.benefit-item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
  border-left-width: 8px;
}

.benefit-item h3 {
  color: #154166;
  margin-bottom: 12px;
  font-size: 20px;
}

.benefit-item p {
  color: #3d3d3d;
  font-size: 15px;
}

/* TEXT SECTIONS */
.text-section {
  background: white;
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.text-section:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

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

/* SERVICE BLOCKS */
.service-block {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 24px;
  border-left: 5px solid #0ea5e9;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-block:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
  border-left-width: 8px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.service-features li {
  background: rgba(14, 165, 233, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  list-style: none;
  color: #154166;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-features li:hover {
  background: rgba(14, 165, 233, 0.2);
  transform: scale(1.05);
}

.service-price {
  font-size: 18px;
  font-weight: 700;
  color: #f59e0b;
  margin-top: 16px;
}

/* PRICING */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.price-item {
  background: white;
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #0ea5e9;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
  border-top-width: 6px;
}

.price-item h3 {
  color: #154166;
  margin-bottom: 16px;
  font-size: 20px;
}

.price-item .price {
  font-size: 28px;
  font-weight: 700;
  color: #f59e0b;
  display: block;
  margin: 12px 0;
}

.price-item p {
  color: #3d3d3d;
  font-size: 15px;
}

/* PRICING CATEGORIES */
.pricing-category {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 32px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-category h3 {
  color: #154166;
  margin-bottom: 24px;
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0ea5e9;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-list .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  border-top: none;
  border-left: 4px solid #0ea5e9;
}

.service-name {
  font-weight: 600;
  color: #154166;
  flex: 1;
}

.price-list .price {
  font-size: 20px;
  font-weight: 700;
  color: #f59e0b;
  margin: 0;
}

/* PACKAGE CARDS */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.package-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.package-card:hover::before {
  left: 100%;
}

.package-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
  border-color: #f59e0b;
}

.package-card h3 {
  color: #154166;
  margin-bottom: 16px;
  font-size: 24px;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: #f59e0b;
  margin: 16px 0;
  display: block;
}

.package-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.package-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(21, 65, 102, 0.1);
  color: #3d3d3d;
}

.package-card li:last-child {
  border-bottom: none;
}

.package-ideal {
  font-weight: 600;
  color: #154166;
  margin-top: 16px;
  font-size: 14px;
}

/* LOCATION & CONTACT */
.location-info,
.location-details,
.contact-options {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.contact-option {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 32px;
  border-radius: 15px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.contact-option h3 {
  color: #154166;
  margin-bottom: 16px;
  font-size: 22px;
}

.contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: #1a4d7a;
  margin: 16px 0;
}

.contact-hours {
  color: #3d3d3d;
  font-size: 14px;
  font-style: italic;
}

/* OFFICE HOURS */
.hours-table {
  background: white;
  padding: 24px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 32px auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 2px solid #e0f2fe;
  transition: all 0.3s ease;
}

.hours-row:hover {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  transform: translateX(10px);
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #154166;
  font-size: 16px;
}

.time {
  color: #1a4d7a;
  font-weight: 500;
}

/* VALUES & STATS */
.values-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-item,
.stat-item {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-item:hover,
.stat-item:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.stat-item h3 {
  font-size: 48px;
  color: #f59e0b;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat-item p {
  color: #154166;
  font-weight: 600;
  font-size: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
}

.thank-you-content {
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: bounce 2s ease-in-out infinite;
}

.confirmation-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.confirmation-step {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  padding: 28px;
  border-radius: 15px;
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.confirmation-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

/* FORM CONTAINER */
.form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: 0 auto;
}

.form-fields-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.form-fields-list li {
  padding: 12px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 8px;
  margin-bottom: 12px;
  color: #154166;
  font-weight: 600;
  transition: all 0.3s ease;
}

.form-fields-list li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  margin: 60px 0;
}

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

.cta-section p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #154166 0%, #1a4d7a 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-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

.footer-col p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-nav a:hover {
  color: #d4af37;
  transform: translateX(5px);
  padding-left: 10px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #154166 0%, #1a4d7a 100%);
  color: white;
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #10b981, #34d399);
  color: white;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #34d399, #6ee7b7);
  transform: scale(1.05);
}

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

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

.cookie-settings {
  background: rgba(212, 175, 55, 0.8);
  color: white;
}

.cookie-settings:hover {
  background: rgba(212, 175, 55, 1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide main navigation on mobile */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Flex direction changes */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Grid adjustments */
  .service-card,
  .price-item,
  .package-card,
  .benefit-item,
  .contact-option {
    flex: 1 1 100%;
  }
  
  .step,
  .process-step,
  .value-item,
  .stat-item,
  .confirmation-step {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Padding adjustments */
  section {
    padding: 32px 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .service-card,
  .text-section,
  .service-block,
  .contact-option {
    padding: 24px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
}

/* UTILITY CLASSES */
.info-note,
.pricing-note,
.package-note,
.hours-note,
.form-note {
  background: rgba(14, 165, 233, 0.1);
  padding: 16px;
  border-radius: 10px;
  border-left: 4px solid #0ea5e9;
  color: #154166;
  font-size: 14px;
  margin: 24px 0;
}

.benefits-list,
.expertise-list,
.directions-list,
.parking-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.benefits-list li,
.expertise-list li,
.directions-list li,
.parking-list li {
  padding: 12px;
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.benefits-list li:hover,
.expertise-list li:hover,
.directions-list li:hover,
.parking-list li:hover {
  background: rgba(14, 165, 233, 0.1);
  transform: translateX(10px);
}

.benefits-list li::before,
.expertise-list li::before,
.directions-list li::before,
.parking-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #10b981;
  font-weight: 700;
  font-size: 18px;
}

.guarantee,
.response-guarantee,
.accessibility-note {
  text-align: center;
  margin-top: 24px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* ANIMATIONS FOR SCROLL */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}