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

:root {
  --primary-navy: #1a2744;
  --secondary-navy: #2d3e5f;
  --accent-gold: #c9a227;
  --accent-gold-light: #e8c547;
  --accent-copper: #b87333;
  --light-cream: #faf8f5;
  --off-white: #f5f3ef;
  --text-dark: #1a1a1a;
  --text-muted: #5a6678;
  --text-light: #ffffff;
  --success-green: #2d8659;
  --error-red: #c44536;
  --shadow-soft: 0 4px 20px rgba(26, 39, 68, 0.08);
  --shadow-medium: 0 8px 30px rgba(26, 39, 68, 0.12);
  --shadow-strong: 0 15px 50px rgba(26, 39, 68, 0.18);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-navy);
}

strong, p {
  color: inherit;
}

a {
  transition: var(--transition-smooth);
}

.site-header {
  background: var(--text-light);
  box-shadow: var(--shadow-soft);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

.site-header .navbar {
  background: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: var(--text-light) !important;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

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

.burger-line {
  width: 25px;
  height: 2px;
  background: var(--primary-navy);
  transition: var(--transition-smooth);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--text-light);
  padding: 1rem;
  box-shadow: var(--shadow-medium);
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.is-active {
  display: flex;
}

.mobile-menu .nav-link {
  padding: 0.75rem;
  border-bottom: 1px solid var(--off-white);
}

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

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text h1 span {
  color: var(--accent-gold);
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 500px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(201, 162, 39, 0.5);
  color: var(--text-light);
}

.btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  color: var(--text-light);
  transform: translateY(-3px);
}

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

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

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--text-light);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.hero-badge-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.hero-badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.section {
  padding: 5rem 1.5rem;
}

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

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(184, 115, 51, 0.15) 100%);
  color: var(--accent-copper);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.about-section {
  background: var(--text-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

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

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

.about-experience {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-strong);
}

.about-experience-years {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-experience-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.15) 0%, rgba(184, 115, 51, 0.15) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-feature-text {
  font-weight: 500;
  color: var(--text-dark);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--text-light);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-copper));
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

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

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

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(184, 115, 51, 0.12) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--accent-gold);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.service-link {
  color: var(--accent-copper);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 0.75rem;
  color: var(--accent-gold);
}

.why-choose-section {
  background: var(--primary-navy);
  position: relative;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2v2h-2v2h2v2h-2v2h2v2h-2v2h2v2h-2v2h-2v-20h-2v20h-2v-20h-2v20h-2v-20h-2v20H0v-2h20v-2H0v-2h20z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.why-choose-section .section-label {
  background: rgba(201, 162, 39, 0.2);
  color: var(--accent-gold-light);
}

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

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

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

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.35);
}

.why-card h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.testimonials-section {
  background: var(--text-light);
}

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

.testimonial-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

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

.testimonial-info h4 {
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-location {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 0.8rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
}

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

.cta-title {
  font-size: 2.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.cta-btn-primary:hover {
  background: var(--secondary-navy);
  transform: translateY(-3px);
  color: var(--text-light);
}

.cta-btn-secondary {
  background: transparent;
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--text-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
}

.site-footer {
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 4rem 1.5rem 2rem;
}

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

.footer-brand .logo-brand {
  margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
}

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

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--text-light);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

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

.footer-contact-item span {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

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

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

.cookie-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

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

.cookie-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: var(--text-light);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.cookie-btn-decline {
  background: var(--off-white);
  color: var(--text-dark);
  border: 1px solid #ddd;
}

.cookie-btn-decline:hover {
  background: #eee;
}

.page-hero {
  padding: 140px 1.5rem 80px;
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  text-align: center;
}

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

.page-hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.contact-section {
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

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

.contact-info-card {
  background: var(--text-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12) 0%, rgba(184, 115, 51, 0.12) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.contact-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  background: var(--text-light);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--off-white);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Source Sans 3', sans-serif;
  transition: var(--transition-smooth);
  background: var(--off-white);
  color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--text-light);
}

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

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: var(--text-light);
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.form-submit:hover {
  box-shadow: 0 6px 25px rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}

.map-container {
  margin-top: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

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

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  background: var(--off-white);
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success-green) 0%, #3aa876 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-light);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 40px rgba(45, 134, 89, 0.35);
}

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

.thank-you-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  color: var(--text-light);
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.thank-you-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4);
  color: var(--text-light);
}

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

.team-card {
  background: var(--text-light);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

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

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

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--accent-copper);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

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

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 39, 68, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.gallery-overlay-text {
  color: var(--text-light);
  font-weight: 500;
}

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

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  transition: var(--transition-smooth);
}

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

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

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

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-detail-section {
  padding: 5rem 1.5rem;
  background: var(--text-light);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.service-detail-content h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.service-detail-content .service-price {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.service-detail-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

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

.service-features-list li span {
  color: var(--success-green);
  font-weight: bold;
}

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

.service-detail-image img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--shadow-medium);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  background: var(--off-white);
}

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

.process-step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 auto 1rem;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.process-connector {
  position: absolute;
  top: 25px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(201, 162, 39, 0.3));
}

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

.legal-section {
  padding: 5rem 1.5rem;
  background: var(--text-light);
}

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

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

  .hero-text h1 {
    font-size: 2.75rem;
  }

  .hero-description {
    margin: 0 auto 2rem;
  }

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

  .hero-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

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

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

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

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

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

  .service-detail-image {
    position: static;
  }

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

  .process-connector {
    display: none;
  }
}

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

  .burger-menu {
    display: flex;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 1.5rem 60px;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-image {
    height: 300px;
  }

  .section {
    padding: 3rem 1.5rem;
  }

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

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

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

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

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

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

  .page-hero {
    padding: 120px 1.5rem 60px;
  }

  .page-hero-title {
    font-size: 2.25rem;
  }

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

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

  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    max-width: none;
  }
}

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

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

  .hero-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
  }

  .about-experience {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

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

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

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