:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #c6a962;
  --accent: #e8b923;
  --dark: #1a202c;
  --light: #f7fafc;
  --gray: #718096;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 54, 93, 0.10);
  --shadow-lg: 0 12px 40px rgba(26, 54, 93, 0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

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

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

.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  padding: 15px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  position: relative;
}

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

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

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

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: rgba(255,255,255,0.03);
  transform: rotate(15deg);
}

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

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}

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

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--secondary);
  color: var(--dark);
  padding: 20px 25px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 18px;
}

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

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

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

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

.section-title {
  font-size: 38px;
  margin-bottom: 15px;
  color: var(--primary);
}

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

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

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

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

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Stats */
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  padding: 60px 0;
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  text-align: center;
}

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

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

.stat-label {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: var(--transition);
}

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

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

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

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

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

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

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

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

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 70px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-image-overlay {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--secondary);
  color: var(--dark);
  padding: 25px 30px;
  border-radius: var(--radius);
  font-weight: 600;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.about-list {
  list-style: none;
  margin: 30px 0;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--dark);
}

.about-list li svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  flex-shrink: 0;
}

/* Features */
.features-row {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.features-row:last-child {
  margin-bottom: 0;
}

.features-row.reverse {
  flex-direction: row-reverse;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary);
}

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

.feature-image {
  flex: 1;
}

.feature-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 350px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}

.testimonial-text {
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.8;
}

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

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

.testimonial-info h4 {
  font-size: 16px;
  color: var(--dark);
}

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

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: rgba(255,255,255,0.03);
  transform: rotate(-15deg);
}

.cta-section h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 16px;
  transition: var(--transition);
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
}

select.form-control {
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
}

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

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

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

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

.contact-main {
  flex: 2;
}

.contact-sidebar {
  flex: 1;
}

.contact-info-card {
  background: var(--light);
  padding: 35px;
  border-radius: var(--radius);
  margin-bottom: 25px;
}

.contact-info-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item div {
  color: var(--dark);
}

.contact-info-item span {
  display: block;
  font-size: 14px;
  color: var(--gray);
}

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

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

.footer-col {
  flex: 1;
}

.footer-col:first-child {
  flex: 1.5;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  display: block;
}

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

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

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

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

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

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

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

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

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

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

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

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

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.sticky-cta .btn {
  box-shadow: var(--shadow-lg);
}

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

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  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: 42px;
  color: var(--primary);
  margin-bottom: 20px;
}

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

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

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

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

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

.legal-content h2 {
  font-size: 26px;
  color: var(--primary);
  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 li {
  margin-bottom: 8px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-light);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* Process Section */
.process-steps {
  display: flex;
  gap: 30px;
  counter-reset: step;
}

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

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

.process-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--primary);
}

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

/* Responsive */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

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

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

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

  .stats {
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px 30px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image-overlay {
    right: 20px;
    bottom: -20px;
  }

  .features-row,
  .features-row.reverse {
    flex-direction: column;
  }

  .contact-grid {
    flex-direction: column;
  }

  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-col {
    flex: 1 1 45%;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 130px 0 70px;
  }

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

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .stats {
    flex-direction: column;
    gap: 25px;
  }

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

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

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

  .process-steps {
    flex-direction: column;
  }

  .testimonials-slider {
    flex-direction: column;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .sticky-cta {
    right: 15px;
    bottom: 80px;
  }
}
