/* SafeCracker Inc - Main Stylesheet */
/* Clean, professional locksmith website - Black & White theme */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  min-height: 100vh;
  background: #fff;
  color: #333;
  line-height: 1.6;
}

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

/* Navigation */
.nav {
  background: #000;
  color: #fff;
  padding: 12px 0;
}

.nav-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav-links {
    justify-content: center;
  }
}

.nav-link {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: #1a1a1a;
}

/* Main Container */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

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

/* Hero Section */
.hero {
  padding: 48px 0;
  text-align: center;
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 8px;
}

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

.hero-license {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.hero-experience {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  background: #f5f5f5;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 16px;
}

.hero-phone {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 32px;
}

/* CTA Buttons */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.cta-btn {
  display: inline-block;
  background: #000;
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.2s;
}

.cta-btn:hover {
  background: #1a1a1a;
}

.cta-btn-light {
  background: #fff;
  color: #000;
  border: 2px solid #000;
}

.cta-btn-light:hover {
  background: #f5f5f5;
}

/* About Text */
.about-text {
  padding: 32px 0;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  color: #444;
  line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
  padding: 32px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.trust-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.trust-item p {
  font-size: 12px;
  color: #666;
}

/* Services Section */
.services-section {
  padding: 48px 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 24px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: #000;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.service-card p {
  color: #666;
}

/* Service Area */
.service-area {
  padding: 32px 16px;
  background: #f9fafb;
  border-radius: 8px;
  margin: 0 -16px;
}

@media (min-width: 768px) {
  .service-area {
    margin: 0;
  }
}

.service-area h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

.service-area p {
  text-align: center;
  margin-bottom: 8px;
}

.service-area .main-area {
  color: #444;
}

.service-area .counties {
  color: #666;
}

.service-area .cities {
  font-size: 14px;
  color: #888;
}

/* Black CTA Section */
.cta-section {
  padding: 48px 16px;
  background: #000;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  margin: 48px -16px 0;
}

@media (min-width: 768px) {
  .cta-section {
    margin: 48px 0 0;
  }
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section .phone {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

/* Page Header */
.page-header {
  padding: 48px 0 32px;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 1.25rem;
  color: #666;
}

/* Content Sections */
.content-section {
  margin-bottom: 48px;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

/* Service List (bordered items) */
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-item {
  border-left: 4px solid #000;
  padding: 8px 0 8px 16px;
}

.service-item h3 {
  font-weight: 700;
  color: #000;
}

.service-item p {
  font-size: 14px;
  color: #666;
}

/* Bullet Lists */
.bullet-list {
  list-style: none;
}

.bullet-list li {
  color: #444;
  margin-bottom: 8px;
}

.bullet-list li::before {
  content: "• ";
}

/* Gray Box */
.gray-box {
  background: #f9fafb;
  padding: 32px 16px;
  border-radius: 8px;
  margin: 0 -16px 48px;
}

@media (min-width: 768px) {
  .gray-box {
    margin: 0 0 48px;
  }
}

.gray-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.info-card {
  border-left: 4px solid #000;
  padding: 8px 0 8px 16px;
}

.info-card h3 {
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.info-card p {
  color: #444;
}

.info-card .small {
  font-size: 14px;
  color: #666;
}

/* Contact Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000;
}

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

.submit-btn {
  background: #000;
  color: #fff;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #1a1a1a;
}

/* FAQ Section */
.faq-section {
  padding: 48px 0;
  border-top: 1px solid #e5e5e5;
}

.faq-list {
  margin-bottom: 48px;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e5e5;
  background: #f9fafb;
  margin-top: 64px;
  padding: 32px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-col h3 {
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  color: #666;
}

.footer-col a {
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #000;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #d1d5db;
  text-align: center;
  font-size: 14px;
  color: #666;
}

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

/* City Grid */
.city-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .city-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.city-card {
  display: block;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  color: #333;
  transition: all 0.2s;
}

.city-card:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}

/* Featured Job */
.featured-job {
  background: #f9fafb;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 48px;
}

.featured-badge {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.featured-job h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.job-meta {
  color: #666;
  margin-bottom: 16px;
}

.job-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.gallery-item:hover {
  border-color: #000;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-caption {
  padding: 16px;
}

.gallery-caption h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 14px;
  color: #666;
}

.gallery-placeholder {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  background: #f9fafb;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
}

.gallery-placeholder p {
  color: #666;
  margin-bottom: 8px;
}

.gallery-placeholder .small {
  font-size: 14px;
  color: #888;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-8 {
  margin-top: 32px;
}
