@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-fuchsia: #FF1493;
  --color-fuchsia-light: #FF69B4;
  --color-golden: #FFB700;
  --color-golden-dark: #D4A000;
  --color-midnight: #0A1628;
  --color-midnight-light: #1A2A40;
  --color-silk-white: #FDF8F5;
  --color-cream: #FFF5E6;
  --color-text-dark: #1A1A2E;
  --color-text-light: #F8F8FF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

*, p, strong {
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-silk-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

.stitched-border {
  position: relative;
}

.stitched-border::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 2px dashed var(--color-fuchsia);
  pointer-events: none;
}

.silk-gradient {
  background: linear-gradient(135deg, 
    rgba(255, 20, 147, 0.05) 0%, 
    rgba(255, 183, 0, 0.05) 50%, 
    rgba(10, 22, 40, 0.08) 100%);
}

.silk-thread-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.silk-thread-animation::before,
.silk-thread-animation::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--color-fuchsia-light) 25%, 
    var(--color-golden) 50%, 
    var(--color-fuchsia-light) 75%, 
    transparent 100%);
  animation: silkFlow 8s linear infinite;
}

.silk-thread-animation::after {
  animation-delay: -4s;
  top: 60%;
}

@keyframes silkFlow {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 8px 32px rgba(10, 22, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.glass-card-dark {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 183, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    4px 4px 0 var(--color-midnight),
    6px 6px 20px rgba(10, 22, 40, 0.25);
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 
    6px 6px 0 var(--color-midnight),
    8px 8px 25px rgba(10, 22, 40, 0.3);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 
    2px 2px 0 var(--color-midnight),
    3px 3px 15px rgba(10, 22, 40, 0.2);
}

/* Hero section primary button - contrasting to dark background */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--color-golden) 0%, var(--color-golden-dark) 100%);
  color: var(--color-midnight);
  box-shadow: 
    4px 4px 0 var(--color-midnight),
    6px 6px 20px rgba(255, 183, 0, 0.3);
  min-height: 52px;
  white-space: nowrap;
}

.btn-primary-hero:hover {
  transform: translate(-2px, -2px);
  box-shadow: 
    6px 6px 0 var(--color-midnight),
    8px 8px 25px rgba(255, 183, 0, 0.4);
}

.btn-primary-hero:active {
  transform: translate(2px, 2px);
  box-shadow: 
    2px 2px 0 var(--color-midnight),
    3px 3px 15px rgba(255, 183, 0, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 2px solid var(--color-midnight);
  border-radius: 8px;
  background: transparent;
  color: var(--color-midnight);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 48px;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--color-midnight);
  color: var(--color-text-light);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, var(--color-golden) 0%, var(--color-golden-dark) 100%);
  color: var(--color-midnight);
  box-shadow: 
    4px 4px 0 var(--color-midnight),
    6px 6px 20px rgba(255, 183, 0, 0.3);
  min-height: 52px;
  white-space: nowrap;
}

.btn-accent:hover {
  transform: translate(-2px, -2px);
  box-shadow: 
    6px 6px 0 var(--color-midnight),
    8px 8px 25px rgba(255, 183, 0, 0.4);
}

.section-padding {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 100px 0;
  }
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-fuchsia) 0%, var(--color-golden) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-overlay {
  background: linear-gradient(180deg, 
    rgba(10, 22, 40, 0.4) 0%, 
    rgba(10, 22, 40, 0.6) 50%,
    rgba(10, 22, 40, 0.8) 100%);
}

.floating-animation {
  animation: float 6s ease-in-out infinite;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 20px 40px rgba(10, 22, 40, 0.15),
    0 0 0 2px var(--color-golden);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-fuchsia), var(--color-golden));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.benefit-item {
  position: relative;
  padding-left: 3rem;
}

.benefit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-golden));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
}

.review-card {
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  font-family: var(--font-display);
  color: var(--color-fuchsia);
  opacity: 0.1;
  line-height: 1;
}

.team-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

.team-image {
  transition: transform 0.6s ease;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.9) 100%);
}

.process-step {
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-golden), var(--color-fuchsia));
}

.process-step:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .process-step::after {
    display: none;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

.blog-card {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid rgba(10, 22, 40, 0.15);
  border-radius: 8px;
  background: white;
  color: var(--color-text-dark);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--color-golden);
  box-shadow: 0 0 0 4px rgba(255, 183, 0, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(26, 26, 46, 0.5);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  padding: 24px;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 183, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  animation: slideUp 0.6s ease;
}

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

.cookie-consent-banner h4 {
  color: var(--color-golden);
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.cookie-consent-banner p {
  color: rgba(248, 248, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-golden), var(--color-golden-dark));
  border: none;
  color: var(--color-midnight);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.4);
}

.cookie-btn-decline {
  background: transparent;
  border: 2px solid rgba(248, 248, 255, 0.3);
  color: var(--color-text-light);
}

.cookie-btn-decline:hover {
  border-color: var(--color-text-light);
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: rgba(253, 248, 245, 0.9);
  backdrop-filter: blur(12px);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-midnight);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-golden));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-fuchsia), var(--color-golden));
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--color-fuchsia);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-midnight);
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(253, 248, 245, 0.98);
  backdrop-filter: blur(12px);
  padding: 24px;
  transform: translateY(-150%);
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--color-fuchsia);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.site-footer {
  background: var(--color-midnight);
  color: var(--color-text-light);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-golden));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.footer-desc {
  color: rgba(248, 248, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-golden);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(248, 248, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-fuchsia-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(248, 248, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-golden);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 248, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(248, 248, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(248, 248, 255, 0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-fuchsia-light);
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 183, 0, 0.2);
  border: 1px solid var(--color-golden);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-golden);
  margin-bottom: 24px;
}

.hero-title {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(248, 248, 255, 0.85);
  margin-bottom: 32px;
  max-width: 540px;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(248, 248, 255, 0.2);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-golden);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(248, 248, 255, 0.7);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-fuchsia);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-subtitle {
  font-size: 1.0625rem;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.7;
}

.about-section {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-silk-white) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-golden));
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 20, 147, 0.3);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.875rem;
  color: white;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 2.5rem;
  }
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

@media (min-width: 480px) {
  .about-features {
    grid-template-columns: 1fr 1fr;
  }
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.15), rgba(255, 183, 0, 0.15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fuchsia);
  flex-shrink: 0;
}

.services-section {
  background: var(--color-silk-white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 183, 0, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-fuchsia);
}

.service-title {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.service-desc {
  font-size: 0.95rem;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-golden-dark);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-fuchsia);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.benefits-section {
  background: linear-gradient(180deg, var(--color-midnight) 0%, var(--color-midnight-light) 100%);
  color: var(--color-text-light);
}

.benefits-section .section-label {
  color: var(--color-golden);
}

.benefits-section .section-title {
  color: var(--color-text-light);
}

.benefits-section .section-subtitle {
  color: rgba(248, 248, 255, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.benefit-icon-large {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-golden));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.bg-white .benefit-title {
  color: var(--color-text-dark);
}

.benefit-text {
  font-size: 0.95rem;
  color: rgba(248, 248, 255, 0.7);
  line-height: 1.7;
}

.reviews-section {
  background: var(--color-cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.06);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--color-golden);
}

.review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  font-weight: 600;
  color: var(--color-text-dark);
}

.review-role {
  font-size: 0.875rem;
  color: rgba(26, 26, 46, 0.6);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-midnight-light) 100%);
  color: var(--color-text-light);
  text-align: center;
}

.cta-section .section-title {
  color: var(--color-text-light);
  font-size: 2rem;
}

@media (min-width: 768px) {
  .cta-section .section-title {
    font-size: 2.75rem;
  }
}

.cta-section .section-subtitle {
  color: rgba(248, 248, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 32px;
}

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

.contact-section {
  background: var(--color-silk-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.0625rem;
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 183, 0, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-fuchsia);
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(26, 26, 46, 0.5);
  margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 1.0625rem;
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-item-content a:hover {
  color: var(--color-fuchsia);
}

.contact-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.form-group label span {
  color: #e53935;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-silk-white) 100%);
  padding: 120px 20px 80px;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--color-golden), var(--color-golden-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  color: var(--color-midnight);
  animation: float 3s ease-in-out infinite;
}

.thank-you-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.thank-you-text {
  font-size: 1.125rem;
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

.legal-section {
  padding: 140px 0 80px;
  background: var(--color-silk-white);
  min-height: 100vh;
}

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

.legal-content h1 {
  font-size: 2.25rem;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 8px;
}

.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-midnight-light) 100%);
  padding-top: 100px;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(10, 22, 40, 0.3) 0%, 
    rgba(10, 22, 40, 0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.page-hero-title {
  font-size: 2.5rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .page-hero-title {
    font-size: 3.5rem;
  }
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(248, 248, 255, 0.8);
  max-width: 600px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.process-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-fuchsia), var(--color-golden));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.process-desc {
  font-size: 0.95rem;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  color: rgba(26, 26, 46, 0.5);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--color-fuchsia);
}

.blog-excerpt {
  font-size: 0.95rem;
  color: rgba(26, 26, 46, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-fuchsia);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 12px;
}

.detail-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-midnight) 0%, var(--color-midnight-light) 100%);
  padding-top: 100px;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
}

.detail-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .detail-hero h1 {
    font-size: 3.5rem;
  }
}

.detail-hero p {
  font-size: 1.125rem;
  color: rgba(248, 248, 255, 0.85);
  max-width: 600px;
}

.detail-content {
  padding: 60px 0;
}

.detail-section {
  margin-bottom: 48px;
}

.detail-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--color-text-dark);
}

.detail-section p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 16px;
}

.detail-section ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.detail-section li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26, 26, 46, 0.8);
  margin-bottom: 12px;
}

.detail-pricing {
  background: var(--color-cream);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
}

.detail-pricing h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-name {
  font-weight: 500;
  color: var(--color-text-dark);
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-golden-dark);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}

.team-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 1.125rem;
  margin-bottom: 4px;
  color: var(--color-text-dark);
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-fuchsia);
  font-weight: 500;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
