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

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

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --color-primary: #2d2d2d;
  --color-primary-light: #3d3d3d;
  --color-foreground: #fafaf9;
  --color-background: #ffffff;
  --color-muted: #f5f5f4;
  --color-muted-foreground: #737373;
  --color-border: #e7e5e4;
  --color-accent: #fff;
  --color-card: #ffffff;
  --font-sans: "Inter", sans-serif;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--color-primary);
  background: var(--color-background);
  overflow-x: hidden;
}

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

.section {
  padding: 6rem 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.1rem, 8vw, 5rem);
  margin-bottom: 2rem;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.75rem);
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 1.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--color-muted-foreground);
  text-align: center;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.625rem 1.563rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
}

.btn-primary {
  background: #FAFAFA;
  color: #171717;
  border: none;
  outline: none;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  color: #fff;
}

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

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

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.text-center {
  text-align: center;
  margin-top: 3rem;
}

header{
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 1;
  font-weight: 700;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-foreground);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero.jpg');
  background-size: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("public/professional-security-guards-monitoring-surveillan.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45, 45, 45, 0.8), rgba(45, 45, 45, 0.9), var(--color-primary));
}

.hero-circles {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.circle {
  position: absolute;
  border: 2px solid var(--color-foreground);
  border-radius: 50%;
}

.circle-1 {
  top: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
}

.circle-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 20rem;
  height: 20rem;
}

.circle-3 {
  top: 50%;
  left: 33%;
  width: 16rem;
  height: 16rem;
  border-width: 1px;
}

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

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.hero-icon::before {
  content: "";
  position: absolute;
  inset: -2rem;
  background: rgba(250, 250, 249, 0.1);
  filter: blur(3rem);
  border-radius: 50%;
}

.hero-icon svg {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  font-size: clamp(0.875rem, 2vw, 1rem);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

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

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

.advantage-card {
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-0.5rem);
}

.advantage-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.advantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.advantage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 45, 45, 0.8), transparent);
}

.advantage-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  background: var(--color-foreground);
  color: var(--color-primary);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.advantage-card h3 {
  margin-bottom: 0.75rem;
}

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

/* Services Section */
.services {
  background: var(--color-muted);
}

.services .btn{
  background: #171717;
  color: #fff;
}

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

.service-card {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

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

.service-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

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

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

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-card), transparent);
}

.service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background: var(--color-primary);
  color: var(--color-foreground);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-content {
  padding: 2rem;
}

.service-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(115, 115, 115, 0.2);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card:hover .service-number {
  color: rgba(45, 45, 45, 0.2);
}

.service-content h3 {
  margin-bottom: 1rem;
}

.service-content p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  padding-top: 1rem;
  border-top: 2px solid var(--color-border);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Statistics Section */
.statistics {
  background: var(--color-primary);
  color: var(--color-foreground);
}

.statistics h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

.stat-number {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.stat-suffix {
  color: var(--color-accent);
}

.stat-label {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  opacity: 0.8;
}

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

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--color-card);
  padding: 2rem;
  border: 2px solid var(--color-border);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(115, 115, 115, 0.1);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  color: var(--color-accent);
}

.review-text {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.review-author {
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.review-name {
  font-weight: 700;
  font-size: 1.125rem;
}

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

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

.seo-content {
  max-width: 56rem;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 2rem;
}

.seo-content p {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 0 2rem;
  transition: border-color 0.3s ease;
}

.faq-item.active {
  border-color: var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--color-primary);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  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 {
  font-size: 1.125rem;
  color: var(--color-muted-foreground);
  line-height: 1.6;
  padding-bottom: 1.5rem;
}

/* Contact Section */
.contact-section {
  background: var(--color-background);
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.contact-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("public/modern-security-office-interior-with-professional-.jpg") center / cover;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  color: var(--color-foreground);
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}

.contact-form-wrapper {
  background: var(--color-card);
  border: 2px solid var(--color-border);
  padding: 3rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  font-size: 1.125rem;
  border: 2px solid var(--color-border);
  border-radius: 0.25rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 8rem;
}

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

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

.contact-info {
  background: var(--color-primary);
  color: var(--color-foreground);
  padding: 2rem;
  border: 2px solid var(--color-primary);
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: var(--color-foreground);
  color: var(--color-primary);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-label {
  font-size: 0.875rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

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

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

.contact-subvalue {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.response-time {
  background: rgba(92, 91, 91, 0.1);
  border: 2px solid rgba(119, 119, 119, 0.2);
  padding: 1.5rem;
  text-align: center;
}

.response-number {
  font-size: 2.5rem;
  font-weight: 700;
 color: #313131;
  margin-bottom: 0.5rem;
}

.response-label {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

/* Footer */
.footer {
  background: var(--color-muted);
  color: var(--color-primary);
  padding: 4rem 0 2rem;
}

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

.footer-about {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .footer-about {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-about p {
  color: var(--color-muted-foreground);
  line-height: 1.6;
}

.footer-links h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 2px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

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

  .contact-form-wrapper {
    padding: 2rem;
  }

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

@media (max-width: 480px) {
  .circle-1,
  .circle-2,
  .circle-3 {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
