/* ================================
   NOBLE LEVERAGE - LUXURY PREMIUM CSS
   Responsive, Mobile-First Design
   ================================ */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
  line-height: 1.7;
}

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

a:hover {
  color: #C9A961;
}

ul {
  list-style: none;
}

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

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

/* HEADER */
header {
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(27, 59, 95, 0.15);
  border-bottom: 2px solid #C9A961;
}

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

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

/* MAIN NAVIGATION */
.main-nav {
  display: none;
}

.main-nav a {
  color: #FFFFFF;
  font-weight: 500;
  padding: 12px 20px;
  margin: 0 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: #C9A961;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  background: rgba(201, 169, 97, 0.1);
  color: #C9A961;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 97, 0.9);
  border: 2px solid #C9A961;
  border-radius: 8px;
  color: #1B3B5F;
  font-size: 24px;
  cursor: pointer;
  z-index: 1100;
  position: fixed;
  top: 20px;
  right: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  z-index: 2000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  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;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid #C9A961;
  border-radius: 50%;
  color: #C9A961;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(201, 169, 97, 0.15);
  border-left-color: #C9A961;
  padding-left: 24px;
  color: #C9A961;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #1B3B5F;
  border-color: #C9A961;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #B89850 0%, #A78740 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
  color: #1B3B5F;
}

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

.btn-secondary:hover {
  background: #1B3B5F;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 59, 95, 0.3);
}

.btn-link {
  color: #C9A961;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link:hover {
  color: #B89850;
  gap: 12px;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 50%, #1B3B5F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,100 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(201,169,97,0.05)"/></svg>');
  background-size: cover;
  opacity: 0.3;
}

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

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

.hero-subheadline {
  font-size: 20px;
  color: #F4F4F4;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
}

.trust-badges span {
  color: #C9A961;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  background: rgba(201, 169, 97, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  color: #FFFFFF;
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 3px solid #C9A961;
}

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #F4F4F4;
  font-size: 18px;
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #C9A961;
}

.breadcrumb a {
  color: #C9A961;
}

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

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* VALUE PROPOSITION */
.value-proposition {
  background: linear-gradient(to bottom, #FFFFFF 0%, #F9F9F9 100%);
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #1B3B5F;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 60px;
}

.benefit-item {
  flex: 1 1 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.benefit-item h3 {
  color: #C9A961;
  margin-bottom: 16px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding: 48px 0;
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  border-radius: 12px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item strong {
  font-size: 48px;
  color: #C9A961;
  font-family: 'Playfair Display', serif;
}

.stat-item span {
  color: #FFFFFF;
  font-size: 16px;
}

/* SERVICES GRID */
.services-grid,
.services-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.service-price-item {
  flex: 1 1 320px;
  max-width: 380px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #F4F4F4;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.service-card:hover,
.service-price-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(27, 59, 95, 0.15);
  border-color: #C9A961;
}

.service-card h3 {
  color: #1B3B5F;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #C9A961;
  font-family: 'Playfair Display', serif;
  margin: 8px 0;
}

/* PROCESS STEPS */
.process {
  background: linear-gradient(to bottom, #F9F9F9 0%, #FFFFFF 100%);
  text-align: center;
}

.process h2 {
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #1B3B5F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

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

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #F9F9F9 0%, #FFFFFF 100%);
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C9A961;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.testimonial-card p {
  color: #2C2C2C;
  font-style: italic;
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #F4F4F4;
}

.testimonial-author strong {
  color: #1B3B5F;
  font-size: 16px;
}

.testimonial-author span {
  color: #666;
  font-size: 14px;
}

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

.trust-indicators span {
  color: #C9A961;
  font-weight: 600;
  padding: 12px 24px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 2px solid #C9A961;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* CTA SECTIONS */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(201, 169, 97, 0.03) 10px,
    rgba(201, 169, 97, 0.03) 20px
  );
}

.cta-banner h2,
.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p,
.cta-section p {
  color: #F4F4F4;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

.guarantee,
.guarantee-badge {
  margin-top: 24px;
  color: #C9A961;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

/* PRICING CARDS */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 340px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #F4F4F4;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(27, 59, 95, 0.15);
  border-color: #C9A961;
}

.pricing-card.popular {
  border-color: #C9A961;
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #1B3B5F;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.pricing-card h2 {
  color: #1B3B5F;
  text-align: center;
  margin-bottom: 16px;
}

.pricing-card .price {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #C9A961;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.pricing-card .price span {
  font-size: 18px;
  color: #666;
}

.pricing-card .package-description {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-bottom: 16px;
}

.pricing-card h3 {
  color: #1B3B5F;
  font-size: 18px;
  margin: 24px 0 16px;
  padding-top: 24px;
  border-top: 1px solid #F4F4F4;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-card ul li {
  padding-left: 28px;
  position: relative;
  color: #4A4A4A;
  line-height: 1.6;
}

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

.pricing-card .ideal-for {
  font-size: 14px;
  color: #666;
  padding: 16px;
  background: #F9F9F9;
  border-radius: 8px;
  margin-top: auto;
}

/* LOCATIONS */
.location-card,
.location-contact-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.location-card:hover,
.location-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.location-card h2,
.location-contact-card h3 {
  color: #1B3B5F;
  margin-bottom: 12px;
}

.location-address {
  color: #C9A961;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 18px;
}

.location-card h3 {
  color: #1B3B5F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.location-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.location-card ul li {
  padding-left: 24px;
  position: relative;
  color: #4A4A4A;
}

.location-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-weight: 700;
}

.locations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.location-item {
  flex: 1 1 240px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #C9A961;
  text-align: center;
  transition: all 0.3s ease;
}

.location-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.location-item h3 {
  color: #1B3B5F;
  margin-bottom: 8px;
}

.location-item p {
  color: #666;
  font-size: 14px;
}

.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

/* FAQ */
.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  color: #1B3B5F;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #C9A961;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.15);
}

.faq-item h3 {
  color: #1B3B5F;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #4A4A4A;
  line-height: 1.7;
}

/* SERVICE DETAILS */
.service-detail {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-top: 4px solid #C9A961;
}

.service-detail h2 {
  color: #1B3B5F;
  margin-bottom: 16px;
}

.price-tag {
  display: inline-block;
  font-size: 32px;
  font-weight: 700;
  color: #C9A961;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
  padding: 8px 20px;
  background: linear-gradient(to right, rgba(201, 169, 97, 0.1), transparent);
  border-radius: 8px;
}

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

.service-detail ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-detail ul li {
  padding-left: 24px;
  position: relative;
  color: #4A4A4A;
}

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

/* GUARANTEES & FEATURES */
.guarantees-grid,
.values-grid,
.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.guarantee-item,
.value-item,
.achievement-item {
  flex: 1 1 220px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 3px solid #C9A961;
  transition: all 0.3s ease;
}

.guarantee-item:hover,
.value-item:hover,
.achievement-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.guarantee-item h3,
.value-item h3 {
  color: #1B3B5F;
  margin-bottom: 12px;
  font-size: 18px;
}

.achievement-item strong {
  display: block;
  font-size: 48px;
  color: #C9A961;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.achievement-item span {
  color: #666;
  font-size: 14px;
}

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

.discount-item {
  flex: 1 1 240px;
  max-width: 300px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border: 2px solid #C9A961;
  transition: all 0.3s ease;
}

.discount-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.discount-item h3 {
  color: #C9A961;
  margin-bottom: 12px;
}

/* CONTACT SECTIONS */
.contact-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 300px;
  max-width: 400px;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(201, 169, 97, 0.2);
}

.contact-option h3 {
  color: #1B3B5F;
  margin-bottom: 16px;
}

.info-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C9A961;
  max-width: 600px;
  margin: 0 auto;
}

.info-card h3 {
  color: #1B3B5F;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #1B3B5F;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-hero .subheadline {
  color: #F4F4F4;
  font-size: 18px;
}

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

.step-item,
.action-item {
  flex: 1 1 220px;
  max-width: 280px;
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 4px solid #C9A961;
}

.legal-section h2 {
  color: #1B3B5F;
  margin-bottom: 16px;
}

.legal-section p,
.legal-section ul {
  color: #4A4A4A;
  line-height: 1.8;
}

.legal-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}

.legal-section ul li {
  padding-left: 24px;
  position: relative;
}

.legal-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #C9A961;
  font-weight: 700;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  color: #FFFFFF;
  padding: 60px 20px 32px;
  margin-top: 80px;
  border-top: 4px solid #C9A961;
}

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

.footer-section {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-section h4 {
  color: #C9A961;
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-section p,
.footer-section ul li {
  color: #F4F4F4;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-section a {
  color: #F4F4F4;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #C9A961;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  text-align: center;
}

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

.footer-legal a {
  color: #F4F4F4;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  background: rgba(201, 169, 97, 0.1);
  color: #C9A961;
}

.footer-bottom p {
  color: #F4F4F4;
  font-size: 13px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1B3B5F 0%, #2A4A6F 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid #C9A961;
}

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

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

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

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #1B3B5F;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #B89850 0%, #A78740 100%);
  transform: translateY(-2px);
}

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

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

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

.cookie-settings:hover {
  background: rgba(201, 169, 97, 0.1);
}

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

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

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

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

.cookie-modal-close:hover {
  background: #1B3B5F;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #1B3B5F;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  border-radius: 8px;
  background: #F9F9F9;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category h3 {
  color: #1B3B5F;
  margin-bottom: 8px;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .hero h1 {
    font-size: 56px;
  }

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

@media (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .hero-cta {
    flex-direction: column;
  }

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

  .benefits-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .pricing-grid,
  .locations-grid,
  .guarantees-grid,
  .values-grid,
  .discounts-grid {
    flex-direction: column;
  }

  .benefit-item,
  .service-card,
  .step,
  .testimonial-card,
  .pricing-card,
  .location-item,
  .guarantee-item,
  .value-item,
  .discount-item {
    max-width: 100%;
  }

  .pricing-card.popular {
    transform: scale(1);
  }

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

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-consent-buttons button {
    width: 100%;
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

.trust-badge {
  display: inline-block;
  background: linear-gradient(135deg, #C9A961 0%, #B89850 100%);
  color: #1B3B5F;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

/* ENSURE NO OVERLAPPING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
}

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

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}