.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =========================
   Locksmith Homepage v2
   Palette: #2C3E50 (Ink) / #00BFFF (Sky)
   ========================= */

/* Base Layout */
.locksmith-homepage {
  font-family: 'Segoe UI', sans-serif;
  background:
    radial-gradient(1200px 600px at -10% -10%, rgba(0,191,255,0.06), transparent 45%),
    radial-gradient(900px 500px at 110% 110%, rgba(44,62,80,0.08), transparent 50%),
    #f6f8fb;
  color: #233140; /* slightly lighter than #2C3E50 for readability */
  padding: 24px;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

/* Utility */
.container {
  max-width: 1100px;
  margin: 0 auto;
}
.kicker {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #00BFFF;
}

/* Hero */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #2C3E50 0%, #1f2b37 35%, #00BFFF 110%);
  color: #ffffff;
  text-align: center;
  padding: 56px 24px;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(44,62,80,0.25);
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 20% 20%, rgba(255,255,255,0.08), transparent 60%),
              radial-gradient(700px 250px at 80% 80%, rgba(255,255,255,0.06), transparent 65%);
  pointer-events: none;
}
.hero-section h1 {
  font-size: 2.4rem;
  margin: 6px 0 10px;
}
.hero-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .95;
}
.hero-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary,
.btn-ghost {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn-primary {
  background: #00BFFF;
  color: #0c2230;
  box-shadow: 0 8px 18px rgba(0,191,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.25);
}
.btn-ghost:hover { transform: translateY(-2px); }

/* About */
.about-box {
  background: #ffffff;
  border-left: 6px solid #00BFFF;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 38px;
  box-shadow: 0 10px 24px rgba(44,62,80,0.08);
}
.about-box h2 {
  color: #2C3E50;
  margin-bottom: 8px;
}
.about-box p {
  line-height: 1.75;
  font-size: 1rem;
}

/* Services */
.section-head {
  text-align: center;
  margin: 8px 0 26px;
}
.section-head h2 {
  color: #2C3E50;
  font-size: 2rem;
  margin: 6px 0;
}
.section-head p {
  color: #4a5a6a;
  max-width: 760px;
  margin: 0 auto;
}

.services-section {
  margin-bottom: 44px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
}
.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
  border: 1px solid rgba(44,62,80,0.08);
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 18px rgba(44,62,80,0.06);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  /* blue accent stripe */
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: #00BFFF;
  opacity: .9;
}
.service-card h3 {
  margin: 0 0 8px 10px; /* room for stripe */
  color: #2C3E50;
  font-size: 1.15rem;
}
.service-card p {
  margin-left: 10px;
  color: #334456;
  line-height: 1.6;
  font-size: .97rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(44,62,80,0.12);
}

/* Problem Section */
.problem-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(44,62,80,0.08);
  margin-bottom: 44px;
  border-top: 5px solid #2C3E50;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  margin-top: 12px;
}
.problem-card {
  background: #f2f8ff;
  border: 1px solid rgba(0,191,255,0.25);
  border-radius: 12px;
  padding: 18px 20px;
}
.problem-card h4 {
  color: #2C3E50;
  margin: 0 0 6px;
}
.problem-card p {
  color: #3a4b5c;
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose-us {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(44,62,80,0.07);
  margin-bottom: 44px;
  border-left: 6px solid #2C3E50;
}
.why-choose-us h2 {
  color: #2C3E50;
  text-align: center;
  margin-bottom: 18px;
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.why-choose-item {
  background: #ffffff;
  border: 1px solid rgba(44,62,80,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  position: relative;
  overflow: hidden;
}
.why-choose-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 120px at 20% 0%, rgba(0,191,255,0.08), transparent 60%);
  pointer-events: none;
}
.why-choose-item h4 {
  margin: 0 0 6px;
  color: #2C3E50;
}
.why-choose-item p {
  color: #3b4b5b;
  line-height: 1.6;
  font-size: .95rem;
}

/* Advantages */
.advantages-section {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 10px 26px rgba(44,62,80,0.08);
  margin-bottom: 44px;
  border-right: 6px solid #00BFFF;
}
.advantages-section h2 {
  color: #2C3E50;
  text-align: center;
  margin-bottom: 18px;
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.adv-card {
  background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
  border: 1px solid rgba(0,191,255,0.22);
  border-radius: 12px;
  padding: 18px 20px;
}
.adv-card h4 {
  margin: 0 0 6px;
  color: #2C3E50;
}
.adv-card p {
  color: #3b4f61;
  line-height: 1.6;
  font-size: .95rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #00BFFF 0%, #27c3ff 100%);
  color: #0d2533;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0,191,255,0.28);
}
.cta-section h3 {
  font-size: 1.6rem;
  margin: 0 0 6px;
}
.cta-section p {
  margin: 8px auto 16px;
  max-width: 800px;
  line-height: 1.7;
  font-weight: 500;
}
.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-button {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: #2C3E50;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(44,62,80,.35);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.cta-button:hover { transform: translateY(-2px); }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .why-choose-grid,
  .advantages-grid,
  .problem-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 640px) {
  .hero-section { padding: 40px 18px; }
  .hero-section h1 { font-size: 1.9rem; }
  .section-head h2 { font-size: 1.6rem; }
  .services-grid,
  .why-choose-grid,
  .advantages-grid,
  .problem-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */