:root {
  --primary: #1a4d5c;
  --secondary: #e8a54b;
  --dark: #0d2b33;
  --light: #f5f7f6;
  --accent: #3a8a9e;
  --text: #2c3e3f;
  --white: #ffffff;
  --gray: #6b7c7d;
  --success: #2e7d62;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

/* Navigation */
.nav-wrapper {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
  background-size: 60px;
  transform: rotate(15deg);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 700;
}

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

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-image {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background: #d99740;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,165,75,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary);
}

/* Sections */
.section {
  padding: 90px 0;
}

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

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

.section-accent {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: var(--white);
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--dark);
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 50px;
}

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

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 0;
  background: var(--white);
  border-radius: 12px;
  margin-top: -70px;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--gray);
  margin-top: 8px;
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 30px;
  flex: 1 1 320px;
  max-width: 380px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

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

/* Split Section */
.split-section {
  display: flex;
  align-items: center;
  gap: 70px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
}

.split-image {
  flex: 1;
}

.split-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.split-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.split-content p {
  color: var(--gray);
  margin-bottom: 16px;
}

.split-content ul {
  list-style: none;
  margin: 24px 0;
}

.split-content ul li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text);
}

.split-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

/* Testimonials */
.testimonials-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  flex: 1 1 340px;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 6rem;
  color: var(--secondary);
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

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

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

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

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

/* Process Steps */
.process-steps {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--dark);
}

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

/* Form Section */
.form-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  max-width: 700px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e4e3;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s;
  font-family: inherit;
}

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

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

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn {
  padding: 18px 60px;
  font-size: 1.1rem;
}

/* CTA Banner */
.cta-banner {
  text-align: center;
  padding: 80px 30px;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq-question {
  padding: 24px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: background 0.2s;
}

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

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s;
}

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

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

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

.faq-answer p {
  color: var(--gray);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--light);
  padding: 70px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

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

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

.footer-col ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--secondary);
}

.footer-col p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

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

.cookie-text a {
  color: var(--secondary);
}

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

.cookie-btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.2s;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--dark);
}

.cookie-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
}

.sticky-cta .btn {
  box-shadow: 0 10px 30px rgba(232,165,75,0.4);
  padding: 14px 28px;
}

/* About Page */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 100px 0 80px;
  text-align: center;
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 16px;
}

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

.breadcrumb {
  margin-top: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--secondary);
  margin: 0 10px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  text-align: center;
  flex: 1 1 250px;
  max-width: 300px;
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--light);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 700;
}

.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--dark);
}

.team-member span {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Contact Page */
.contact-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-form-section {
  flex: 1 1 400px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Thanks Page */
.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 30px;
}

/* Policy Pages */
.policy-content {
  padding: 60px 0;
}

.policy-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  color: var(--dark);
}

.policy-content h3 {
  font-size: 1.3rem;
  margin: 30px 0 12px;
  color: var(--dark);
}

.policy-content p {
  margin-bottom: 16px;
  color: var(--text);
}

.policy-content ul {
  margin: 16px 0;
  padding-left: 30px;
}

.policy-content ul li {
  margin-bottom: 10px;
  color: var(--text);
}

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  background: var(--white);
  padding: 35px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary) 0%, #f5c078 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--dark);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.value-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-toggle {
    display: block;
  }

  .stats-row {
    margin-top: -40px;
  }

  .stat-item {
    padding: 15px 25px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-grid {
    gap: 30px;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

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

  .cta-banner h2 {
    font-size: 1.9rem;
  }

  .page-header {
    padding: 70px 0 50px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 60px 0 80px;
  }

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

  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .form-wrapper {
    padding: 30px 20px;
  }

  .service-card {
    padding: 30px 24px;
  }

  .testimonial-card {
    padding: 30px;
  }

  .sticky-cta {
    bottom: 70px;
    right: 16px;
  }
}
