:root {
  --deep-space: #1A1B3A;
  --onyx-grey: #2D2F5A;
  --shadow-steel: #5B4E7D;
  --light-fog: #F5F3F0;
  --carbon-fog: #7A6B9E;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  
  --font-primary: 'Cormorant Garamond', serif;
  --font-secondary: 'Work Sans', sans-serif;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(26, 27, 58, 0.1);
  --shadow-md: 0 4px 16px rgba(26, 27, 58, 0.15);
  --shadow-lg: 0 8px 32px rgba(26, 27, 58, 0.2);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-secondary);
  font-size: 0.938rem;
  line-height: 1.6;
  color: var(--deep-space);
  background: var(--light-fog);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--deep-space);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  color: var(--shadow-steel);
  text-decoration: none;
  transition: color var(--transition-fast);
}


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

.container {
  width: 90%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header-wrapper {
  background: linear-gradient(135deg, var(--deep-space) 0%, var(--onyx-grey) 100%);
  position: relative;
  z-index: 100;
  transform: translateY(0);
  transition: transform var(--transition-normal);
}

.header-wrapper.hidden {
  transform: translateY(-100%);
}

header {
  padding: var(--space-md) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo span{
  font-family: var(--font-primary);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--light-fog);
  letter-spacing: 0.05em;
}
.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.5rem;
  gap: 7px;
  font-weight: 700;
  color: var(--primary-color);
}
.logo>img{
  width: 50px;
  border-top-left-radius: 40px;
  border: solid #5B4E7D;
  border-bottom-right-radius: 40px;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.375rem;
  background: none;
  border: none;
  padding: var(--space-xs);
  z-index: 110;
}
.faq-item {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
}

.faq-icon {
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  color: var(--shadow-steel);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

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

.faq-answer-content {
  padding-top: var(--space-md);
}

.faq-answer p {
  margin-bottom: var(--space-sm);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}
.burger span {
  width: 1.75rem;
  height: 0.188rem;
  background: var(--light-fog);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.438rem, 0.438rem);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.438rem, -0.438rem);
}

nav ul {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
}

nav a {
  color: var(--light-fog);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-xs) 0;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.125rem;
  background: var(--light-fog);
  transition: width var(--transition-fast);
}

nav a:hover::after {
  width: 100%;
}

.hero {
  background: linear-gradient(135deg, var(--shadow-steel) 0%, var(--carbon-fog) 50%, var(--onyx-grey) 100%);
  color: var(--light-fog);
  padding: calc(var(--space-xl) * 1.5) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 35rem;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(245, 243, 240, 0.12) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(245, 243, 240, 0.03) 2px,
      rgba(245, 243, 240, 0.03) 4px
    );
  pointer-events: none;
  opacity: 0.5;
}

.hero-content::before,
.hero-content::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 243, 240, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.hero-content::before {
  width: 20rem;
  height: 20rem;
  top: -10rem;
  right: -5rem;
  animation-delay: 0s;
}

.hero-content::after {
  width: 15rem;
  height: 15rem;
  bottom: -8rem;
  left: -3rem;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(2rem, -2rem) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes heroGlow {
  0% {
    transform: translate(-20%, -20%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-10%, -10%) scale(1.1);
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  animation: heroFadeIn 1s ease-out;
  width: 100%;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  color: var(--light-fog);
  margin-bottom: var(--space-md);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  display: inline-block;
  padding: 0 var(--space-md);
}

.hero h1::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, transparent, var(--light-fog), transparent);
  border-radius: var(--radius-sm);
  opacity: 0.6;
}

.hero h1::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, transparent, var(--light-fog), transparent);
  border-radius: var(--radius-sm);
  opacity: 0.6;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  color: rgba(245, 243, 240, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: 300;
  letter-spacing: 0.01em;
}

.hero .btn {
  position: relative;
  overflow: hidden;
  background: var(--light-fog);
  color: var(--deep-space);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(245, 243, 240, 0.4);
  transform: translateY(0);
  transition: all var(--transition-normal);
  z-index: 1;
}

.hero .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(91, 78, 125, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.hero .btn:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(245, 243, 240, 0.2);
}

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

.hero .btn:active {
  transform: translateY(-0.125rem);
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--light-fog);
  color: var(--deep-space);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-normal);
  border: 0.125rem solid transparent;
  cursor: pointer;
}



.btn-outline {
  background: transparent;
  color: var(--deep-space);
  border: 0.125rem solid var(--deep-space);
}

.btn-outline:hover {
  background: var(--deep-space);
  color: var(--light-fog);
}

section {
  padding: var(--space-xl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 4rem;
  height: 0.188rem;
  background: var(--shadow-steel);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-sm);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-md);
  color: var(--shadow-steel);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

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

.product-card img {
  width: 100%;
  height: 15.625rem;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--shadow-steel);
  margin: var(--space-sm) 0;
}

.contact-wrapper {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
}

.contact-grid {
display: flex;

  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contact-info {
  background: linear-gradient(135deg, var(--deep-space), var(--onyx-grey));
  color: var(--light-fog);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
}

.contact-info h3 {
  color: var(--light-fog);
  margin-bottom: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.contact-item i {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 600;
  font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 0.063rem solid #ddd;
  border-radius: var(--radius-sm);
  font-family: var(--font-secondary);
  font-size: 0.938rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--shadow-steel);
}

.form-group textarea {
  resize: vertical;
  min-height: 9.375rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.813rem;
  font-weight: 400;
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 25rem;
  border: none;
}

footer {
  background: var(--deep-space);
  color: var(--light-fog);
  padding: var(--space-lg) 0 var(--space-md);
  text-align: center;
  font-size: 0.813rem;
}

.footer-menu {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  list-style: none;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.footer-menu a {
  color: var(--light-fog);
  font-size: 0.813rem;
}

.footer-menu a:hover {
  color: var(--carbon-fog);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-space);
  color: var(--light-fog);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

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

.cookie-content {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btn {
  padding: 0.625rem 1.25rem;
  background: var(--light-fog);
  color: var(--deep-space);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.813rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-btn:hover {
  opacity: 0.9;
}

.cookie-btn-outline {
  background: transparent;
  border: 0.063rem solid var(--light-fog);
  color: var(--light-fog);
}

.thank-you-wrapper {
  text-align: center;
  
  max-width: 37.5rem;
  margin: var(--space-xl) auto;
  padding: 2rem;
}

.thank-you-wrapper h1 {
  font-size: 3rem;
  margin-bottom: var(--space-md);
  color: var(--shadow-steel);
}

.error-wrapper {
  text-align: center;
  max-width: 37.5rem;
  margin: var(--space-xl) auto;
  padding: 2rem;

}

.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--shadow-steel);
  line-height: 1;
  margin-bottom: var(--space-md);
}
/* Image Split Section */
.image-split-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--light-fog) 0%, #f0ede8 100%);
}

.image-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.image-split-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--deep-space);
}

.image-split-content p {
  margin-bottom: var(--space-md);
  font-size: 1.063rem;
  line-height: 1.8;
}

.image-split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 25rem;
}

.feature-list {
  list-style: none;
  margin-top: var(--space-md);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}

.feature-list .material-symbols-outlined {
  color: var(--shadow-steel);
  font-size: 1.5rem;
}

/* Hero Image Section */
.hero-image-section {
  padding: 0;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  min-height: 35rem;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 35rem;
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 27, 58, 0.85) 0%, rgba(91, 78, 125, 0.75) 100%);
  display: flex;
  align-items: center;
}

.hero-image-content {
  color: var(--light-fog);
  max-width: 37.5rem;
  padding: var(--space-lg) 0;
}

.hero-image-content h2 {
  color: var(--light-fog);
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.hero-image-content p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

/* Stats Section */
.stats-section {
  padding: var(--space-xl) 0;
  background: var(--deep-space);
  color: var(--light-fog);
}

.stats-section .section-title {
  color: var(--light-fog);
}

.stats-section .section-title::after {
  background: var(--light-fog);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(245, 243, 240, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-0.5rem);
  background: rgba(245, 243, 240, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--light-fog);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--light-fog);
}

.stat-card p {
  font-size: 0.875rem;
  color: rgba(245, 243, 240, 0.9);
  margin: 0;
}

/* Process Section */
.process-section {
  padding: var(--space-xl) 0;
  background: white;
}

.process-timeline {
  max-width: 50rem;
  margin: var(--space-lg) auto 0;
  position: relative;
}



.process-step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
}

.process-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--shadow-steel) 0%, var(--carbon-fog) 100%);
  color: var(--light-fog);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.process-content {
  flex: 1;
  padding-top: var(--space-xs);
}

.process-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--deep-space);
}

.process-content p {
  color: var(--onyx-grey);
  line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--space-xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.testimonial-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  color: var(--shadow-steel);
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-md);
  color: var(--onyx-grey);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author strong {
  color: var(--deep-space);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--carbon-fog);
  font-size: 0.875rem;
}

/* About Image Section */
.about-image-section {
  padding: var(--space-xl) 0;
  background: white;
}

.about-image-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--deep-space);
}

.about-image-content p {
  margin-bottom: var(--space-md);
  font-size: 1.063rem;
  line-height: 1.8;
  color: var(--onyx-grey);
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.expertise-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--light-fog);
  border-radius: var(--radius-md);
}

.expertise-item .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--shadow-steel);
  flex-shrink: 0;
}

.expertise-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--deep-space);
}

.expertise-item p {
  margin: 0;
  font-size: 0.938rem;
  color: var(--onyx-grey);
}

.about-image-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 28rem;
}

.image-badge {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: rgba(245, 243, 240, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--shadow-steel);
  line-height: 1;
}

.badge-text {
  font-size: 0.875rem;
  color: var(--onyx-grey);
  margin-top: var(--space-xs);
}

/* Values Section */
.values-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--light-fog) 0%, #f0ede8 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.value-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.value-icon-wrapper {
  width: 5rem;
  height: 5rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--shadow-steel) 0%, var(--carbon-fog) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon-wrapper .material-symbols-outlined {
  font-size: 2.5rem;
  color: var(--light-fog);
}

.value-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--deep-space);
}

.value-card p {
  color: var(--onyx-grey);
  font-size: 0.938rem;
  line-height: 1.7;
  margin: 0;
}

/* Services Feature Section */
.services-feature-section {
  padding: var(--space-xl) 0;
  background: white;
}

.services-feature-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.services-feature-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.services-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 30rem;
}

.feature-overlay-box {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(245, 243, 240, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.overlay-box-content {
  text-align: center;
}

.overlay-number {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-primary);
  color: var(--shadow-steel);
  line-height: 1;
}

.overlay-label {
  font-size: 0.875rem;
  color: var(--onyx-grey);
  margin-top: var(--space-xs);
}

.services-feature-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
  color: var(--deep-space);
}

.services-feature-content > p {
  font-size: 1.063rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: var(--onyx-grey);
}

.feature-benefits {
  margin-bottom: var(--space-lg);
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--light-fog);
  border-radius: var(--radius-md);
}

.benefit-item .material-symbols-outlined {
  font-size: 2rem;
  color: var(--shadow-steel);
  flex-shrink: 0;
}

.benefit-item h4 {
  margin-bottom: var(--space-xs);
  color: var(--deep-space);
  font-size: 1.063rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.938rem;
  color: var(--onyx-grey);
  line-height: 1.6;
}

/* Service Comparison Section */
.service-comparison-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--light-fog) 0%, #f0ede8 100%);
}

.comparison-table {
  max-width: 56.25rem;
  margin: var(--space-lg) auto 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  background: var(--deep-space);
  color: var(--light-fog);
}

.comparison-header .comparison-cell {
  padding: var(--space-md);
  font-weight: 600;
  text-align: center;
  border-right: 0.063rem solid rgba(245, 243, 240, 0.2);
}

.comparison-header .comparison-cell:last-child {
  border-right: none;
}

.comparison-header .comparison-cell.highlight {
  background: var(--shadow-steel);
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 0.063rem solid #e0e0e0;
}

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

.comparison-cell {
  padding: var(--space-md);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--onyx-grey);
}

.comparison-row .comparison-cell:first-child {
  text-align: left;
  justify-content: flex-start;
  font-weight: 500;
  color: var(--deep-space);
}

.comparison-row .comparison-cell.highlight {
  background: rgba(91, 78, 125, 0.1);
}

.comparison-cell .material-symbols-outlined {
  font-size: 1.5rem;
  color: var(--shadow-steel);
}

.comparison-cell:has(span:contains("close")) .material-symbols-outlined {
  color: #ccc;
  opacity: 0.5;
}

/* Contact Info Section */
.contact-info-section {
  padding: var(--space-xl) 0;
  background: var(--light-fog);
}

.contact-reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.reason-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.reason-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.reason-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--shadow-steel) 0%, var(--carbon-fog) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reason-icon .material-symbols-outlined {
  font-size: 2rem;
  color: var(--light-fog);
}

.reason-card h3 {
  margin-bottom: var(--space-sm);
  color: var(--deep-space);
  font-size: 1.25rem;
}

.reason-card p {
  color: var(--onyx-grey);
  font-size: 0.938rem;
  line-height: 1.7;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta-section {
  padding: var(--space-xl) 0;
}

.contact-cta-wrapper {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.contact-cta-content h2 {
  margin-bottom: var(--space-md);
  color: var(--deep-space);
}

.contact-cta-content p {
  color: var(--onyx-grey);
  line-height: 1.8;
}

.contact-cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* Contact Hours Section */
.contact-hours-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--deep-space) 0%, var(--onyx-grey) 100%);
  color: var(--light-fog);
}

.hours-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hours-content h2 {
  color: var(--light-fog);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.hours-content > p {
  font-size: 1.063rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  color: rgba(245, 243, 240, 0.95);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: rgba(245, 243, 240, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.hours-day {
  font-weight: 600;
  color: var(--light-fog);
}

.hours-time {
  color: rgba(245, 243, 240, 0.9);
}

.hours-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hours-card {
  background: rgba(245, 243, 240, 0.95);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 20rem;
  width: 100%;
}

.hours-card-icon {
  font-size: 4rem;
  color: var(--shadow-steel);
  margin-bottom: var(--space-md);
}

.hours-card h3 {
  color: var(--deep-space);
  margin-bottom: var(--space-sm);
}

.hours-card p {
  color: var(--onyx-grey);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--shadow-steel) 0%, var(--carbon-fog) 100%);
  color: var(--light-fog);
}

.cta-wrapper {
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--light-fog);
  font-size: 2.25rem;
  margin-bottom: var(--space-md);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  color: rgba(245, 243, 240, 0.95);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 931px) {
.logo span{
  font-size: 22px;
}
nav a{
  font-size: 12px;
}
nav ul{
  gap: 20px;
}
}
@media (max-width: 48rem) {
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .hero {
    min-height: 28rem;
    padding: var(--space-xl) 0;
  }
  
  .hero h1 {
    font-size: 2.25rem;
    padding: 0 var(--space-sm);
  }
  
  .hero h1::before,
  .hero h1::after {
    width: 3rem;
  }
  
  .hero p {
    font-size: 1.125rem;
    padding: 0 var(--space-sm);
  }
  
  .hero-content::before {
    width: 12rem;
    height: 12rem;
    top: -6rem;
    right: -3rem;
  }
  
  .hero-content::after {
    width: 10rem;
    height: 10rem;
    bottom: -5rem;
    left: -2rem;
  }
  
  .burger {
    display: flex;
  }
  
  nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 18.75rem;
    height: 100vh;
    background: var(--deep-space);
    padding: 5rem var(--space-lg) var(--space-lg);
    transition: right var(--transition-normal);
    z-index: 105;
  }
  
  nav.active {
    display: flex;
    right: 0;
  }
  
  nav ul {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  nav a {
    font-size: 1rem;
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
   flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-actions {
    flex-direction: column;
  }

  .image-split-wrapper {
    grid-template-columns: 1fr;
  }

  .image-split-image {
    order: -1;
  }

  .hero-image-content h2 {
    font-size: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons .btn {
    width: 100%;
  }

  .about-image-wrapper {
    grid-template-columns: 1fr;
  }

  .about-image-visual {
    order: -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .services-feature-wrapper {
    grid-template-columns: 1fr;
  }

  .services-feature-image {
    order: -1;
  }

  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-header .comparison-cell,
  .comparison-row .comparison-cell {
    border-right: none;
    border-bottom: 0.063rem solid #e0e0e0;
    padding: var(--space-sm) var(--space-md);
  }

  .comparison-header .comparison-cell:last-child,
  .comparison-row .comparison-cell:last-child {
    border-bottom: none;
  }

  .comparison-row .comparison-cell:first-child {
    font-weight: 600;
    background: var(--light-fog);
    padding: var(--space-md);
  }

  .contact-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-wrapper {
    grid-template-columns: 1fr;
  }

  .hours-visual {
    order: -1;
  }

  .contact-cta-buttons {
    flex-direction: column;
  }

  .contact-cta-buttons .btn {
    width: 100%;
  }
}
@media (max-width: 30rem){
  .thank-you-wrapper {
    text-align: center;
    max-width: 37.5rem;
    margin: var(--space-xl) auto;
    padding: 1rem;
  }
  .contact-reasons-grid{
    display: flex;
    flex-direction: column;
  }
  .values-grid{
    display: flex;
    flex-direction: column;
  }
  .container{
    padding: 5px;
  }

.logo span{
  display: none;
}
.stats-grid{
  display: flex;
  flex-direction: column;
}
}
@media (max-width: 20rem) {
  html {
    font-size: 87.5%;
  }
  
  .container {
    width: 95%;
  }
  
  section {
    padding: var(--space-lg) 0;
  }
  
  .hero {
    padding: var(--space-lg) 0;
    min-height: 24rem;
  }
  
  .hero h1 {
    font-size: 1.875rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-content::before,
  .hero-content::after {
    display: none;
  }
}
