/* ========================================
   PERSENONIN DETAILING - VIBRANT ENERGETIC STYLE
   CSS Reset & Base Styles
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F4F8 100%);
  overflow-x: hidden;
}

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

h1 { font-size: 48px; letter-spacing: -1px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #2D3748;
}

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

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

li {
  margin-bottom: 8px;
  color: #2D3748;
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   BUTTONS - VIBRANT & ENERGETIC
   ======================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  color: #1A365D;
  border-color: #E8B923;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FFD700 0%, #E8B923 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 185, 35, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1A365D;
  border-color: #1A365D;
}

.btn-secondary:hover {
  background: #1A365D;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

/* ========================================
   MOBILE MENU TOGGLE BUTTON
   ======================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  color: #1A365D;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.6);
}

/* ========================================
   MOBILE MENU OVERLAY
   ======================================== */

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #1A365D 0%, #2C5282 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  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;
  background: transparent;
  color: #E8B923;
  border: 2px solid #E8B923;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  border-left-color: #E8B923;
  background: rgba(232, 185, 35, 0.1);
  padding-left: 30px;
}

/* ========================================
   HEADER - VIBRANT & BOLD
   ======================================== */

header {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  padding: 20px 0;
  box-shadow: 0 4px 20px rgba(26, 54, 93, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(232, 185, 35, 0.3));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

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

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

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

.header-cta .btn-primary {
  padding: 12px 24px;
  font-size: 14px;
}

/* ========================================
   HERO SECTION - HIGH ENERGY
   ======================================== */

.hero {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 50%, #E8B923 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.2) 0%, transparent 70%);
  animation: pulse 8s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  color: #E8B923;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

.trust-indicators span {
  color: #FFFFFF;
  font-weight: 600;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 185, 35, 0.3);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   VALUE PROPOSITION - DYNAMIC CARDS
   ======================================== */

.value-proposition {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
}

.value-proposition h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #1A365D;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.benefit-card {
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F4F8 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 185, 35, 0.1) 0%, transparent 70%);
  transition: all 0.4s ease;
  opacity: 0;
}

.benefit-card:hover::before {
  opacity: 1;
  transform: scale(1.5);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #E8B923;
  box-shadow: 0 15px 40px rgba(232, 185, 35, 0.3);
}

.benefit-card h3 {
  color: #1A365D;
  margin-bottom: 16px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: #2D3748;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========================================
   SERVICES OVERVIEW - ENERGETIC GRID
   ======================================== */

.services-overview {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C5282 0%, #1A365D 100%);
}

.services-overview h2 {
  text-align: center;
  color: #FFFFFF;
  font-size: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: #E8B923;
  font-size: 20px;
  margin-bottom: 50px;
  font-weight: 600;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #E8B923 0%, #FFD700 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: #E8B923;
  box-shadow: 0 15px 40px rgba(232, 185, 35, 0.4);
}

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

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

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* ========================================
   TESTIMONIALS - VIBRANT DESIGN
   ======================================== */

.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.testimonials h2 {
  text-align: center;
  color: #1A365D;
  font-size: 40px;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E8B923;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: #E8B923;
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

.testimonial-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #1A365D;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #E8B923;
  font-size: 20px;
  margin: 0;
}

.trust-badge {
  text-align: center;
  color: #1A365D;
  font-size: 18px;
  font-weight: 700;
  padding: 20px;
  background: rgba(232, 185, 35, 0.1);
  border-radius: 15px;
  border: 2px solid #E8B923;
}

/* ========================================
   CTA BANNER - HIGH IMPACT
   ======================================== */

.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2 {
  color: #1A365D;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner > p {
  color: #1A365D;
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: #1A365D;
  color: #FFFFFF;
  border-color: #1A365D;
}

.cta-banner .btn-primary:hover {
  background: #2C5282;
  border-color: #2C5282;
}

.cta-banner .btn-secondary {
  background: #FFFFFF;
  color: #1A365D;
  border-color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.urgency {
  color: #1A365D;
  font-weight: 700;
  font-size: 16px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ========================================
   PAGE HERO - BREADCRUMB
   ======================================== */

.page-hero,
.page-hero-simple {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  text-align: center;
}

.breadcrumb {
  color: #E8B923;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #FFFFFF;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #E8B923;
}

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

.page-hero p,
.page-hero-simple p {
  color: #E8B923;
  font-size: 20px;
  font-weight: 600;
}

/* ========================================
   SERVICES DETAILED PAGE
   ======================================== */

.services-detailed {
  padding: 60px 20px;
}

.service-item {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E8B923;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

.service-item h2 {
  color: #1A365D;
  font-size: 32px;
  margin-bottom: 20px;
}

.service-item p {
  color: #2D3748;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-item ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-item ul li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #2D3748;
  font-size: 16px;
}

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

.service-item .duration {
  color: #1A365D;
  font-weight: 600;
  font-size: 16px;
  margin: 20px 0;
}

.service-item .price {
  color: #E8B923;
  font-size: 32px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin: 20px 0;
}

/* ========================================
   PRICING PAGE
   ======================================== */

.pricing-intro {
  padding: 40px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  text-align: center;
}

.pricing-intro p {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2D3748;
}

.pricing-intro .guarantee {
  background: rgba(232, 185, 35, 0.1);
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #E8B923;
  color: #1A365D;
  font-weight: 700;
  margin-top: 20px;
}

.pricing-table {
  padding: 60px 20px;
  overflow-x: auto;
}

.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
}

.pricing-table thead th {
  color: #FFFFFF;
  padding: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #E2E8F0;
  transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
  background: rgba(232, 185, 35, 0.05);
}

.pricing-table tbody td {
  padding: 20px;
  color: #2D3748;
  font-size: 16px;
}

.pricing-table tbody td:first-child {
  font-weight: 700;
  color: #1A365D;
  font-family: 'Montserrat', sans-serif;
}

.pricing-additional {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.pricing-additional h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 40px;
}

.pricing-additional ul {
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.pricing-additional li {
  background: #FFFFFF;
  padding: 20px 30px;
  margin-bottom: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #E8B923;
  font-size: 18px;
  transition: all 0.3s ease;
}

.pricing-additional li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(232, 185, 35, 0.3);
}

/* ========================================
   ABOUT US PAGE
   ======================================== */

.story {
  padding: 60px 20px;
  background: #FFFFFF;
}

.story h2 {
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
}

.story p {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #2D3748;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  justify-content: center;
}

.milestone {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  color: #1A365D;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(232, 185, 35, 0.3);
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.5);
}

.milestone strong {
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
}

.values {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.values h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 50px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.value-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #E8B923;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

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

.value-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
}

/* ========================================
   GALLERY PAGE
   ======================================== */

.before-after {
  padding: 60px 20px;
  background: #FFFFFF;
}

.before-after h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 50px;
}

.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.showcase-item {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E8B923;
  transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

.showcase-item h3 {
  color: #1A365D;
  font-size: 24px;
  margin-bottom: 16px;
}

.showcase-item p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.showcase-item .services {
  color: #E8B923;
  font-weight: 600;
  font-style: italic;
  font-size: 14px;
}

.results-stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  text-align: center;
}

.results-stats h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 50px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid rgba(232, 185, 35, 0.3);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(232, 185, 35, 0.2);
  border-color: #E8B923;
}

.stat-card .number {
  color: #E8B923;
  font-size: 56px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 16px;
}

.stat-card p {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-methods {
  padding: 60px 20px;
  background: #FFFFFF;
}

.contact-methods h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 50px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.method-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #E8B923;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

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

.method-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
}

.method-card strong {
  color: #E8B923;
  font-size: 20px;
  display: block;
  margin: 10px 0;
}

.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

.contact-form-section h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-form-section > p {
  text-align: center;
  color: #2D3748;
  font-size: 18px;
  margin-bottom: 40px;
}

.form-note {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(232, 185, 35, 0.1);
  padding: 30px;
  border-radius: 15px;
  border: 2px solid #E8B923;
  text-align: center;
}

.form-note p {
  color: #1A365D;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.form-note strong {
  color: #E8B923;
}

.opening-hours {
  padding: 60px 20px;
  background: #FFFFFF;
}

.opening-hours h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 40px;
}

.hours-list {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #E8B923;
}

.hours-list p {
  color: #2D3748;
  font-size: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-content {
  padding: 60px 20px;
  background: #FFFFFF;
}

.legal-content h2 {
  color: #1A365D;
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.legal-content h3 {
  color: #2C5282;
  font-size: 22px;
  margin-bottom: 16px;
  margin-top: 30px;
}

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

.legal-content ul,
.legal-content ol {
  margin-left: 30px;
  margin-bottom: 20px;
}

.legal-content li {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-content a {
  color: #E8B923;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #1A365D;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */

.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 50%, #E8B923 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.thank-you-content .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: #E8B923;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #1A365D;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.4);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-content h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 20px;
}

.thank-you-content .subtitle {
  color: #E8B923;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.8;
}

.next-steps {
  padding: 60px 20px;
  background: #FFFFFF;
}

.next-steps h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 50px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.step-card {
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #E8B923;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

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

.step-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
}

.immediate-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  text-align: center;
}

.immediate-contact h2 {
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 20px;
}

.immediate-contact p {
  color: #1A365D;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.immediate-contact strong {
  font-size: 24px;
  display: block;
  margin: 10px 0;
}

.useful-links {
  padding: 60px 20px;
  background: #FFFFFF;
}

.useful-links h2 {
  text-align: center;
  color: #1A365D;
  font-size: 36px;
  margin-bottom: 50px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.link-card {
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(232, 185, 35, 0.3);
}

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

.link-card p {
  color: #2D3748;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.return-home {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #F7FAFC 0%, #FFFFFF 100%);
}

/* ========================================
   FOOTER - BOLD & VIBRANT
   ======================================== */

footer {
  background: linear-gradient(135deg, #1A365D 0%, #0F2744 100%);
  padding: 60px 20px 20px;
  color: #FFFFFF;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-col h4 {
  color: #E8B923;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #FFFFFF;
  font-size: 16px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: #E8B923;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E8B923;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  border-top: 2px solid rgba(232, 185, 35, 0.3);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.8;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-content p {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
  flex: 1 1 400px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cookie-accept {
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  color: #1A365D;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cookie-reject:hover {
  background: #FFFFFF;
  color: #1A365D;
}

.cookie-settings {
  background: transparent;
  color: #E8B923;
  border-color: #E8B923;
}

.cookie-settings:hover {
  background: #E8B923;
  color: #1A365D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: #1A365D;
  font-size: 28px;
  margin-bottom: 20px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F7FAFC;
  border-radius: 15px;
  border-left: 4px solid #E8B923;
}

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

.cookie-category p {
  color: #2D3748;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-toggle.active {
  background: #E8B923;
}

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

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

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

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: 25px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cookie-save {
  background: linear-gradient(135deg, #E8B923 0%, #FFD700 100%);
  color: #1A365D;
}

.cookie-save:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(232, 185, 35, 0.4);
}

.cookie-close {
  background: transparent;
  color: #1A365D;
  border-color: #1A365D;
}

.cookie-close:hover {
  background: #1A365D;
  color: #FFFFFF;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  /* Adjust hero CTA for mobile */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Stack benefit cards */
  .benefit-card {
    flex: 1 1 100%;
  }
  
  /* Stack service cards */
  .service-card {
    flex: 1 1 100%;
  }
  
  /* Stack testimonials */
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Stack CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  /* Footer columns stack */
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Pricing table scroll */
  .pricing-table {
    overflow-x: scroll;
  }
  
  /* Method cards stack */
  .method-card {
    flex: 1 1 100%;
  }
  
  /* Value cards stack */
  .value-card {
    flex: 1 1 100%;
  }
  
  /* Showcase items stack */
  .showcase-item {
    flex: 1 1 100%;
  }
  
  /* Stats stack */
  .stat-card {
    flex: 1 1 100%;
  }
  
  /* Step cards stack */
  .step-card {
    flex: 1 1 100%;
  }
  
  /* Link cards stack */
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Milestones stack */
  .milestone {
    flex: 1 1 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
  
  /* Reduce padding on mobile */
  .section {
    padding: 30px 15px;
  }
  
  .hero {
    padding: 60px 15px;
  }
  
  .cta-banner {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  /* Further reduce font sizes */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 {
    font-size: 32px;
  }
  
  /* Smaller buttons */
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }
  
  .trust-indicators span {
    width: 100%;
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

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

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

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

/* Apply smooth transitions to all interactive elements */
button,
a,
.card,
.benefit-card,
.service-card,
.testimonial-card {
  transition: all 0.3s ease;
}

/* Ensure smooth scrolling */
html {
  scroll-behavior: smooth;
}

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