* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #06b6d4;
  --primary-dark: #0891b2;
  --secondary-color: #f59e0b;
  --accent-purple: #8b5cf6;
  --dark-bg: #0a0f1e;
  --dark-surface: #111827;
  --dark-card: #1f2937;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --white: #ffffff;
  --text-light: #e5e7eb;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background: var(--dark-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.navbar {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 24px;
}

.logo img {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.3));
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  position: relative;
  padding: 160px 24px 120px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--white) 50%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: var(--gray-300);
  font-weight: 400;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--dark-bg);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(6, 182, 212, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 42px;
  font-size: 1.15rem;
}

/* Trust Badges */
.trust-badges {
  background: var(--dark-surface);
  padding: 80px 24px;
  position: relative;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.badge-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.badge-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  transition: left 0.5s;
}

.badge-item:hover::before {
  left: 100%;
}

.badge-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.badge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
}

.badge-item h4 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.badge-item p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* Services Section */
.services-preview {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-bg) 100%);
  position: relative;
}

.services-preview h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.25rem;
  margin-bottom: 5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: var(--primary-color);
  box-shadow: 0 30px 80px rgba(6, 182, 212, 0.3);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.service-card p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.8rem 0 0.8rem 2.5rem;
  color: var(--gray-300);
  font-size: 0.95rem;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  color: var(--secondary-color);
  gap: 1rem;
}

/* Stats Section */
.stats-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before,
.stats-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s ease-in-out infinite;
}

.stats-section::before {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}

.stats-section::after {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
  animation-delay: -7s;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.stat-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-box:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 600;
  opacity: 0.95;
}

/* Why Us Section */
.why-us {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.why-us h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature {
  text-align: center;
  padding: 3rem;
  background: var(--dark-card);
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature h3 {
  font-size: 5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: 900;
}

.feature h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature p {
  color: var(--gray-400);
  line-height: 1.7;
}

.feature:hover {
  transform: translateY(-12px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

/* Service Areas */
.service-areas {
  padding: 120px 24px;
  background: var(--dark-surface);
}

.service-areas h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.areas-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

.areas-text {
  background: var(--dark-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.areas-text:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.areas-text h3 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.areas-text p {
  color: var(--gray-400);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.areas-features {
  list-style: none;
  margin: 2rem 0;
}

.areas-features li {
  padding: 1rem 0 1rem 3rem;
  color: var(--gray-300);
  position: relative;
  line-height: 1.6;
}

.areas-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.areas-map {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  padding: 4rem;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.map-placeholder {
  text-align: center;
  color: var(--white);
}

.map-icon {
  font-size: 7rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.map-placeholder p {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.map-subtext {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.testimonials h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  background: var(--dark-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.4s ease;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: rgba(6, 182, 212, 0.15);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.testimonial-stars {
  color: var(--secondary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.5));
}

.testimonial-text {
  color: var(--gray-300);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author strong {
  color: var(--white);
  font-size: 1.15rem;
  display: block;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--primary-color);
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s ease-in-out infinite;
}

.cta::before {
  width: 500px;
  height: 500px;
  top: -250px;
  left: -100px;
}

.cta::after {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -100px;
  animation-delay: -10s;
}

.cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  color: var(--white);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta p {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary-color);
}

/* Footer */
footer {
  background: var(--dark-surface);
  color: var(--text-light);
  padding: 100px 24px 40px;
  border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section a {
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-section p {
  color: var(--gray-400);
  line-height: 1.8;
}

.footer-logo {
  height: 70px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.3));
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #0a0f1e 0%, #1e293b 100%);
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 70%),
    radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

.page-header .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-header p {
  font-size: 1.3rem;
  color: var(--gray-300);
}

/* Service Detail */
.service-detail {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.service-detail.gray-bg {
  background: var(--dark-surface);
}

.service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 4rem;
  align-items: center;
}

.service-content.reverse {
  direction: rtl;
}

.service-content.reverse > * {
  direction: ltr;
}

.service-text {
  background: var(--dark-card);
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.service-text:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.2);
}

.service-text h2 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.service-text h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin: 2.5rem 0 1.5rem;
  font-weight: 700;
}

.service-text p {
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-text ul {
  list-style: none;
  margin: 2rem 0;
}

.service-text ul li {
  padding: 1rem 0 1rem 3rem;
  color: var(--gray-300);
  position: relative;
  line-height: 1.7;
}

.service-text ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dark-bg);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.price-info {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  border-left: 4px solid var(--primary-color);
}

.price-info strong {
  color: var(--primary-color);
  font-size: 1.15rem;
}

.service-image {
  background: var(--dark-card);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.service-image:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.service-image:hover img {
  transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
  padding: 120px 24px;
  background: var(--dark-surface);
}

.gallery-section h2 {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
}

.gallery-item {
  position: relative;
  background: var(--dark-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 15, 30, 0.95), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.gallery-overlay p {
  color: var(--primary-color);
  font-size: 0.95rem;
}

/* Form Section */
.form-section {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.form-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.form-intro {
  background: var(--dark-card);
  padding: 4rem;
  border-radius: 24px;
  margin-bottom: 4rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.form-intro h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}

.step h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.step p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-wrapper,
.contact-form {
  background: var(--dark-card);
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.contact-form-wrapper h2,
.contact-form h3 {
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.form-note {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 24px;
  background: var(--dark-surface);
}

.benefits-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.benefit-card {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.benefit-card h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.benefit-card p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* About Content */
.about-content {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 5rem;
  text-align: center;
}

.about-intro h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.about-intro .lead {
  font-size: 1.25rem;
  color: var(--gray-400);
  line-height: 1.8;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.competence-card {
  background: var(--dark-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.competence-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.competence-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.competence-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.competence-card p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* Values Section */
.values-section {
  padding: 100px 24px;
  background: var(--dark-surface);
}

.values-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.value-card {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.value-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.value-card p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* Certifications Section */
.certifications-section {
  padding: 100px 24px;
  background: var(--dark-bg);
}

.certifications-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.cert-item {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}

.cert-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.cert-item h4 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cert-item p {
  color: var(--gray-400);
  line-height: 1.6;
}

/* Team Section */
.team-section {
  padding: 100px 24px;
  background: var(--dark-surface);
}

.team-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-intro {
  text-align: center;
  color: var(--gray-400);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 2.5rem;
  background: var(--dark-card);
  border-radius: 20px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.stat .stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat .stat-label {
  color: var(--gray-400);
  font-size: 1.05rem;
  font-weight: 600;
}

/* Work Method */
.work-method {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.work-method h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.method-step {
  background: var(--dark-card);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.method-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.method-step:hover {
  border-color: var(--primary-color);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
  transform: translateY(-10px);
}

.method-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.method-step h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.method-step p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 120px 24px;
  background: var(--dark-bg);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 4rem;
}

.contact-info {
  background: var(--dark-card);
  padding: 4rem;
  border-radius: 24px;
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.contact-info h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  font-weight: 800;
}

.contact-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-item p {
  color: var(--gray-400);
  line-height: 1.7;
  margin: 0.5rem 0;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

/* FAQ Section */
.faq-section {
  padding: 100px 24px;
  background: var(--dark-surface);
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--white) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--dark-card);
  padding: 2.5rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.2);
}

.faq-item h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.faq-item p {
  color: var(--gray-400);
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .services-preview h2,
  .why-us h2,
  .testimonials h2,
  .page-header h1 {
    font-size: 2.5rem;
  }

  .cta h2 {
    font-size: 2.5rem;
  }

  .service-content,
  .areas-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .service-content.reverse {
    direction: ltr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper,
  .contact-form,
  .form-intro {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 120px 16px 80px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .services-grid,
  .badges-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
