@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --burgundy: #722F37;
  --burgundy-dark: #5a252c;
  --burgundy-light: #8a3b46;
  --caramel: #D2691E;
  --caramel-light: #e08530;
  --caramel-dark: #b55a1a;
  --teal: #008080;
  --teal-light: #00a5a5;
  --teal-dark: #006666;
  --cream: #FDF5E6;
  --off-white: #FAF9F6;
  --dark-charcoal: #1a1a1a;
  --text-dark: #2d2d2d;
  --text-light: #f5f5f5;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 12px 48px rgba(0, 0, 0, 0.15);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--off-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

.glass-nav {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;
  z-index: 1000;
}

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

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--burgundy), var(--caramel));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 15px rgba(114, 47, 55, 0.4);
  transform: rotate(-5deg);
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-charcoal);
}

.logo-text span {
  color: var(--burgundy);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark-charcoal);
  transition: all 0.3s ease;
}

.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--cream) 50%, #f5ebe0 100%);
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--burgundy);
  top: -200px;
  right: -100px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -150px;
  left: -100px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--caramel);
  top: 50%;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: var(--dark-charcoal);
  text-shadow: 2px 2px 0 rgba(114, 47, 55, 0.1);
}

.hero-text h1 .highlight {
  background: linear-gradient(135deg, var(--burgundy), var(--caramel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  max-width: 500px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: white;
  box-shadow: 0 8px 25px rgba(114, 47, 55, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(114, 47, 55, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-secondary:hover {
  background: var(--burgundy);
  color: white;
  transform: translateY(-3px);
}

.btn-teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 128, 128, 0.4);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-main {
  width: 450px;
  height: 450px;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
  transform: rotate(3deg);
  transition: transform 0.5s ease;
}

.hero-image-main:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
  top: 40px;
  right: 20px;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 60px;
  left: 0;
  animation-delay: 1.5s;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.badge-text {
  font-size: 14px;
}

.badge-text strong {
  display: block;
  color: var(--dark-charcoal);
  font-size: 16px;
}

.badge-text span {
  color: #888;
  font-size: 12px;
}

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

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--cream) !important;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 42px;
  color: var(--dark-charcoal);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(114, 47, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--caramel));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cream), var(--off-white));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--burgundy), var(--caramel));
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-size: 18px;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--burgundy);
}

.about-section {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}

.about-section .section-header h2,
.about-section .section-header p {
  color: var(--text-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.about-image-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 4px solid var(--caramel);
  border-radius: 24px;
  top: -20px;
  right: -20px;
  z-index: -1;
}

.about-text h3 {
  font-size: 32px;
  color: var(--dark-charcoal);
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  margin-bottom: 24px;
  font-size: 16px;
}

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

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

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

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

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage-card {
  background: white;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: white;
  box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
}

.advantage-card h3 {
  font-size: 20px;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
}

.advantage-card p {
  color: #666;
  font-size: 15px;
}

.reviews-section {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section .section-header h2,
.reviews-section .section-header p {
  color: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--caramel);
}

.review-info h4 {
  color: white;
  font-size: 16px;
  margin-bottom: 4px;
}

.review-stars {
  color: var(--caramel);
  font-size: 14px;
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.7;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  font-size: 32px;
  color: var(--dark-charcoal);
  margin-bottom: 20px;
}

.contact-info > p {
  color: #666;
  margin-bottom: 32px;
  font-size: 16px;
}

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

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--dark-charcoal);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-text p {
  color: #666;
  font-size: 15px;
}

.contact-form {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
}

.form-title {
  font-size: 24px;
  color: var(--dark-charcoal);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--burgundy);
  background: white;
  box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

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

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

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: var(--cream);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: white;
  border-radius: 20px;
  padding: 28px;
  max-width: 420px;
  box-shadow: var(--shadow-strong);
  z-index: 9999;
  display: block;
}

.cookie-banner h4 {
  color: var(--dark-charcoal);
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-banner p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.page-hero {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  padding: 100px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

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

.team-info {
  padding: 24px;
}

.team-info h3 {
  font-size: 18px;
  color: var(--dark-charcoal);
  margin-bottom: 4px;
}

.team-info p {
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.team-info span {
  color: #888;
  font-size: 13px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.service-detail-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-detail-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-detail-content {
  padding: 32px;
}

.service-detail-content h3 {
  font-size: 24px;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
}

.service-detail-content p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-detail-content .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 20px;
  display: block;
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(114, 47, 55, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay span {
  color: white;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-soft);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 28px;
}

.blog-date {
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.blog-content h3 {
  font-size: 20px;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-content .btn {
  padding: 10px 20px;
  font-size: 14px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--burgundy), var(--caramel));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
  position: relative;
  z-index: 1;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(50% + 45px);
  width: calc(100% - 90px);
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--teal));
  opacity: 0.3;
}

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

.process-step h3 {
  font-size: 18px;
  color: var(--dark-charcoal);
  margin-bottom: 12px;
}

.process-step p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.career-jobs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.career-job {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.career-job:hover {
  border-color: var(--burgundy);
  box-shadow: var(--shadow-soft);
}

.career-job h3 {
  font-size: 20px;
  color: var(--dark-charcoal);
  margin-bottom: 8px;
}

.career-job .location {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}

.career-job p {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-question {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question h4 {
  font-size: 17px;
  color: var(--dark-charcoal);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--burgundy), var(--caramel));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: transform 0.3s ease;
}

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

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

.faq-answer-content {
  padding: 0 24px 24px;
  color: #666;
  line-height: 1.7;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.legal-content h1 {
  font-size: 36px;
  color: var(--dark-charcoal);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 24px;
  color: var(--dark-charcoal);
  margin: 32px 0 16px;
}

.legal-content p {
  color: #666;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.legal-content li {
  color: #666;
  margin-bottom: 8px;
  line-height: 1.7;
}

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

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

.thank-you-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 60px;
  color: white;
  box-shadow: 0 20px 50px rgba(0, 128, 128, 0.3);
}

.thank-you-content h1 {
  font-size: 48px;
  color: var(--dark-charcoal);
  margin-bottom: 16px;
}

.thank-you-content p {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
}

.hidden {
  display: none !important;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 999;
  padding: 80px 24px 24px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--dark-charcoal);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 24px;
}

.mobile-menu a {
  font-size: 20px;
  color: var(--dark-charcoal);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

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

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

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

  .contact-content {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

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

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

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

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

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

  .career-jobs {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

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

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

  .legal-content {
    padding: 24px;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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