/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: #fff;
  overflow-x: hidden;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Colors & Shadows */
:root {
  --primary: #dc2626;
  --secondary: #0066cc;
  --success: #22c55e;
  --info: #0ea5e9;
  --warning: #f59e0b;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: transform 0.3s;
}
.logo:hover {
  transform: scale(1.05);
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}
.logo-text {
  font-size: 1.125rem;
}
.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lang-switcher {
  display: flex;
  gap: 0;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.lang-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  background: transparent;
}
.lang-btn:hover {
  background: var(--gray-50);
}
.lang-btn.active {
  background: var(--primary);
  color: #fff;
}
.phone-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gray-900);
  transition: all 0.3s;
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #b91c1c);
  color: #fff;
  box-shadow: 0 4px 15px rgba(220,38,38,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220,38,38,0.4);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gray-300);
  color: var(--gray-900);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(220,38,38,0.05);
}
.btn-success {
  background: var(--success);
  color: #fff;
}
.btn-success:hover {
  background: #16a34a;
  transform: translateY(-2px);
}
.btn-info {
  background: var(--info);
  color: #fff;
}
.btn-info:hover {
  background: #0284c7;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}
.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.125rem;
}
.btn-block {
  width: 100%;
}
.icon {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg,rgba(0,102,204,0.04),rgba(220,38,38,0.04));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,rgba(220,38,38,0.1),transparent);
  border-radius: 50%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text .badge {
  display: inline-block;
  background: linear-gradient(135deg,var(--primary),#b91c1c);
  color: #fff;
  padding: 0.625rem 1.75rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s;
}
.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg,var(--gray-900),var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s 0.2s both;
}
.hero-text .lead {
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.8s 0.4s both;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s both;
}
.hero-image {
  position: relative;
  animation: fadeInRight 1s 0.4s both;
}
.hero-image img {
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  width: 100%;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  position: absolute;
  bottom: -2rem;
  left: 1rem;
  right: 1rem;
}
.stat-card {
  background: #fff;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--gray-700);
  font-weight: 500;
  margin-top: 0.25rem;
}
.hero-contacts {
  margin-top: 2rem;
  animation: fadeInUp 0.8s 0.8s both;
}
.hero-contacts span {
  display: block;
  margin-bottom: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}
.social-links-inline {
  display: flex;
  gap: 1rem;
}
.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.social-btn.whatsapp {
  background: #25D366;
  color: #fff;
}
.social-btn.whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-btn.telegram {
  background: #0088cc;
  color: #fff;
}
.social-btn.telegram:hover {
  background: #0077b5;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-btn.viber {
  background: #7360f2;
  color: #fff;
}
.social-btn.viber:hover {
  background: #5d4dd9;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px);}
  to { opacity: 1; transform: translateX(0);}
}
@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto;
}

/* Services Grid */
.services-section,
.advantages-section,
.steps-section,
.reviews-section,
.contact-section {
  padding: 4rem 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 2.5rem;
}
.service-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-image img {
  transform: scale(1.05);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,rgba(0,0,0,0.7),transparent);
}
.service-title-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.service-content {
  padding: 1.75rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-description {
  color: var(--gray-700);
  margin-bottom: 1rem;
  flex: 1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.meta-label {
  display: block;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.meta-value {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
}
.meta-value.price {
  color: var(--primary);
}
.service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

/* Advantages */
.advantages-section {
  background: var(--gray-50);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 2.5rem;
}
.advantage-card {
  background: #fff;
  padding: 2.25rem 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.advantage-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-lg);
}
.advantage-icon {
  width: 56px;
  height: 56px;
  background: rgba(220,38,38,0.12);
  color: var(--primary);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 2rem;
}
.advantage-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Steps */
.steps-section {
  background: var(--gray-50);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 2.5rem;
}
.step-card {
  text-align: center;
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.02);
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}
.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 2.5rem;
}
.review-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
}
.review-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.02);
}
.review-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
.review-avatar,
.review-avatar-text {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-avatar-text {
  background: rgba(220,38,38,0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}
.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
}
.review-text {
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.review-date {
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--gray-50);
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(220,38,38,0.08);
}
.form-consent {
  font-size: 0.8rem;
  color: var(--gray-700);
  text-align: center;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item strong {
  display: block;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: var(--gray-50);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}
.footer-col p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.footer-col h4 {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: var(--gray-700);
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(220,38,38,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 1.25rem;
}
.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.08);
}
.contact-list {
  list-style: none;
}
.contact-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
  text-align: center;
  color: var(--gray-700);
  font-size: 0.9rem;
}

/* Utility */
.text-center {
  text-align: center;
}
.mt-4 {
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1rem;
  }
  .hero-content {
    gap: 2rem;
  }
  .services-grid,
  .advantages-grid,
  .reviews-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image {
    margin-top: 2rem;
  }
  .stats-grid {
    position: static;
    margin-top: 2rem;
    grid-template-columns: repeat(3,1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-menu {
    display: none;
  }
  .phone-btn .icon {
    display: none;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-text h1 {
    font-size: 2.1rem;
  }
  .stats-grid {
    grid-template-columns: repeat(3,1fr);
    position: static;
    margin-top: 2rem;
  }
  .services-grid,
  .advantages-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
  .catalog-filters,
  .faq-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.5rem;
  }
  .hero-section {
    padding: 2.5rem 0;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .footer {
    padding: 2rem 0 0.5rem;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg,rgba(0,102,204,0.05),rgba(220,38,38,0.05));
  padding: 3rem 0;
  margin-bottom: 3rem;
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg,var(--primary),var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-header p {
  font-size: 1.125rem;
  color: var(--gray-700);
}
.breadcrumb {
  font-size: 0.95rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: var(--primary);
  text-decoration: underline;
}

/* Filters */
.catalog-filters,
.faq-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 2px solid var(--gray-200);
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
  font-size: 1rem;
}
.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(220,38,38,0.05);
}
.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* FAQ */
.faq-section {
  padding: 4rem 0;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border-radius: 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active {
  box-shadow: var(--shadow-lg);
}
.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
}
.faq-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}
.faq-answer p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Service Detail */
.service-detail {
  padding: 2rem 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.service-detail-image img {
  border-radius: 1rem;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.service-detail-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}
.service-detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.service-detail-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.detail-item:last-child {
  border-bottom: none;
}
.detail-label {
  font-weight: 600;
  color: var(--gray-700);
}
.detail-value {
  font-size: 1.125rem;
  font-weight: 700;
}
.detail-value.price {
  color: var(--primary);
  font-size: 1.5rem;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-detail-description {
  max-width: 900px;
}
.service-detail-description h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.service-detail-description h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}
.service-detail-description ul,
.service-detail-description ol {
  margin-left: 1.5rem;
  color: var(--gray-700);
}
.service-detail-description li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.related-services {
  padding: 4rem 0;
  background: var(--gray-50);
}

/* About Page */
.about-section {
  padding: 4rem 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}
.about-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.about-content p {
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Team */
.team-section {
  padding: 4rem 0;
  background: var(--gray-50);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 2rem;
}
.team-member {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
}
.team-member:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px) scale(1.02);
}
.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
}
.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.member-role {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-member p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
}
.cta-card {
  background: linear-gradient(135deg,rgba(0,102,204,0.05),rgba(220,38,38,0.05));
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.cta-card p {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.cta-card .social-links {
  justify-content: center;
}

/* Rating */
.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.stars {
  color: #fbbf24;
  font-size: 1.5rem;
}
.rating-value {
  font-weight: 700;
  font-size: 1.25rem;
}
.rating-count {
  color: var(--gray-700);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border-radius: 1rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
    .phone-btn {
        display: none !important;
    }
}
