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

/* Updated color variables to match exact React version with metallic colors */
:root {
  /* Dark theme colors from globals.css */
  --color-background: rgb(20 20 20); /* oklch(0.08 0 0) */
  --color-foreground: rgb(242 242 245); /* oklch(0.95 0.01 240) */
  --color-accent: #67737C; /* oklch(0.55 0.02 240) - metallic gray/blue */
  --color-metal: #67737C; /* oklch(0.25 0.01 240) */
  --color-metal-dark: rgb(39 39 42); /* darker metal */
  --color-muted: rgb(165 165 180); /* oklch(0.65 0.01 240) */
  --color-border: rgb(64 64 70); /* oklch(0.25 0.01 240) */
  --color-card: rgb(31 31 35); /* oklch(0.12 0 0) */
}

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

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

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-narrow {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
/* Updated header styling with metallic border */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-metal);
  transition: transform 0.3s ease;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid #1d2226;
  backdrop-filter: blur(8px);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
}

.logo-text {
  font-weight: bold;
  font-size: 1.125rem;
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.header-phone:hover {
  color: var(--color-accent);
}

.header-phone .icon {
  width: 20px;
  height: 20px;
}

.phone-number {
  font-family: "Courier New", monospace;
  font-size: 1.125rem;
  display: none;
}

.header .btn{
  color: #fff;
}

/* Buttons */
/* Updated button colors to use metallic accent */
.btn {
  padding: 0.5rem 1.5rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
  background: transparent;
  border-radius: 0.5rem;
}

.btn-primary {
  background: #67737c;
  color: #020202;
}

.btn-primary:hover {
  background-color: rgb(220 220 225);
}

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

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Icons */
.icon {
  width: 24px;
  height: 24px;
}

/* Hero Section */
/* Updated hero overlay gradient */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem;
  padding-top: 80px;
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background: linear-gradient(180deg, rgba(2, 2, 2, 0.9) 0%, rgba(2, 2, 2, 0.7) 50%, #020202 100%);
}

.hero-logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.hero-logo .icon {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.hero-logo span {
  font-size: 1.25rem;
  font-weight: bold;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 0.9;
  margin-bottom: 2rem;
  letter-spacing: -0.05em;
}

.hero-title .accent {
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-muted);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 5rem;
}

.hero-info {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Section */
.section {
  padding: 8rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
  line-height: 1;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.advantage-card {
  cursor: pointer;
}

.advantage-image {
  position: relative;
  height: 256px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-card:hover .advantage-image img {
  filter: grayscale(0%);
}

/* Updated image overlay gradient */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(20, 20, 20), rgba(20, 20, 20, 0.5), transparent);
}

.advantage-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.advantage-title {
  font-size: 1.55rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.advantage-description {
  font-size: 1.125rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Services */
/* Updated service card border colors */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  border: 1px solid var(--color-border);
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: var(--color-accent);
}

.service-image {
  position: relative;
  height: 192px;
  overflow: hidden;
}

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

.service-card:hover .service-image img {
  filter: grayscale(0%);
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

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

/* Updated price color to use metallic accent */
.service-price {
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 0.25rem;
}

.price-unit {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.service-features li span {
  color: var(--color-accent);
  margin-top: 0.25rem;
}

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

/* Stats */
/* Updated stat number color */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--color-accent);
  letter-spacing: -0.05em;
}

.stat-label {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}

.stat-description {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Reviews */
/* Updated review card styling */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-card {
  border: 1px solid var(--color-border);
  padding: 2rem;
  transition: border-color 0.3s;
}

.review-card:hover {
  border-color: var(--color-accent);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.review-rating span {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.review-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.author-name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* SEO Text */
.seo-content {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.seo-content p {
  margin-bottom: 1.5rem;
}

.seo-content p:last-child {
  margin-bottom: 0;
}

/* FAQ */
/* Updated FAQ item styling */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: transparent;
  border: none;
  color: var(--color-foreground);
  font-size: 1.25rem;
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

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

.faq-icon {
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s;
}

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

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

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

.faq-answer p {
  padding: 0 2rem 1.5rem;
  font-size: 1.125rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Contact */
/* Updated contact form input styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.5rem;
 background: rgba(29, 34, 38, 0.3);
  border: 1px solid #1d2226;
  color: var(--color-foreground);
  font-size: 1.125rem;
  font-family: inherit;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

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

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

.form-privacy {
  font-size: 0.875rem;
  color: var(--color-muted);
}

.contact-info-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

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

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

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

.contact-details {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.875rem;
  color: var(--color-muted);
}

.contact-details p {
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 3rem 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo .icon {
  color: var(--color-foreground);
}

.footer-logo span {
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: -0.025em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--color-muted);
}

.footer-nav a {
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--color-foreground);
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-muted);
}

/* Responsive */
@media (min-width: 640px) {
  .logo-text {
    display: block;
  }

  .phone-number {
    display: block;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .header-actions {
    gap: 2rem;
  }

  .hero-title {
    font-size: 6rem;
  }

  .section-title {
    font-size: 5rem;
    margin-bottom: 5rem;
  }

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

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 8rem;
  }

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

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

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

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

@media (max-width: 962px){
  .advantage-icon{
  width: 24px;
  height: 24px;
}

.hero{
  padding-top: 10rem;
}
}
