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

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

:root {
  /* Updated color scheme with proper acid lime green */
  --color-bg: #0a0a0a;
  --color-card: #1a1a1a;
  --color-border: #2a2a2a;
  --color-text: #ffffff;
  --color-text-muted: #9ca3af;
  --color-accent: #ccff00;
  --color-accent-dark: #b3e600;
  --color-accent-glow: rgba(204, 255, 0, 0.3);
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enhanced header with better contrast */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(204, 255, 0, 0.2);
}

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

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

/* Animated logo icon with glow */
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logoGlow 3s ease-in-out infinite;
  box-shadow: 0 0 20px var(--color-accent-glow);
}

.logo-icon svg {
  color: #000;
  width: 24px;
  height: 24px;
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow: 0 0 20px var(--color-accent-glow), 0 0 40px rgba(204, 255, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 30px var(--color-accent-glow), 0 0 60px rgba(204, 255, 0, 0.3);
  }
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--color-accent);
  text-shadow: 0 0 20px var(--color-accent-glow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Enhanced button styles with glow effects */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 4px 20px rgba(204, 255, 0, 0.3);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 6px 30px rgba(204, 255, 0, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.4);
}

.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Hero section with background image and enhanced overlay */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("professional-security-guard-in-black-uniform-with-.jpg") center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.97) 0%,
    rgba(10, 10, 10, 0.85) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

/* Floating background elements for visual interest */
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.4);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.hero-badge svg {
  width: 20px;
  height: 20px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  color: var(--color-text);
  letter-spacing: -1px;
}

.text-accent {
  color: var(--color-accent);
  text-shadow: 0 0 40px rgba(204, 255, 0, 0.6);
}

.hero-description {
  font-size: 1.35rem;
  color: #d1d5db;
  margin-bottom: 2.75rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #d1d5db;
  font-size: 1rem;
  font-weight: 500;
}

.hero-feature svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

/* Section Styles */
.section {
  padding: 6rem 0rem;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.6) 0%, rgba(15, 15, 15, 0.8) 100%);
  border-top: 1px solid rgba(204, 255, 0, 0.1);
  border-bottom: 1px solid rgba(204, 255, 0, 0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-title {
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  line-height: 1.15;
  letter-spacing: -1px;
}

.section-description {
  font-size: 1.3rem;
  color: var(--color-text-muted);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Enhanced card styles with hover effects and icons */
.card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.card-hover:hover {
  border-color: rgba(204, 255, 0, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(204, 255, 0, 0.15);
}

.card-hover:hover::before {
  opacity: 1;
}

.card-hover:hover .card-icon {
  background: rgba(204, 255, 0, 0.25);
  transform: scale(1.1) rotate(5deg);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(204, 255, 0, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.4s;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.15);
}

.card-icon svg {
  color: var(--color-accent);
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.card-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  color: var(--color-text);
}

.card-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Service cards with pricing and features */
.service-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(204, 255, 0, 0.6);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(204, 255, 0, 0.15);
}

.service-card > * {
  padding: 0 2.5rem;
}

.service-card .card-icon {
  margin: 2.5rem;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
  color: var(--color-text);
}

#advantages{
  overflow: hidden;
}

.section{
  overflow: hidden;
}

.service-description {
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.service-price {
  margin-bottom: 1.75rem;
  padding: 1.5rem;
  background: rgba(204, 255, 0, 0.05);
  border-radius: 12px;
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.375rem;
  text-shadow: 0 0 20px var(--color-accent-glow);
}

.price-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-features svg {
  color: var(--color-accent);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 6px var(--color-accent-glow));
}

.service-card .btn {
  width: 90%;
  margin: 0 auto 1rem;
  padding: 1.6rem;
}

/* Stats section with gradient background and animations */
.stats-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border-top: 2px solid rgba(204, 255, 0, 0.3);
  border-bottom: 2px solid rgba(204, 255, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(204, 255, 0, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(204, 255, 0, 0.08) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: rgba(204, 255, 0, 0.12);
  border: 1px solid rgba(204, 255, 0, 0.4);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.2);
}

.stats-badge svg {
  width: 20px;
  height: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  transition: transform 0.4s;
}

.stat-item:hover {
  transform: scale(1.15);
}

.stat-value {
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(204, 255, 0, 0.5);
  line-height: 1;
}

.stat-label {
  color: #d1d5db;
  font-size: 1.2rem;
  font-weight: 500;
}

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

/* Review cards with star ratings */
.review-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.review-card:hover {
  border-color: rgba(204, 255, 0, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(204, 255, 0, 0.1);
}

.review-card:hover::before {
  opacity: 1;
}

.review-stars {
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1.5rem;
}

.review-stars svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 6px var(--color-accent-glow));
}

.review-text {
  color: #e5e7eb;
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.review-author {
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.review-name {
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.375rem;
  font-size: 1.1rem;
}

.review-company {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* SEO Text Section */
.seo-container {
  max-width: 950px;
}

.seo-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 1.75rem;
  line-height: 1.3;
}

.seo-subtitle {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.5rem;
}

.seo-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--color-accent);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color-accent-glow);
}

.seo-text {
  color: #d1d5db;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* FAQ section with accordion functionality */
.faq-container {
  max-width: 950px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.faq-item.active {
  border-color: rgba(204, 255, 0, 0.6);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(204, 255, 0, 0.1);
}

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

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

.faq-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 6px var(--color-accent-glow));
}

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

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

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

.faq-answer p {
  padding: 0 2rem 1.75rem 2rem;
  color: #d1d5db;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Contact section with form and contact details */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.contact-description {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: rgba(204, 255, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(204, 255, 0, 0.15);
}

.contact-icon svg {
  color: var(--color-accent);
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 8px var(--color-accent-glow));
}

.contact-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: var(--color-text);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.1rem;
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-group label {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.25rem;
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 1.05rem;
  transition: all 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(204, 255, 0, 0.15);
}

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

.form-note {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.form-success svg {
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px var(--color-accent-glow));
}

.form-success h3 {
  font-size: 1.75rem;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.form-success p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

/* Footer with enhanced styling */
.footer {
  background: linear-gradient(180deg, var(--color-card) 0%, #0f0f0f 100%);
  border-top: 2px solid rgba(204, 255, 0, 0.2);
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-title {
  color: var(--color-text);
  font-weight: 800;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.footer-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.05rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent);
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* Glow Effect */
.glow-effect {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(204, 255, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Responsive design improvements */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

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

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

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

  .mobile-menu-btn {
    display: flex;
  }

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

  .hero-description {
    font-size: 1.15rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0rem;
  }

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

  .service-price{
    margin: 0 1.75rem !important;
  }

  .section-description {
    font-size: 1.1rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.75rem;
  }

  .stat-value {
    font-size: 3.5rem;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }
  #reviews .grid{
  grid-template-columns: repeat(1, 1fr);
}
.price{
  font-size: 1.6rem;
}
.card, .service-card > *, .review-card{
  margin: 0 1rem;
}
.service-card .btn{
  margin: 0 1rem 3rem;
  width: 90%;
}
.service-card .card-icon{
  margin: 1rem 2.5rem;
}
.logo-text{
  display: none;
}
.card, .service-card > *, .review-card{
  margin: 0;
}
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

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

  .hero-description {
    font-size: 1rem;
  }

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

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

  .stat-value {
    font-size: 2.75rem;
  }

  .card,
  .service-card > *,
  .review-card {
    padding: 1.75rem;
  }
}


