/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-bottom{
    justify-content: center !important;
}

:root {
  /* Updated color scheme to match preview design */
  --background: oklch(0.99 0.005 240);
  --foreground: oklch(0.25 0.015 240);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.25 0.015 240);
  --primary: oklch(0.55 0.18 240);
  --primary-foreground: oklch(0.99 0.005 240);
  --secondary: oklch(0.65 0.2 30);
  --secondary-foreground: oklch(0.99 0.005 240);
  --muted:  #5c656b;
  --muted-foreground: oklch(0.5 0.015 240);
  --accent: oklch(0.96 0.01 240);
  --accent-foreground: oklch(0.25 0.015 240);
  --border: oklch(0.9 0.01 240);
  --radius: 0.75rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

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

.logo-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

.logo-subtitle {
  font-size: 12px;
  color: var(--muted);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--foreground);
  transition: color 0.3s;
}

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

.phone-link svg {
  flex-shrink: 0;
}

.phone-info {
  display: flex;
  flex-direction: column;
}

.phone-number {
  font-size: 14px;
  font-weight: 600;
}

.phone-time {
  font-size: 12px;
  color: var(--muted);
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  /* Updated to use primary color from design system */
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  /* Updated hover effect */
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

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

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

.btn-outline-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.review-author img{
  display: none;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 0 128px;
  /* Updated gradient to match preview */
  background: linear-gradient(169deg, rgba(0, 121, 206, 0.25) 0%, #f9fcff 50%, rgba(240, 80, 61, 0.25) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Updated badge background */
  background: rgba(65, 105, 225, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  width: fit-content;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--foreground);
}

.hero-description {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

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

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

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--foreground);
}

.section-description {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Advantages Section */
.advantages {
  /* Updated background */
  background: var(--background);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage-card {
  padding: 32px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.advantage-card:hover {
  /* Updated hover border color */
  border-color: rgba(65, 105, 225, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.advantage-image {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.advantage-icon {
  display: inline-flex;
  padding: 16px;
  /* Updated icon background */
  background: rgba(65, 105, 225, 0.1);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 24px;
}

.advantage-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.advantage-text {
  color: var(--muted);
  line-height: 1.6;
}

/* Services Section */
.services {
  /* Updated gradient background */
  background: linear-gradient(to bottom, var(--background), rgba(229, 231, 235, 0.3));
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-image {
  height: 200px;
  /* Updated gradient */
  background: linear-gradient(to bottom right, rgba(65, 105, 225, 0.05), rgba(255, 140, 66, 0.05));
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 32px;
}

.service-icon {
  display: inline-flex;
  padding: 16px;
  /* Updated icon background */
  background: rgba(65, 105, 225, 0.1);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 24px;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.services-note {
  margin-top: 48px;
  text-align: center;
}

.services-note p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* Statistics Section */
.statistics {
  /* Updated gradient background */
  background: linear-gradient(to bottom right, rgba(65, 105, 225, 0.1), rgba(255, 140, 66, 0.05));
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.stat-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.stat-value {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.stat-label {
  font-size: 18px;
  color: var(--muted);
}

/* Reviews Section */
.reviews {
  background: var(--background);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.review-card {
  padding: 32px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.review-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.review-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

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

.review-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}

.review-company {
  color: var(--muted);
}

/* SEO Text Section */
.seo-text {
  background: var(--background);
}

.seo-content {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--foreground);
}

.seo-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--foreground);
}

.seo-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

/* FAQ Section */
.faq {
  background: var(--background);
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item.active {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--foreground);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form {
  /* Updated gradient background */
  background: linear-gradient(to bottom, var(--background), rgba(229, 231, 235, 0.3));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  /* Updated icon background */
  background: rgba(65, 105, 225, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-item a {
  color: var(--muted);
  font-size: 18px;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-item p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.contact-image {
  margin-top: 32px;
}

.contact-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form {
  background: var(--card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

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

.form input,
.form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

/* Footer */
.footer {
  /* Updated footer background to primary color */
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-column a {
  /* Updated link colors */
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-description {
  /* Updated description color */
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 30px;
  /* Updated border color */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Updated text color */
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .hero-title {
    font-size: 40px;
  }

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

  .advantages-grid,
  .services-grid,
  .reviews-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

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

.footer .logo-title{
  color: #f9fcff;
}

.footer .logo-subtitle{
  display: none;
}