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

:root {
  --terracotta: #E07A5F;
  --terracotta-dark: #C45D42;
  --electric-teal: #2EC4B6;
  --electric-teal-dark: #1A9A8F;
  --soft-cream: #F4F1DE;
  --soft-cream-dark: #EDE8D5;
  --charcoal: #3D405B;
  --warm-white: #FAFBF7;
  --shadow-soft: 0 4px 20px rgba(61, 64, 91, 0.08);
  --shadow-medium: 0 8px 30px rgba(61, 64, 91, 0.12);
  --shadow-strong: 0 20px 40px rgba(61, 64, 91, 0.16);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--soft-cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Mobile-specific hero section fixes */
.hero-section {
  overflow-x: hidden;
}

.hero-content {
  box-sizing: border-box;
}

.hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
}

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

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

strong, p, a, span, li {
  color: inherit;
}


.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--terracotta), var(--electric-teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--charcoal);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: var(--transition-smooth);
}

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

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  margin: 5px 0;
  border-radius: 3px;
  transition: var(--transition-smooth);
}


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

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--electric-teal);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--charcoal), var(--terracotta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--terracotta);
  border-radius: 24px;
  z-index: -1;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--electric-teal);
  border-radius: 24px;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(224, 122, 95, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: white;
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition-smooth);
}

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


.section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: var(--electric-teal);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal);
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-soft);
}

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

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--terracotta), var(--electric-teal));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-content {
  padding: 0 0 2rem;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.service-description {
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta);
}

.service-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--electric-teal);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.service-link:hover {
  gap: 1rem;
}


.features-section {
  background: var(--charcoal);
  color: white;
  padding: 6rem 2rem;
}

.features-section .section-title {
  color: white;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--terracotta), var(--electric-teal));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: white;
}

.feature-description {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
}


.testimonials-section {
  background: linear-gradient(135deg, var(--electric-teal), var(--electric-teal-dark));
  color: white;
  padding: 6rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-stars {
  color: #FFD700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-info p {
  font-size: 0.85rem;
  opacity: 0.7;
}


.about-section {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

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

.about-image {
  position: relative;
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 3px solid var(--terracotta);
  border-radius: 24px;
  z-index: -1;
}

.about-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.about-content p {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.7;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

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

.team-avatar {
  width: 100%;
  height: 280px;
  background: var(--soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--terracotta);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--electric-teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.7;
}


.contact-section {
  background: var(--soft-cream-dark);
  padding: 6rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.contact-info p {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--terracotta), var(--electric-teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
}

.contact-text h4 {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.contact-text a,
.contact-text p {
  font-size: 1rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
}

.contact-text a:hover {
  color: var(--terracotta);
}

.contact-areas {
  margin-top: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.contact-areas h4 {
  margin-bottom: 1rem;
}


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

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--soft-cream);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--soft-cream);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 64, 91, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}


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

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

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: 'Space Grotesk', sans-serif;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--soft-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  font-size: 1.25rem;
}

.faq-item.active .faq-icon {
  background: var(--terracotta);
  color: white;
  transform: rotate(45deg);
}

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

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.8;
}


.legal-section {
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.legal-content h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin: 2rem 0 1rem;
}

.legal-content p {
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 1rem 0 2rem 2rem;
  list-style: disc;
}

.legal-content li {
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}


.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand p {
  opacity: 0.7;
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--terracotta);
}

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

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


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

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.cookie-btn-accept {
  background: var(--terracotta);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  background: var(--terracotta-dark);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}

.cookie-btn-decline:hover {
  background: var(--charcoal);
  color: white;
}


.page-header {
  background: linear-gradient(135deg, var(--charcoal), var(--terracotta-dark));
  color: white;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

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

.page-badge {
  display: inline-block;
  background: var(--electric-teal);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.15rem;
  opacity: 0.8;
}


.cta-section {
  background: linear-gradient(135deg, var(--terracotta), var(--electric-teal));
  padding: 5rem 2rem;
  text-align: center;
}

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

.cta-title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--terracotta);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}


.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--terracotta), var(--electric-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
}

.step-title {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step-description {
  color: var(--charcoal);
  opacity: 0.7;
  font-size: 0.95rem;
}


.service-detail-section {
  padding: 4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-detail-image {
  position: sticky;
  top: 100px;
}

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

.service-detail-content h1 {
  font-size: 2.5rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.service-detail-content p {
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
}

.service-features-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--electric-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-pricing-card {
  background: var(--soft-cream);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
}

.service-pricing-title {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.service-pricing-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border-radius: 12px;
}

.pricing-option-name {
  font-weight: 600;
  color: var(--charcoal);
}

.pricing-option-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--terracotta);
}


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

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

  .about-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-150%);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-medium);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

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

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

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

  .hero-content {
    padding: 6rem 1rem 3rem;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-text {
    text-align: center;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-image-wrapper {
    border-radius: 20px;
  }

  .hero-image img {
    height: auto !important;
    width: 100%;
    object-fit: cover;
  }

  .about-image img {
    height: auto !important;
    width: 100%;
    object-fit: cover;
  }

  .section-title {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

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

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

@media (max-width: 480px) {
  .hero-content {
    padding: 5rem 1rem 2rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    height: 350px;
  }

  .page-title {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}