/* LockPro USA - Main Stylesheet */

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

:root {
  --primary-orange: #F7931E;
  --primary-orange-dark: #e07d0a;
  --primary-blue: #2E5B8C;
  --primary-blue-dark: #1e3d5c;
  --text-dark: #333333;
  --text-light: #666666;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2a2a2a;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

ul {
  list-style: none;
}

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

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

/* Header Styles */
.header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo img {
  height: auto;
  width: auto;
  max-height: 55px;
  max-width: 260px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.logo-text span {
  color: #cc0000;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-orange);
  border-bottom-color: var(--primary-orange);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 5px;
  margin-left: 20px;
}

.lang-btn {
  padding: 5px 10px;
  border: 1px solid var(--primary-blue);
  background: transparent;
  color: var(--primary-blue);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 3px;
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--primary-blue);
  color: var(--text-white);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover no-repeat;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  margin-top: 90px;
  padding: 60px 20px;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-orange);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--primary-blue);
  color: var(--text-white);
}

.btn-secondary:hover {
  background-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

/* Phone Button */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-orange);
  color: var(--text-white);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}

.phone-btn:hover {
  background-color: var(--primary-orange-dark);
  transform: scale(1.05);
}

.phone-btn svg {
  width: 24px;
  height: 24px;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-orange);
  margin: 20px auto 0;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background-color: var(--bg-white);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-card .btn {
  width: 100%;
}

/* About Section */
.about {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.about-content .btn {
  margin-top: 20px;
}

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

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

.review-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.review-card .quote {
  font-size: 3rem;
  color: var(--primary-orange);
  line-height: 1;
  margin-bottom: 15px;
}

.review-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 15px;
}

.review-card .author {
  font-weight: 600;
  color: var(--primary-orange);
}

/* Why Choose Us Section */
.why-us {
  background-color: var(--bg-white);
}

.why-us-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: var(--text-light);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-us-card {
  text-align: center;
}

.why-us-card .image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 3rem;
}

.why-us-card h3 {
  font-size: 1.3rem;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.why-us-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Contact Info Bar */
.contact-bar {
  background-color: var(--primary-blue);
  color: var(--text-white);
  padding: 15px 20px;
}

.contact-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-bar-item svg {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 20px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

.footer-col p,
.footer-col li {
  color: #cccccc;
  margin-bottom: 10px;
}

.footer-col a {
  color: #cccccc;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid #444;
  color: #888;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-orange);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
}

/* Page Header for Inner Pages */
.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  margin-top: 90px;
}

.page-header h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Service Detail Page */
.service-detail {
  padding: 80px 20px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-detail-content h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-detail-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.service-list {
  margin: 20px 0;
}

.service-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-dark);
}

.service-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary-orange);
  font-weight: bold;
}

.service-sidebar {
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.service-sidebar h3 {
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.service-sidebar .phone-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.hours-list {
  margin-top: 20px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

/* Contact Page */
.contact-section {
  padding: 80px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item .icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 24px;
  height: 24px;
  fill: var(--text-white);
}

.contact-item h4 {
  color: var(--text-dark);
  margin-bottom: 5px;
}

.contact-item p {
  color: var(--text-light);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

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

/* About Page */
.about-page {
  padding: 80px 20px;
}

.about-intro {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-intro h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.about-intro p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-light);
  border-radius: 10px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.value-card .icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-card .icon svg {
  width: 40px;
  height: 40px;
  fill: var(--text-white);
}

.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-light);
}

/* Map Placeholder */
.map-container {
  height: 400px;
  background-color: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.map-placeholder {
  text-align: center;
  color: var(--text-light);
}

/* 24/7 Badge */
.badge-24-7 {
  display: inline-block;
  background-color: var(--primary-orange);
  color: var(--text-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .lang-switcher {
    margin-left: 0;
    margin-top: 15px;
    justify-content: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .services-grid,
  .reviews-grid,
  .why-us-grid,
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .about-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 15px;
  }

  .logo img {
    max-height: 45px;
    max-width: 180px;
  }

  .hero {
    min-height: 500px;
    margin-top: 75px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

  .section {
    padding: 50px 15px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .page-header {
    min-height: 200px;
    margin-top: 75px;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }

  .contact-bar-inner {
    flex-direction: column;
    gap: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .phone-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .contact-form {
    padding: 25px;
  }
}

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

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}
