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

    :root {
      --primary-blue: #114a8b;
      --dark-blue: #0b325f;
      --fresh-green: #18a66a;
      --light-green: #22c983;
      --white: #ffffff;
      --text-dark: #1d2a35;
      --soft-bg: #f4fbf8;
      --border-light: rgba(255, 255, 255, 0.15);
      --shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

   body {
      font-family: Arial, Helvetica, sans-serif;
      background: #fff;
      color: var(--text-dark);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
    }

    ul {
      list-style: none;
    }

    /* Top Bar */
    .top-bar {
      background: var(--dark-blue);
      color: var(--white);
      padding: 10px 0;
      font-size: 14px;
    }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    .top-bar .container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    .phone-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    transition: 0.3s ease;
}
.free-estimate {
    color: #F77F00;
    font-size: 18px;
    font-weight: 700;
}
    .phone-top:hover {
      color: #9ff5d0;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(17, 74, 139, 0.08);
    }

    .navbar {
      min-height: 78px;
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--dark-blue);
      font-size: 24px;
      font-weight: 800;
      letter-spacing: 0.3px;
    }

    .logo-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 20px;
      box-shadow: var(--shadow);
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-menu a {
      color: var(--text-dark);
      font-weight: 600;
      transition: 0.3s ease;
      position: relative;
    }

    .nav-menu a:hover {
      color: var(--fresh-green);
    }

    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--fresh-green);
      transition: 0.3s ease;
    }

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

    .cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
      color: var(--white);
      padding: 12px 20px;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 10px 25px rgba(24, 166, 106, 0.22);
      transition: 0.3s ease;
      white-space: nowrap;
    }

    .cta-btn:hover {
      transform: translateY(-2px);
    }

    /* Mobile Toggle */
    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: none;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
      cursor: pointer;
      position: relative;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      position: absolute;
      left: 11px;
      width: 24px;
      height: 3px;
      background: var(--white);
      border-radius: 10px;
      transition: 0.3s ease;
    }

    .menu-toggle span {
      top: 21px;
    }

    .menu-toggle::before {
      top: 14px;
    }

    .menu-toggle::after {
      top: 28px;
    }

    .menu-toggle.active span {
      opacity: 0;
    }

    .menu-toggle.active::before {
      transform: rotate(45deg);
      top: 21px;
    }

    .menu-toggle.active::after {
      transform: rotate(-45deg);
      top: 21px;
    }

    /* Hero */
   .hero{
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;

  background-image:
  linear-gradient(rgba(11,50,95,0.75), rgba(11,50,95,0.75)),
  url("../images/locksmith-hero.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

    .hero::before,
    .hero::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      z-index: 0;
      animation: floatShape 8s ease-in-out infinite;
    }

    .hero::before {
      width: 320px;
      height: 320px;
      background: rgba(255, 255, 255, 0.08);
      top: -80px;
      right: -80px;
    }

    .hero::after {
      width: 220px;
      height: 220px;
      background: rgba(255, 255, 255, 0.05);
      bottom: 20px;
      left: -60px;
      animation-delay: 2s;
    }

    .hero-wrap {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      padding: 80px 0;
    }

    .hero-text {
      color: var(--white);
      animation: fadeUp 1s ease;
    }

    .hero-badge {
      display: inline-block;
      padding: 8px 14px;
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid var(--border-light);
      border-radius: 30px;
      font-size: 14px;
      margin-bottom: 18px;
      backdrop-filter: blur(4px);
    }

     .hero-text h1 {
      font-size: 27px;
      line-height: 1.1;
      margin-bottom: 20px;
      font-weight: 800;
      max-width: 700px;color:#ffffff
    }

    .hero-text p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.92);
      max-width: 680px;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 28px;
    }

    .hero-btn {
      padding: 14px 24px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      transition: 0.3s ease;
    }

    .hero-btn.primary {
      background: var(--white);
      color: var(--dark-blue);
    }

    .hero-btn.primary:hover {
      transform: translateY(-2px);
    }

    .hero-btn.secondary {
      border: 2px solid rgba(255, 255, 255, 0.35);
      color: var(--white);
      background: transparent;
    }

    .hero-btn.secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .hero-features {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-features span {
      padding: 10px 14px;
      background: rgba(255, 255, 255, 0.11);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 30px;
      font-size: 14px;
      color: var(--white);
    }

    .hero-card {
      background: rgba(255, 255, 255, 0.12);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 28px;
      padding: 30px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
      color: var(--white);
      animation: fadeInRight 1.1s ease;
      position: relative;
    }

    .hero-card h3 {
      font-size: 24px;
      margin-bottom: 18px;
      font-weight: 800;
    }

    .hero-card ul {
      display: grid;
      gap: 14px;
      margin-bottom: 24px;
    }

    .hero-card li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 16px;
      color: rgba(255, 255, 255, 0.95);
    }

    .hero-card .mini-call {
      display: block;
      width: 100%;
      text-align: center;
      background: var(--white);
      color: var(--dark-blue);
      font-weight: 800;
      padding: 14px 18px;
      border-radius: 18px;
      transition: 0.3s ease;
    }

    .hero-card .mini-call:hover {
      transform: scale(1.02);
    }

    /* Mobile Menu */
    @media (max-width: 991px) {
      .menu-toggle {
        display: inline-block;
      }

      .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid rgba(17, 74, 139, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }

      .nav-menu-wrapper.active {
        max-height: 500px;
      }

      .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 18px 20px;
      }

      .nav-menu li {
        width: 100%;
      }

      .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 0;
      }

      .desktop-btn {
        display: none;
      }

      .hero-wrap {
        grid-template-columns: 1fr;
        padding: 65px 0;
      }

      .hero-text h1 {
        font-size: 40px;
      }
    }

    @media (max-width: 767px) {
      .top-bar .container {
        justify-content: center;
        text-align: center;
      }

      .navbar {
        min-height: 72px;
      }

      .logo {
        font-size: 20px;
      }

      .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .hero {
        min-height: auto;
      }

      .hero-text h1 {
        font-size: 33px;
      }

      .hero-text p {
        font-size: 16px;
      }

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

      .hero-btn {
        text-align: center;
      }

      .hero-card {
        padding: 24px;
      }
    }

    @media (max-width: 480px) {
      .hero-text h1 {
        font-size: 28px;
      }

      .hero-badge {
        font-size: 13px;
      }

      .phone-top {
        font-size: 13px;
      }
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes floatShape {
      0%, 100% {
        transform: translateY(0px);
      }
      50% {
        transform: translateY(18px);
      }
    }
  .about-us {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.about-dots {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.about-dots-one {
  width: 220px;
  height: 220px;
  background: rgba(0, 123, 255, 0.08);
  top: -60px;
  left: -60px;
}

.about-dots-two {
  width: 180px;
  height: 180px;
  background: rgba(40, 167, 69, 0.08);
  bottom: -50px;
  right: -50px;
}

.about-us .container {
  position: relative;
  z-index: 2;
}

.about-text {
  padding-right: 20px;
}

.about-text h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #475569;
  margin-bottom: 18px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #1e293b;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 700;
  font-size: 1rem;
}

.about-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #0f766e;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-call:hover {
  background: #115e59;
  color: #fff;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  object-fit: cover;
}

/* Tablet */
@media (max-width: 991.98px) {
  .about-us {
    padding: 65px 0;
  }

  .about-text {
    padding-right: 0;
  }

  .about-text h2 {
    font-size: 1.75rem;
  }

  .about-image {
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .about-us {
    padding: 50px 0;
  }

  .about-text h2 {
    font-size: 1.45rem;
    line-height: 1.4;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-points li {
    font-size: 0.95rem;
    padding-left: 24px;
  }

  .about-call {
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }

  .about-image img {
    border-radius: 14px;
  }
}

.counter-section{
padding:90px 0;
background:#0b325f;
color:white;
text-align:center;
}

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

.counter-box{
background:rgba(255,255,255,0.05);
padding:40px 20px;
border-radius:12px;
transition:0.3s;
}

.counter-box:hover{
transform:translateY(-5px);
background:rgba(255,255,255,0.1);
}

.counter-box h3{
font-size:42px;
color:#18a66a;
margin-bottom:10px;
}

.counter-box p{
font-size:16px;
letter-spacing:1px;
}

@media(max-width:991px){

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

}

@media(max-width:500px){

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

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

.counter-title h2{
font-size:36px;
margin-bottom:15px;
color:white;
}

.counter-title p{
max-width:700px;
margin:auto;
color:#d8e7f0;
font-size:17px;
line-height:1.7;
}

.contact-pro-section{
  padding: 100px 0;
  background:
    linear-gradient(180deg, #f7fcfa 0%, #eef7f3 100%);
  position: relative;
  overflow: hidden;
}

.contact-pro-section::before{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(24,166,106,0.08);
  top: -80px;
  left: -80px;
}

.contact-pro-section::after{
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(17,74,139,0.06);
  bottom: -120px;
  right: -100px;
}

.contact-pro-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
  position: relative;
  z-index: 2;
}

.contact-mini-title{
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .8px;
  color: #18a66a;
  background: rgba(24,166,106,0.10);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.contact-pro-head h2{
  font-size: 42px;
  line-height: 1.2;
  color: #0b325f;
  margin-bottom: 14px;
}

.contact-pro-head p{
  font-size: 17px;
  line-height: 1.8;
  color: #4d5b66;
}

.contact-pro-grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

/* Left card */
.contact-pro-card{
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(11,50,95,0.08);
  overflow: hidden;
  border: 1px solid rgba(17,74,139,0.06);
}

.contact-top-info{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #114a8b, #18a66a);
}

.info-chip{
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.info-chip:last-child{
  border-right: 0;
}

.info-chip strong{
  display: block;
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 6px;
}

.info-chip span{
  color: rgba(255,255,255,0.92);
  font-size: 14px;
}

.contact-form-wrap{
  padding: 34px;
}

.contact-form-wrap h3{
  font-size: 28px;
  color: #0b325f;
  margin-bottom: 10px;
}

.contact-form-wrap p{
  color: #5c6a75;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-pro-form .form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-pro-form .form-row.single{
  grid-template-columns: 1fr;
}

.contact-pro-form input,
.contact-pro-form textarea{
  width: 100%;
  border: 1px solid #dbe6e2;
  background: #fbfefd;
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 15px;
  color: #1f2d38;
  outline: none;
  transition: 0.3s ease;
}

.contact-pro-form input:focus,
.contact-pro-form textarea:focus{
  border-color: #18a66a;
  box-shadow: 0 0 0 4px rgba(24,166,106,0.10);
  background: #ffffff;
}

.contact-pro-form textarea{
  min-height: 140px;
  resize: vertical;
}

.form-actions{
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.form-actions button,
.call-now-btn{
  min-width: 180px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.form-actions button{
  border: none;
  background: linear-gradient(135deg, #18a66a, #114a8b);
  color: #ffffff;
  cursor: pointer;
}

.form-actions button:hover{
  transform: translateY(-2px);
}

.call-now-btn{
  background: #eef7f3;
  color: #0b325f;
  border: 1px solid #d5e7df;
}

.call-now-btn:hover{
  background: #0b325f;
  color: #ffffff;
}

/* Right side map */
.contact-map-card{
  background: #ffffff;
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(11,50,95,0.08);
  overflow: hidden;
  border: 1px solid rgba(17,74,139,0.06);
  display: flex;
  flex-direction: column;
}

.map-card-head{
  padding: 28px 28px 18px;
}

.map-card-head h3{
  font-size: 28px;
  color: #0b325f;
  margin-bottom: 8px;
}

.map-card-head p{
  color: #5c6a75;
  line-height: 1.7;
}

.contact-map-frame{
  height: 100%;
  min-height: 460px;
  border-top: 1px solid #edf3f1;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 991px){
  .contact-pro-grid{
    grid-template-columns: 1fr;
  }

  .contact-pro-head h2{
    font-size: 34px;
  }

  .contact-map-frame{
    min-height: 360px;
  }
}

@media (max-width: 767px){
  .contact-top-info{
    grid-template-columns: 1fr;
  }

  .info-chip{
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .info-chip:last-child{
    border-bottom: 0;
  }

  .contact-form-wrap{
    padding: 24px;
  }

  .contact-pro-form .form-row{
    grid-template-columns: 1fr;
  }

  .contact-pro-head h2{
    font-size: 29px;
  }

  .form-actions{
    flex-direction: column;
  }

  .form-actions button,
  .call-now-btn{
    width: 100%;
  }
}
.tech-lock-section{
  position: relative;
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.tech-lock-section::before{
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(24,166,106,0.06);
  top: -120px;
  left: -90px;
}

.tech-lock-section::after{
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(17,74,139,0.05);
  bottom: -100px;
  right: -80px;
}

.tech-lock-wrap{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.tech-lock-content{
  animation: techFadeUp 1s ease;
}

.tech-lock-tag{
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(24,166,106,0.10);
  color: #18a66a;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.tech-lock-content h2{
  font-size: 40px;
  line-height: 1.2;
  color: #0b325f;
  margin-bottom: 18px;
}

.tech-lock-content p{
  font-size: 17px;
  line-height: 1.9;
  color: #4d5b66;
  margin-bottom: 18px;
}

.tech-lock-btn{
  display: inline-block;
  margin-top: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #114a8b, #18a66a);
  box-shadow: 0 12px 26px rgba(17,74,139,0.16);
  transition: 0.3s ease;
}

.tech-lock-btn:hover{
  transform: translateY(-3px);
}

.tech-lock-cards{
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-card{
  position: absolute;
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 45px rgba(11,50,95,0.10);
  border: 1px solid rgba(17,74,139,0.07);
  width: 280px;
  z-index: 2;
}

.tech-card-one{
  top: 20px;
  left: 10px;
  animation: floatCardOne 5.5s ease-in-out infinite;
}

.tech-card-two{
  bottom: 20px;
  right: 0;
  animation: floatCardTwo 6.5s ease-in-out infinite;
}

.tech-icon{
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(17,74,139,0.12), rgba(24,166,106,0.12));
  font-size: 26px;
  margin-bottom: 18px;
}

.tech-card h3{
  font-size: 22px;
  color: #0b325f;
  margin-bottom: 12px;
  line-height: 1.35;
}

.tech-card p{
  font-size: 15px;
  line-height: 1.8;
  color: #5c6a75;
}

.tech-line-shape{
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px dashed rgba(24,166,106,0.20);
  border-radius: 30px;
  transform: rotate(18deg);
  animation: rotateSoft 12s linear infinite;
}

/* Animations */
@keyframes techFadeUp{
  from{
    opacity: 0;
    transform: translateY(30px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCardOne{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-12px);
  }
}

@keyframes floatCardTwo{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(12px);
  }
}

@keyframes rotateSoft{
  from{
    transform: rotate(18deg);
  }
  to{
    transform: rotate(378deg);
  }
}

/* Responsive */
@media (max-width: 991px){
  .tech-lock-wrap{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .tech-lock-content h2{
    font-size: 33px;
  }

  .tech-lock-cards{
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tech-card{
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    animation: techFadeUp 1s ease;
  }

  .tech-line-shape{
    display: none;
  }
}

@media (max-width: 575px){
  .tech-lock-section{
    padding: 80px 0;
  }

  .tech-lock-content h2{
    font-size: 28px;
  }

  .tech-lock-content p{
    font-size: 16px;
  }

  .tech-card{
    padding: 22px;
  }

  .tech-card h3{
    font-size: 20px;
  }
}
.auto-locksmith{
padding:80px 0;
background:#ffffff;
}

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

.auto-title h2{
font-size:32px;
color:#1a1a1a;
font-weight:700;
margin-bottom:10px;
}

.auto-title p{
color:#666;
font-size:16px;
}

.auto-services{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
max-width:900px;
margin:auto;
}

.auto-item{
background:#f7f9fc;
padding:18px 22px;
border-radius:8px;
font-size:16px;
font-weight:500;
color:#333;
position:relative;
padding-left:45px;
transition:0.3s;
border:1px solid #e8edf3;
}

.auto-item:before{
content:"✓";
position:absolute;
left:18px;
top:50%;
transform:translateY(-50%);
background:#0f766e;
color:#fff;
width:22px;
height:22px;
border-radius:50%;
font-size:14px;
display:flex;
align-items:center;
justify-content:center;
}

.auto-item:hover{
background:#0f766e;
color:#fff;
transform:translateY(-3px);
}

.auto-item:hover:before{
background:#fff;
color:#0f766e;
}

/* Mobile */
@media(max-width:768px){

.auto-services{
grid-template-columns:1fr;
}

.auto-title h2{
font-size:24px;
}

}

.coupon-section{
padding:80px 0;
background:#f7fafc;
}

.coupon-wrapper{
display:flex;
align-items:center;
gap:40px;
background:#ffffff;
border-radius:14px;
padding:40px;
box-shadow:0 10px 35px rgba(0,0,0,0.08);
flex-wrap:wrap;
}

.coupon-image{
flex:1;
text-align:center;
}

.coupon-image img{
max-width:100%;
border-radius:10px;
}

.coupon-content{
flex:1;
}

.coupon-badge{
display:inline-block;
background:#f77f00;
color:#fff;
padding:6px 14px;
border-radius:30px;
font-size:13px;
font-weight:600;
margin-bottom:12px;
}

.coupon-content h2{
font-size:30px;
margin-bottom:15px;
color:#1a1a1a;
}

.coupon-content p{
color:#555;
line-height:1.8;
margin-bottom:20px;
}

.coupon-points{
list-style:none;
padding:0;
margin-bottom:25px;
}

.coupon-points li{
margin-bottom:8px;
position:relative;
padding-left:22px;
}

.coupon-points li:before{
content:"✓";
position:absolute;
left:0;
color:#0ca678;
font-weight:bold;
}

.coupon-btn{
display:inline-block;
background:#0ca678;
color:#fff;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.coupon-btn:hover{
background:#0b8a5c;
}

/* responsive */

@media(max-width:768px){

.coupon-wrapper{
flex-direction:column;
text-align:center;
}

.coupon-content h2{
font-size:24px;
}

}

.creative-security{
padding:90px 0;
background:var(--soft-bg);
}

.security-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:50px;
align-items:center;
}

.security-text h2{
font-size:34px;
margin-bottom:20px;
color:var(--dark-blue);
}

.security-text p{
color:var(--text-dark);
line-height:1.9;
margin-bottom:18px;
}

.security-text h3{
margin-top:30px;
margin-bottom:15px;
color:var(--primary-blue);
font-size:22px;
}

.security-list{
list-style:none;
padding:0;
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-bottom:25px;
}

.security-list li{
background:#fff;
padding:12px 15px;
border-radius:6px;
box-shadow:var(--shadow);
font-size:15px;
position:relative;
padding-left:30px;
}

.security-list li::before{
content:"✓";
position:absolute;
left:10px;
color:var(--fresh-green);
font-weight:bold;
}

.security-bottom{
font-weight:500;
}

.security-card{
display:flex;
justify-content:center;
}

.security-highlight{
background:linear-gradient(135deg,var(--primary-blue),var(--fresh-green));
padding:40px;
border-radius:12px;
color:#fff;
text-align:center;
box-shadow:var(--shadow);
}

.security-highlight h4{
font-size:22px;
margin-bottom:10px;color:#ffffff
}

.security-highlight p{
font-size:15px;
margin-bottom:20px;
}

.security-btn{
display:inline-block;
background:#fff;
color:var(--primary-blue);
padding:12px 25px;
border-radius:6px;
text-decoration:none;
font-weight:600;
}

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

/* responsive */

@media(max-width:992px){

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

.security-list{
grid-template-columns:1fr;
}

.security-text h2{
font-size:26px;
}

}
.service-areas-section{
  padding: 90px 0;
  background: linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
}

.service-areas-box{
  background: linear-gradient(135deg, #114a8b, #0b325f);
  border-radius: 24px;
  padding: 50px 35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.service-areas-box::before,
.service-areas-box::after{
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.service-areas-box::before{
  width: 220px;
  height: 220px;
  top: -70px;
  right: -70px;
}

.service-areas-box::after{
  width: 160px;
  height: 160px;
  bottom: -50px;
  left: -50px;
}

.service-areas-heading{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 35px;
}

.service-tag{
  display: inline-block;
  background: #22c983;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.service-areas-heading h2{
  color: #ffffff;
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.service-areas-heading p{
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}

.zip-grid{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 35px;
}

.zip-grid span{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.3s ease;
}

.zip-grid span:hover{
  background: #22c983;
  transform: translateY(-3px);
}

.service-areas-cta{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 40px;
}

.service-areas-cta p{
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-area-btn{
  display: inline-block;
  background: #22c983;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.service-area-btn:hover{
  background: #18a66a;
  color: #ffffff;
}

@media (max-width: 991px){
  .zip-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .service-areas-heading h2{
    font-size: 30px;
  }
}

@media (max-width: 767px){
  .service-areas-section{
    padding: 70px 0;
  }

  .service-areas-box{
    padding: 35px 20px;
    border-radius: 18px;
  }

  .service-areas-heading h2{
    font-size: 24px;
  }

  .service-areas-heading p,
  .service-areas-cta p{
    font-size: 15px;
  }

  .zip-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .zip-grid span{
    min-height: 46px;
    font-size: 14px;
  }
}

.gallery-section{
padding:90px 0;
background:#f4fbf8;
}

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

.gallery-title h2{
font-size:34px;
color:#114a8b;
margin-bottom:10px;
}

.gallery-title p{
color:#1d2a35;
}

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

.gallery-item{
overflow:hidden;
border-radius:12px;
position:relative;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.gallery-item img{
width:100%;
height:260px;
object-fit:cover;
transition:transform .4s ease;
}

.gallery-item:hover img{
transform:scale(1.08);
}

/* overlay animation */

.gallery-item::after{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to top,
rgba(11,50,95,0.6),
transparent
);
opacity:0;
transition:opacity .3s;
}

.gallery-item:hover::after{
opacity:1;
}

/* responsive */

@media(max-width:992px){

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

}

@media(max-width:600px){

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

.gallery-item img{
height:220px;
}

.gallery-title h2{
font-size:26px;
}

}

.footer-section{
background:#0b325f;
color:#ffffff;
padding:70px 0 20px;
}

.footer-title{
color:#22c983;
margin-bottom:15px;
}

.footer-section p{
font-size:15px;
line-height:1.7;
}

.footer-links,
.footer-cities{
list-style:none;
padding:0;
}

.footer-links li{
margin-bottom:8px;
}

.footer-links a{
color:#ffffff;
text-decoration:none;
transition:0.3s;
}

.footer-links a:hover{
color:#22c983;
}

.footer-cities{
columns:2;
font-size:14px;
}

.footer-cities li{
margin-bottom:6px;
}

.footer-section a{
color:#ffffff;
text-decoration:none;
}

.footer-section a:hover{
color:#22c983;
}

.footer-line{
border-color:rgba(255,255,255,0.2);
margin:30px 0;
}

.footer-bottom{
font-size:14px;
}

.locksmith-steps-section{
  padding: 90px 0;
  background: linear-gradient(180deg, #f4fbf8 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.locksmith-steps-section::before{
  content: "";
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(17,74,139,0.12), transparent);
  z-index: 0;
}

.section-heading{
  max-width: 760px;
  margin: 0 auto 55px;
}

.mini-title{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--fresh-green);
  background: rgba(24,166,106,0.10);
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-heading h2{
  font-size: 38px;
  line-height: 1.3;
  color: var(--dark-blue);
  margin-bottom: 14px;
}

.section-heading p{
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
  margin: 0;
}

.steps-wrapper{
  position: relative;
  z-index: 2;
}

.step-box{
  background: #ffffff;
  border-radius: 22px;
  padding: 32px 24px 26px;
  position: relative;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: 0.35s ease;
  border: 1px solid rgba(17,74,139,0.08);
}

.step-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.step-number{
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: rgba(17,74,139,0.08);
}

.step-icon{
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue), var(--fresh-green));
  color: #fff;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px rgba(17,74,139,0.18);
}

.step-box h3{
  font-size: 21px;
  color: var(--dark-blue);
  margin-bottom: 14px;
}

.step-box p{
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

@media (max-width: 991.98px){
  .locksmith-steps-section::before{
    display: none;
  }

  .section-heading h2{
    font-size: 31px;
  }
}

@media (max-width: 767.98px){
  .locksmith-steps-section{
    padding: 70px 0;
  }

  .section-heading{
    margin-bottom: 35px;
  }

  .section-heading h2{
    font-size: 26px;
  }

  .section-heading p{
    font-size: 15px;
  }

  .step-box{
    padding: 28px 20px 22px;
    border-radius: 18px;
  }

  .step-number{
    font-size: 40px;
  }

  .step-box h3{
    font-size: 19px;
  }
}
   form.CUS input.subject { display: none; }
.d-none{display: none !important;}

.btn-submit{
background: linear-gradient(135deg,#114a8b,#18a66a);
color:#ffffff;
border:none;
padding:14px 28px;
font-size:16px;
font-weight:600;
border-radius:8px;
cursor:pointer;
transition:all .3s ease;
display:inline-block;
}

.btn-submit:hover{
background: linear-gradient(135deg,#0b325f,#22c983);
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.btn-submit:active{
transform:scale(.98);
}

.btn-submit:focus{
outline:none;
}
.faq-section{
  padding:80px 0;
  background:#f8fbff;
}

.faq-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 40px;
}

.faq-subtitle{
  display:inline-block;
  color:#0CA678;
  font-weight:700;
  font-size:14px;
  letter-spacing:0.5px;
  text-transform:uppercase;
  margin-bottom:10px;
}

.faq-heading h2{
  font-size:38px;
  color:#1E3A5F;
  margin-bottom:15px;
}

.faq-heading p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin:0;
}

.faq-wrap{
  max-width:900px;
  margin:0 auto;
}

.faq-item{
  background:#ffffff;
  border:1px solid #e7eef5;
  border-radius:14px;
  margin-bottom:16px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,0.04);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  outline:none;
  padding:22px 24px;
  text-align:left;
  font-size:18px;
  font-weight:700;
  color:#1E3A5F;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.faq-icon{
  font-size:24px;
  color:#F77F00;
  margin-left:15px;
  flex-shrink:0;
}

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

.faq-answer p{
  padding:0 24px 22px;
  margin:0;
  font-size:15px;
  line-height:1.8;
  color:#555;
}

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

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

@media(max-width:767px){
  .faq-section{
    padding:60px 0;
  }

  .faq-heading h2{
    font-size:28px;
  }

  .faq-question{
    font-size:16px;
    padding:18px 18px;
  }

  .faq-answer p{
    padding:0 18px 18px;
    font-size:14px;
  }
}

.reviews-section{
padding:80px 0;
background:#f8fbff;
}

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

.reviews-title span{
color:#0CA678;
font-weight:700;
font-size:14px;
letter-spacing:1px;
text-transform:uppercase;
}

.reviews-title h2{
font-size:36px;
color:#1E3A5F;
margin-top:10px;
}

.reviews-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.review-card{
background:#ffffff;
border-radius:18px;
padding:40px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
border:1px solid #e8eef5;
transition:0.3s;
}

.review-card:hover{
transform:translateY(-5px);
}

.review-stars{
color:#F77F00;
font-size:22px;
margin-bottom:18px;
}

.review-card p{
font-size:16px;
line-height:1.9;
color:#444;
margin-bottom:25px;
}

.review-author strong{
display:block;
font-size:18px;
color:#1E3A5F;
}

.review-author span{
font-size:14px;
color:#0CA678;
font-weight:600;
}


/* responsive */

@media(max-width:900px){

.reviews-wrapper{
grid-template-columns:1fr;
}

.review-card{
padding:30px;
}

.reviews-title h2{
font-size:28px;
}

}



