:root {
  --primary: #1a3a5c;
  --secondary: #d4a853;
  --dark: #0d1b2a;
  --light: #f8f9fa;
  --gray: #6c757d;
  --white: #ffffff;
  --accent: #2e5077;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
}

* {
  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(--dark);
  background: var(--white);
  font-size: 16px;
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-menu a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  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="%23d4a853" stroke-width="0.5" opacity="0.3"/><circle cx="50" cy="50" r="30" fill="none" stroke="%23d4a853" stroke-width="0.3" opacity="0.2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23d4a853" stroke-width="0.2" opacity="0.1"/></svg>') center/contain no-repeat;
  opacity: 0.4;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 30px;
  width: fit-content;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

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

.hero-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

.btn-primary:hover {
  background: #c49743;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,83,0.4);
}

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

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

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

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

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

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

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

.section-accent {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
}

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

.section-tag {
  display: inline-block;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

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

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

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

/* Features Grid */
.features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

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

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

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

/* Split Layout */
.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.split-content {
  flex: 1 1 400px;
}

.split-image {
  flex: 1 1 400px;
  position: relative;
}

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

.split-image-wrapper::before {
  content: '';
  display: block;
  padding-bottom: 75%;
  background: linear-gradient(45deg, var(--primary), var(--accent));
}

.split-image-wrapper svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  fill: rgba(255,255,255,0.3);
}

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

.section-dark .split-content h2 {
  color: var(--white);
}

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

.section-dark .split-content p {
  color: rgba(255,255,255,0.8);
}

.check-list {
  list-style: none;
  margin: 25px 0;
}

.check-list li {
  padding: 10px 0 10px 35px;
  position: relative;
  color: var(--dark);
}

.section-dark .check-list li {
  color: var(--white);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230d1b2a"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>');
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

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

.service-card {
  flex: 1 1 320px;
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image svg {
  width: 80px;
  height: 80px;
  fill: rgba(255,255,255,0.4);
}

.service-body {
  padding: 30px;
}

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--dark);
}

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

.service-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
}

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

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

/* Stats Section */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.stat-item {
  flex: 1 1 200px;
  padding: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.testimonial-card {
  flex: 1 1 350px;
  max-width: 400px;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  position: relative;
}

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

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

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

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
}

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

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

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

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

.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: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  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-submit {
  text-align: center;
  margin-top: 30px;
}

.form-submit .btn {
  min-width: 250px;
}

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

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

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--dark);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

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

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

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

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

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  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: 25px;
  color: var(--secondary);
}

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

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

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

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

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

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

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

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

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

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.sticky-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sticky-cta .btn {
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  padding: 16px 28px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

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

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

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

.thanks-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--secondary), #e8c068);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 35px;
}

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

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

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

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

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

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

/* Legal Pages */
.legal-content {
  padding: 60px 0;
}

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

.legal-content h2:first-child {
  margin-top: 0;
}

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

.legal-content ul {
  margin: 15px 0 15px 25px;
  color: var(--gray);
}

.legal-content ul li {
  margin-bottom: 8px;
}

/* About Page Specifics */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

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

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  font-weight: 700;
}

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

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

/* Responsive */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

  .split-section {
    gap: 40px;
  }
}

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

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 20px 0;
  }

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

  .nav-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu a {
    display: block;
    padding: 15px 0;
  }

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

  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

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

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

  .footer-grid {
    gap: 30px;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }

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

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

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

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

  .btn {
    padding: 12px 24px;
  }

  .stats-row {
    gap: 20px;
  }

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

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