:root {
  --primary-color: #2E5090;
  --secondary-color: #1A365D;
  --accent-color: #F59E0B;
  --success-color: #10B981;
  --danger-color: #EF4444;
  --dark-color: #1F2937;
  --light-color: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: #fff
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none
}

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

.alert-bar {
  background: var(--danger-color);
  color: #fff;
  padding: 8px 0;
  font-size: 14px
}

.alert-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  text-align: center
}

.alert-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600
}

.alert-phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s
}

.alert-phone:hover {
  text-decoration: underline;
  color: #fff;
  opacity: 0.9
}

.main-header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm)
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark-color);
  transition: opacity 0.2s
}

.logo:hover {
  opacity: 0.8
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.logo-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color) !important
}

.logo-tag {
  font-size: 12px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0
}

.nav-list a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s
}

.nav-list a:hover {
  color: var(--primary-color)
}

.blog-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: var(--gray-100);
  border-radius: 8px;
  color: var(--gray-700);
  transition: all 0.2s
}

.blog-link:hover {
  background: var(--gray-200);
  color: var(--primary-color)
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s
}

.hero {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center
}

.hero-main {
  color: #fff
}

.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px
}

.title-highlight {
  display: block;
  color: var(--accent-color)
}

.hero-desc {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 30px
}

.hero-features {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px
}

.feature-item img {
  filter: brightness(0) invert(1)
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg)
}

.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: #e59500;
  color: var(--dark-color)
}

.btn-main img {
  filter: brightness(0)
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5)
}

.trust-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-xl)
}

.trust-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px
}

.trust-header h3 {
  font-size: 20px;
  color: var(--dark-color)
}

.trust-list {
  list-style: none;
  space-y: 12px
}

.trust-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-600);
  position: relative;
  padding-left: 20px
}

.trust-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700
}

.trust-list li:last-child {
  border-bottom: none
}

.trust-rating {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  text-align: center
}

.stars {
  color: var(--accent-color);
  font-size: 20px;
  display: block;
  margin-bottom: 5px
}

.section {
  padding: 80px 0
}

.section-header {
  text-align: center;
  margin-bottom: 60px
}

.section-label {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px
}

.section-header h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 10px
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600)
}

.door-opening-detail {
  background: linear-gradient(135deg, #ffffff 0%, #e8f1ff 50%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.door-opening-detail::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(46, 80, 144, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: rotate-gradient 20s linear infinite
}

.door-opening-detail::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none
}

@keyframes rotate-gradient {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center
}

.service-detail-content {
  position: relative;
  z-index: 1
}

.service-detail-content h2 {
  font-size: 42px;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700
}

.lead-text {
  font-size: 20px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 40px
}

.service-features {
  display: grid;
  gap: 25px;
  margin: 40px 0;
  padding: 35px;
  background: var(--gray-100);
  border-radius: 16px;
  border-left: 4px solid var(--primary-color)
}

.feature-item-detail {
  display: flex;
  gap: 20px;
  align-items: start
}

.feature-item-detail img {
  flex-shrink: 0;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08)
}

.feature-item-detail h4 {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-weight: 600
}

.feature-item-detail p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6
}

.service-detail-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px
}

.service-cta {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 16px;
  text-align: center
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--primary-color);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2)
}

.btn-primary img {
  filter: none
}

.urgency-text {
  color: #fff !important;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 500;
  opacity: 0.95
}

.service-detail-image {
  position: relative
}

.service-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15)
}

.image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center
}

.badge-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px
}

.badge-text {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500
}

.lock-replacement-detail {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.lock-replacement-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.2
}

.lock-replacement-detail::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 80, 144, 0.06) 0%, transparent 70%);
  pointer-events: none
}

.lock-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center
}

.lock-detail-image {
  position: relative
}

.lock-detail-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12)
}

.security-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1)
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 8px
}

.security-badge img {
  width: 30px;
  height: 30px;
  flex-shrink: 0
}

.security-badge span {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px
}

.lock-detail-content h2 {
  font-size: 40px;
  color: var(--dark-color);
  margin-bottom: 25px;
  line-height: 1.2
}

.intro-text {
  font-size: 19px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 35px
}

.lock-types {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  margin: 35px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08)
}

.lock-types h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 25px
}

.lock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px
}

.lock-item {
  padding: 20px;
  background: var(--gray-100);
  border-radius: 12px;
  border-left: 3px solid var(--accent-color);
  transition: all 0.3s
}

.lock-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.lock-item strong {
  display: block;
  color: var(--dark-color);
  margin-bottom: 5px;
  font-size: 16px
}

.lock-item p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5
}

.lock-detail-content p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px
}

.lock-cta {
  margin-top: 45px;
  padding: 35px;
  background: linear-gradient(135deg, #fff 0%, var(--gray-100) 100%);
  border-radius: 16px;
  border: 2px solid var(--primary-color);
  text-align: center
}

.btn-lock {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(46, 80, 144, 0.3)
}

.btn-lock .phone-number {
  display: inline;
  font-weight: 700
}

.btn-lock:hover {
  background: var(--secondary-color);
  box-shadow: 0 8px 25px rgba(26, 54, 93, .3);
  transform: translateY(-2px);
  color: #fff !important;
}



.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px
}

.trust-indicators span {
  color: var(--success-color);
  font-weight: 600;
  font-size: 14px
}

.services {
  background: linear-gradient(180deg, #fff 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.2
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px
}

.service-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}

.service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(46, 80, 144, 0.15);
  border-color: var(--primary-color)
}

.service-box:hover::before {
  transform: scaleX(1)
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(46, 80, 144, 0.2);
  transition: all 0.3s
}

.service-box:hover .service-icon {
  transform: scale(1.1) rotate(5deg)
}

.service-icon img {
  filter: brightness(0) invert(1)
}

.service-box h3 {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px
}

.service-box p {
  color: var(--gray-600);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 15px
}

.service-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #e59500);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s
}

.service-price::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.4s
}

.service-box:hover .service-price {
  transform: scale(1.05)
}

.service-box:hover .service-price::before {
  transform: translate(-50%, -50%) scale(2)
}

.process {
  background: #fff;
  padding: 80px 0
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--gray-300) 0%, var(--gray-300) 25%, transparent 25%);
  background-size: 20px 2px;
  z-index: 0
}

.step {
  text-align: center;
  position: relative;
  z-index: 1
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  font-weight: 700;
  box-shadow: var(--shadow-md)
}

.step h3 {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 10px
}

.step p {
  color: var(--gray-600);
  font-size: 14px
}

.pricing {
  background: var(--gray-100);
  padding: 80px 0
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px
}

.price-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  transition: all 0.3s
}

.price-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg)
}

.price-header {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  text-align: center
}

.price-card.featured .price-header {
  background: var(--accent-color);
  color: var(--dark-color)
}

.price-header h3 {
  font-size: 24px;
  margin-bottom: 5px
}

.price-time {
  font-size: 14px;
  opacity: 0.9
}

.price-list {
  list-style: none;
  padding: 30px
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200)
}

.price-list li:last-child {
  border-bottom: none
}

.price-list strong {
  color: var(--primary-color);
  font-size: 18px
}

.price-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  color: var(--dark-color) !important;
  font-size: 14px
}

.price-note p {
  color: var(--dark-color) !important;
  font-size: 14px
}

.areas {
  background: #fff
}

.areas-map {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 40px
}

.map-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px
}

.area-group h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 15px
}

.area-group ul {
  list-style: none
}

.area-group li {
  padding: 8px 0;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200)
}

.area-group li:last-child {
  border-bottom: none
}

.reviews {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.reviews-content {
  margin-top: 50px;
  position: relative;
  z-index: 1
}

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

.reviews-text h3 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block
}

.reviews-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px
}

.reviews-text p {
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
  font-size: 17px
}

.reviews-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 50px
}

.review-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  position: relative;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(46, 80, 144, 0.15)
}

.review-card:hover::before {
  opacity: 1
}

.review-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.1;
  font-family: Georgia, serif
}

.review-header {
  margin-bottom: 20px;
  position: relative;
  z-index: 1
}

.review-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 5px
}

.review-service {
  color: #fff;
  font-size: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  font-weight: 600
}

.review-comment {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
  position: relative;
  z-index: 1
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 2px solid var(--gray-100)
}

.review-rating {
  display: flex;
  gap: 3px;
  font-size: 20px
}

.review-rating .star {
  color: var(--accent-color);
  transition: transform 0.2s
}

.review-rating .star.filled {
  animation: star-pulse 0.5s
}

.review-rating .star.empty {
  color: var(--gray-300)
}

.review-date {
  color: var(--gray-500);
  font-size: 13px;
  font-weight: 500
}

@keyframes star-pulse {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes float {

  0%,
  100% {
    transform: rotate(0deg) scale(1)
  }

  50% {
    transform: rotate(180deg) scale(1.1)
  }
}

.write-review-button-wrp {
  text-align: center;
  margin-top: 60px
}

.write-review-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 10px 30px rgba(46, 80, 144, 0.3);
  position: relative;
  overflow: hidden
}

.write-review-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s
}

.write-review-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46, 80, 144, 0.4)
}

.write-review-button:hover::before {
  width: 300px;
  height: 300px
}

.forms {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3b5998 25%, #4267B2 50%, var(--secondary-color) 75%, #1e3a5f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.forms__wrapper {
  background: #fff;
  border-radius: 12px;
  padding: 60px;
  box-shadow: var(--shadow-lg);
  max-width: 800px;
  margin: 0 auto
}

.forms__box {
  text-align: center
}

.forms__title {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 40px;
  font-weight: 700
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-size: 16px;
  color: var(--gray-700);
  transition: all 0.3s;
  background: #fff
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(46, 80, 144, 0.1)
}

.form-control::placeholder {
  color: var(--gray-400)
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem
}

.mb-0 {
  margin-bottom: 0
}

.mt-3 {
  margin-top: 1rem
}

.px-3 {
  padding-left: 1rem;
  padding-right: 1rem
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem
}

.forms__button {
  background: var(--accent-color);
  color: var(--dark-color);
  border: none;
  border-radius: 50px;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 300px
}

.forms__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--primary-color);
  color: #fff
}

#jq_success {
  margin-top: 20px;
  padding: 20px;
  background: var(--success-color);
  color: #fff;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500
}

.faq {
  background: #fff;
  padding: 80px 0
}

.faq-list {
  max-width: 800px;
  margin: 0 auto
}

.faq-item {
  background: var(--gray-100);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--gray-200)
}

.faq-item summary {
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary-color);
  transition: transform 0.3s
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg)
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--gray-600);
  line-height: 1.6
}

.about {
  background: var(--gray-100);
  padding: 80px 0
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  padding: 0;
}

.about-text h2 {
  font-size: 36px;
  color: var(--dark-color);
  margin-bottom: 20px
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.8
}

.about-features {
  display: grid;
  gap: 20px;
  margin-top: 30px
}

.about-feat {
  display: flex;
  gap: 15px;
  align-items: start
}

.about-feat h4 {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 5px
}

.about-feat p {
  color: var(--gray-600);
  font-size: 14px
}

.about-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: var(--shadow-lg)
}

.contact {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3b5998 25%, #4267B2 50%, var(--secondary-color) 75%, #1e3a5f 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='40'/%3E%3C/g%3E%3C/svg%3E");
  animation: float-pattern 30s linear infinite
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 20px
}

.contact-info p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 40px
}

.contact-cards {
  display: grid;
  gap: 20px
}

.contact-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px)
}

.contact-card img {
  filter: brightness(0) invert(1)
}

.contact-card h4 {
  font-size: 16px;
  margin-bottom: 5px
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600
}

.contact-card a:hover {
  text-decoration: underline
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px)
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 30px
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7)
}

.form-group select {
  color: var(--gray-700)
}

.form-group select option {
  background: var(--primary-color);
  color: #fff
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: var(--dark-color);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: #e59500
}

.footer {
  background: var(--dark-color);
  color: #fff;
  padding: 60px 0 30px
}

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

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--accent-color)
}

.footer-column ul {
  list-style: none
}

.footer-column li {
  margin-bottom: 10px
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6)
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s
}

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

.fixed-call-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--accent-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(245, 158, 11, 0.4);
  z-index: 9999;
  transition: all 0.3s;
  animation: pulse-call 2s infinite
}

.fixed-call-button:hover {
  transform: scale(1.1);
  background: var(--primary-color);
  color: #fff
}

.fixed-call-button svg {
  width: 28px;
  height: 28px
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 5px 25px rgba(245, 158, 11, 0.4)
  }

  50% {
    box-shadow: 0 5px 35px rgba(245, 158, 11, 0.6)
  }

  100% {
    box-shadow: 0 5px 25px rgba(245, 158, 11, 0.4)
  }
}

@media(max-width:1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .trust-card {
    margin-top: 40px
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .service-detail-image {
    order: -1
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:768px) {
  .nav-list {
    display: flex;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 10000;
    align-items: flex-start;
    gap: 20px;
    overflow-y: auto
  }

  .nav-list.active {
    left: 0;
    display: flex
  }

  .nav-list li {
    width: 100%
  }

  .nav-list a {
    display: block;
    padding: 15px 10px;
    font-size: 18px;
    color: var(--dark-color);
    border-bottom: 1px solid var(--gray-200)
  }

  .mobile-toggle {
    display: flex
  }

  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
  }

  .mobile-toggle.active span:nth-child(2) {
    opacity: 0
  }

  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px)
  }

  body.menu-open {
    overflow: hidden
  }

  .menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    transition: opacity 0.3s;
    cursor: pointer
  }

  .menu-overlay.active {
    display: block
  }

  .mobile-toggle {
    z-index: 10001;
    position: relative
  }

  .nav-list a:hover {
    color: var(--primary-color);
    background: var(--gray-100)
  }

  .hero-title {
    font-size: 32px
  }

  .hero-desc {
    font-size: 16px
  }

  .hero-features {
    flex-direction: column;
    gap: 15px
  }

  .hero-cta {
    flex-direction: column
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    justify-content: center
  }

  .section {
    padding: 60px 0
  }

  .section-header h2 {
    font-size: 28px
  }

  .services-list {
    grid-template-columns: 1fr;
    gap: 20px
  }


  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .process-steps::before {
    display: none
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .price-card.featured {
    transform: scale(1)
  }

  .map-grid {
    grid-template-columns: 1fr
  }

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

  .faq-item summary {
    font-size: 16px
  }

  .about-text h2 {
    font-size: 28px
  }

  .contact-info h2 {
    font-size: 28px
  }

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

  .fixed-call-button {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px
  }

  .fixed-call-button svg {
    width: 24px;
    height: 24px
  }

  .forms__wrapper {
    padding: 40px 0;
  }

  .forms__title {
    font-size: 28px
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 15px
  }

  .hero-title {
    font-size: 28px
  }

  .hero-label {
    font-size: 10px
  }

  .section-header h2 {
    font-size: 24px
  }

  .service-box {
    padding: 20px
  }

  .step h3 {
    font-size: 18px
  }

  .faq-item summary {
    padding: 15px;
    padding-right: 40px
  }

  .about-feat {
    flex-direction: column;
    text-align: center
  }

  .contact-form {
    padding: 20px
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px
  }

  .btn-submit {
    padding: 12px
  }
}

.car-opening-detail {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0e7ff 100%);
  padding: 100px 0;
  position: relative
}

.car-opening-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  opacity: 0.3
}

.car-opening-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px
}

.car-hero-content .service-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px
}

.car-hero-content h2 {
  font-size: 42px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700
}

.car-hero-content .lead {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 40px
}

.car-stats {
  display: flex;
  gap: 40px
}

.stat-item {
  text-align: center
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px
}

.stat-label {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 1px
}

.car-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s
}

.car-hero-image img:hover {
  transform: perspective(1000px) rotateY(0)
}

.car-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px
}

.car-service-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}

.car-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: translateX(-100%);
  transition: transform 0.3s
}

.car-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-color)
}

.car-service-card:hover::before {
  transform: translateX(0)
}

.car-service-card img {
  margin-bottom: 20px
}

.car-service-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px
}

.car-service-card p {
  color: #64748b;
  line-height: 1.6
}

.car-info-section {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08)
}

.car-info-content h3 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 25px
}

.car-info-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px
}

.car-info-features {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 35px;
  border-radius: 15px
}

.car-info-features h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 20px
}

.feature-list {
  list-style: none;
  padding: 0
}

.feature-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #475569;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05)
}

.feature-list li:last-child {
  border-bottom: none
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 18px
}

.car-pricing-cta {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 60px
}

.car-price-info {
  text-align: center;
  color: #fff
}

.price-label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  opacity: 0.9
}

.price-amount {
  display: block;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px
}

.price-note {
  display: block;
  font-size: 14px;
  opacity: 0.8
}

.car-cta-content h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 15px
}

.car-cta-content p {
  color: #fff;
  opacity: 0.9;
  margin-bottom: 25px
}

.car-cta-content .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: #fff;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(245, 158, 11, 0.3)
}

.car-cta-content .cta-button:hover {
  background: #fff;
  color: var(--accent-color);
  transform: scale(1.05)
}

.car-trust-badges {
  display: flex;
  justify-content: center;
  gap: 60px
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 15px
}

.trust-badge span {
  color: #475569;
  font-weight: 600
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }
}

@media(max-width:768px) {
  .car-opening-hero {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .car-hero-content h2 {
    font-size: 28px
  }

  .car-stats {
    justify-content: space-around
  }

  .stat-number {
    font-size: 28px
  }

  .car-services-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .car-info-section {
    grid-template-columns: 1fr;
    padding: 30px 20px
  }

  .car-pricing-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px
  }

  .car-trust-badges {
    flex-direction: column;
    gap: 20px
  }
}

.safe-opening-detail {
  background: linear-gradient(150deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #e94560 100%);
  padding: 100px 0;
  position: relative;
  color: #fff
}

.safe-opening-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5
}

.safe-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1
}

.safe-header {
  margin-bottom: 40px
}

.expert-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px
}

.safe-header h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #fff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.safe-header .lead {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6
}

.safe-features-grid {
  display: grid;
  gap: 25px
}

.safe-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s
}

.safe-feature:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(10px)
}

.safe-feature img {
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 10px
}

.safe-feature h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff
}

.safe-feature p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7)
}

.safe-hero-visual {
  position: relative
}

.safe-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5)
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3)
}

.experience-badge .years {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color)
}

.experience-badge .text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600)
}

.safe-types-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 1
}

.safe-types-section h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff
}

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

.safe-type-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  color: var(--dark-color)
}

.safe-type-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse, var(--accent-color) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.5s
}

.safe-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.safe-type-card:hover::before {
  top: -50%;
  opacity: 0.1
}

.safe-type-card img {
  margin-bottom: 20px;
  filter: none
}

.safe-type-card h4 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px
}

.safe-type-card p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6
}

.safe-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 16px
}

.safe-process {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.05);
  padding: 60px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1)
}


.process-content h3 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #fff
}

.process-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px
}

.process-steps-visual {
  display: grid;
  gap: 25px
}

.process-step {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
  flex-direction: column;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px)
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff
}

.process-step p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7)
}

.safe-cta-section {
  text-align: center;
  position: relative;
  z-index: 1
}

.safe-cta-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
  color: var(--dark-color);
  padding: 30px;
  border-radius: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4)
}

.safe-cta-content h3 {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px
}

.safe-cta-content p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 30px
}

.safe-benefits {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.safe-benefits span {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gray-100);
  border-radius: 20px;
  color: var(--success-color);
  font-weight: 600;
  font-size: 14px
}

.safe-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 40px rgba(46, 80, 144, 0.4)
}

.safe-cta-button img {
  filter: brightness(0) invert(1);
  width: 24px;
  height: 24px;
  flex-shrink: 0
}

.safe-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(46, 80, 144, 0.5);
  color: #fff;
}

@media(max-width:768px) {
  .safe-hero {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .safe-header h2 {
    font-size: 32px
  }

  .safe-types-grid {
    grid-template-columns: 1fr
  }

  .safe-process {
    grid-template-columns: 1fr;
    padding: 40px 20px
  }

  .safe-benefits {
    flex-direction: column;
    align-items: center
  }
}

.security-locks-detail {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 25%, #dbeafe 50%, #bfdbfe 75%, #93c5fd 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.security-locks-detail::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
  opacity: 0.1;
  animation: float-bubble 15s infinite
}

.security-locks-detail::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.08;
  animation: float-bubble 20s infinite reverse
}

@keyframes float-bubble {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  25% {
    transform: translate(30px, -30px) scale(1.1)
  }

  50% {
    transform: translate(-20px, 20px) scale(0.9)
  }

  75% {
    transform: translate(-30px, -10px) scale(1.05)
  }
}

.security-intro {
  text-align: center;
  margin-bottom: 80px
}

.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3)
}

.security-header h2 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700
}

.security-lead {
  font-size: 20px;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6
}

.security-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px
}

.showcase-image {
  position: relative
}

.showcase-image>img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15)
}

.certification-badges {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

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

.certification-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0
}

.certification-item span {
  font-weight: 600;
  color: var(--dark-color);
  font-size: 14px;
  white-space: nowrap
}

.showcase-content h3 {
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 30px
}

.security-benefits {
  display: grid;
  gap: 25px
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: start
}

.benefit-icon {
  font-size: 32px;
  line-height: 1
}

.benefit-item h4 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 5px
}

.benefit-item p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5
}

.lock-brands {
  margin-bottom: 80px
}

.lock-brands h3 {
  font-size: 36px;
  text-align: center;
  color: var(--dark-color);
  margin-bottom: 50px
}

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

.brand-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden
}

.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-color)
}

.brand-card:hover::before {
  opacity: 1
}

.brand-card h4 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700
}

.brand-card p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 14px
}

.brand-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px
}

.installation-process {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  margin-bottom: 80px;
  background: #fff;
  padding: 60px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1)
}


.process-info h3 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 25px
}

.process-info p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px
}

.installation-features {
  background: linear-gradient(135deg, #f8fafc, #e0e7ff);
  padding: 40px;
  border-radius: 20px
}

.installation-features h4 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 25px
}

.installation-list {
  list-style: none;
  padding: 0
}

.installation-list li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  color: var(--gray-700);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px
}

.installation-list li:last-child {
  border-bottom: none
}

.installation-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 20px
}

.security-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.security-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite
}

.cta-content h3 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap
}

.cta-features span {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  opacity: 0.95
}

.security-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: var(--primary-color);
  padding: 20px 50px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2)
}

.security-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: var(--accent-color);
  color: #fff
}

@keyframes rotate {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@media(max-width:768px) {
  .security-showcase {
    grid-template-columns: 1fr;
    gap: 50px
  }

  .showcase-image {
    order: 1
  }

  .brands-grid {
    grid-template-columns: 1fr 1fr
  }

  .installation-process {
    grid-template-columns: 1fr;
    padding: 40px 20px
  }

  .security-cta {
    padding: 50px 20px
  }

  .cta-features {
    flex-direction: column;
    gap: 15px
  }
}

@media(max-width:480px) {
  .brands-grid {
    grid-template-columns: 1fr
  }

  .security-header h2 {
    font-size: 32px
  }
}

.emergency-help-detail {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3b5998 25%, #4267B2 50%, var(--secondary-color) 75%, #1e3a5f 100%);
  padding: 100px 0;
  position: relative;
  color: #fff;
  overflow: hidden
}

@keyframes float-pattern {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(100px)
  }
}

.emergency-hero {
  text-align: center;
  margin-bottom: 80px
}

.emergency-alert {
  margin-bottom: 50px
}

.emergency-alert img {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 20px;
  display: inline-block
}

.emergency-alert h2 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2)
}

.emergency-alert p {
  font-size: 22px;
  opacity: 0.95
}

.emergency-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25)
}

.stat-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 10px
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px
}

.stat-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9
}

.emergency-services {
  margin-bottom: 80px
}

.emergency-services h3 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
  color: #fff
}

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

.emergency-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-color);
  border-radius: 20px;
  padding: 35px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden
}

.emergency-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.emergency-card:hover::before {
  top: -50%
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px
}

.card-header img {
  width: 40px;
  height: 40px;
  flex-shrink: 0
}

.card-header h4 {
  font-size: 22px;
  color: var(--dark-color);
  margin: 0
}

.emergency-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 15px
}

.response-time {
  display: inline-block;
  background: linear-gradient(135deg, var(--success-color), #10b981);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600
}

.emergency-process {
  margin-bottom: 80px
}

.emergency-process h3 {
  font-size: 38px;
  text-align: center;
  margin-bottom: 60px;
  color: #fff
}


.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: rgba(255, 255, 255, 0.3)
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  position: relative
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right
}

.timeline-number {
  width: 60px;
  height: 60px;
  background: #fff;
  color: var(--danger-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1
}

.timeline-content {
  width: 45%;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2)
}

.timeline-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff
}

.timeline-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6
}

.emergency-info {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0.08);
  padding: 60px;
  border-radius: 25px;
  backdrop-filter: blur(10px)
}

.info-content h3 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #fff
}

.info-content p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  margin-bottom: 20px
}

.info-highlights {
  display: grid;
  gap: 30px
}

.highlight-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s
}

.highlight-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px)
}

.highlight-box img {
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 10px
}

.highlight-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff
}

.highlight-box p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85)
}

.emergency-final-cta {
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-urgent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
  color: var(--dark-color);
  padding: 60px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 3px var(--primary-color)
}

.cta-urgent h2 {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 900;
  animation: pulse-text 2s infinite
}

@keyframes pulse-text {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.05)
  }
}

.cta-urgent p {
  font-size: 22px;
  color: var(--gray-700);
  margin-bottom: 35px
}

.emergency-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 25px 60px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 15px 40px rgba(46, 80, 144, 0.4);
  position: relative
}

.emergency-button img {
  filter: brightness(0) invert(1);
  width: 30px;
  height: 30px;
  flex-shrink: 0
}

.emergency-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(46, 80, 144, 0.5);
  color: #fff
}

.pulse-dot {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: pulse-ring 1.5s infinite
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.5
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0);
    opacity: 1
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.trust-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap
}

.trust-points span {
  color: var(--success-color);
  font-weight: 600;
  font-size: 16px
}

@media(max-width:768px) {
  .emergency-stats {
    grid-template-columns: repeat(2, 1fr)
  }

  .emergency-grid {
    grid-template-columns: 1fr
  }

  .process-timeline::before {
    left: 30px
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row
  }

  .timeline-number {
    left: 30px
  }

  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 70px;
    text-align: left !important
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left !important;
    margin-left: 70px
  }

  .emergency-info {
    grid-template-columns: 1fr;
    padding: 40px 20px
  }

  .cta-urgent {
    padding: 40px 20px
  }

  .cta-urgent h2 {
    font-size: 32px
  }

  .emergency-button {
    font-size: 20px;
    padding: 20px 40px
  }
}

@media(max-width:480px) {
  .emergency-stats {
    grid-template-columns: 1fr
  }

  .trust-points {
    flex-direction: column;
    gap: 10px
  }
}

@media(max-width:375px) {
  .hero-title {
    font-size: 24px
  }

  .hero-desc {
    font-size: 14px
  }

  .section-header h2 {
    font-size: 22px
  }

  .section-header p {
    font-size: 14px
  }
}

/* Additional responsive styles for mobile devices */
@media(max-width:768px) {

  /* Typography - Global h2 size limit */
  h2 {
    font-size: 32px !important;
    line-height: 1.2
  }

  h3 {
    font-size: 24px !important;
    line-height: 1.3
  }

  /* Remove left padding from all ul on mobile */
  ul {
    padding-left: 0 !important;
  }

  /* Section padding adjustments */
  section {
    padding: 50px 0 !important
  }

  .hero {
    padding: 80px 0 50px !important
  }

  .door-opening-detail,
  .services,
  .lock-replacement-detail,
  .pricing,
  .car-opening-detail,
  .reviews,
  .safe-opening-detail,
  .faq,
  .security-locks-detail,
  .about,
  .emergency-help-detail,
  .process {
    padding: 50px 0 !important
  }

  /* Alert bar */
  .alert-bar {
    padding: 8px 10px
  }

  .alert-content {
    font-size: 12px;
    gap: 8px
  }

  .alert-badge {
    padding: 2px 6px;
    font-size: 10px
  }

  .alert-phone {
    padding: 4px 8px;
    font-size: 12px
  }

  /* Hero section */
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2
  }

  .hero-desc {
    font-size: 16px
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: 15px
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    justify-content: center
  }

  .trust-card {
    margin-top: 20px
  }

  /* Service detail sections */
  .service-detail-grid {
    grid-template-columns: 1fr
  }

  .service-detail-image {
    order: -1;
    margin-bottom: 30px
  }

  .lock-detail-wrapper {
    grid-template-columns: 1fr
  }

  .lock-detail-image {
    margin-bottom: 30px
  }

  /* Car opening section */
  .car-opening-hero {
    grid-template-columns: 1fr
  }

  .car-hero-image {
    margin-top: 30px
  }

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

  .car-services-grid {
    grid-template-columns: 1fr
  }

  .car-info-section {
    grid-template-columns: 1fr
  }

  .car-pricing-cta {
    flex-direction: column;
    gap: 30px
  }

  /* Safe opening section */
  .safe-hero {
    grid-template-columns: 1fr
  }

  .safe-hero-visual {
    margin-top: 30px
  }

  .safe-features-grid {
    grid-template-columns: 1fr
  }

  .safe-types-grid {
    grid-template-columns: 1fr
  }

  .safe-process {
    grid-template-columns: 1fr
  }

  /* Security section */
  .security-showcase {
    grid-template-columns: 1fr;
    margin-bottom: 50px !important
  }

  .showcase-image {
    margin-bottom: 30px
  }

  .brands-grid {
    grid-template-columns: 1fr
  }

  .installation-process {
    grid-template-columns: 1fr
  }

  /* Emergency section */
  .emergency-hero {
    padding: 30px 20px
  }

  .emergency-alert h2 {
    font-size: 28px
  }

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

  .emergency-grid {
    grid-template-columns: 1fr
  }

  .emergency-process h3 {
    font-size: 24px
  }

  .emergency-info {
    grid-template-columns: 1fr
  }

  .info-highlights {
    grid-template-columns: 1fr
  }

  /* About section */
  .about-content {
    grid-template-columns: 1fr
  }

  .about-image {
    margin-top: 30px
  }
  
  .about-image img {
    height: auto;
    max-width: 100%;
    object-fit: cover
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 25px
  }

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

  .about-feat img {
    width: 40px;
    height: 40px
  }

  .about-feat h4 {
    font-size: 16px;
    margin-bottom: 4px
  }

  .about-feat p {
    font-size: 13px;
    line-height: 1.4
  }

  /* Pricing cards */
  .price-card {
    padding: 25px
  }

  .price-header h3 {
    font-size: 20px
  }

  /* Reviews */
  .reviews-wrapper {
    grid-template-columns: 1fr
  }

  /* FAQ */
  .faq-item summary {
    font-size: 16px;
    padding: 15px
  }

  .faq-item p {
    font-size: 14px;
    padding: 15px
  }

  /* Buttons and CTAs */
  .safe-cta-button,
  .security-button {
    padding: 16px 30px;
    font-size: 18px
  }

  /* Security button - only icon and phone on mobile */
  .security-button {
    padding: 16px 25px;
    gap: 8px;
  }

  .security-button span:first-of-type {
    display: none;
  }

  .security-button .phone-number {
    display: inline;
  }

  /* Lock button phone number on new line */
  .btn-lock {
    flex-direction: column;
    text-align: center;
    padding: 15px 30px;
    width: 100%;
  }

  .btn-lock .phone-number {
    display: block;
    margin-top: 5px
  }

  .certification-badges {
    position: static;
    margin-top: 20px;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    width: 100%
  }

  .certification-item {
    width: 100%;
    justify-content: center
  }

  .certification-item img {
    width: 30px;
    height: 30px
  }

  .certification-item span {
    font-size: 13px
  }

  .security-badges {
    position: static;
    transform: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
    margin-top: 15px;
    width: 100%
  }

  .security-badge {
    font-size: 12px;
    gap: 5px
  }

  .security-badge img {
    width: 20px;
    height: 20px
  }

  .security-badge span {
    font-size: 12px
  }

  /* Lock types */
  .lock-grid {
    grid-template-columns: 1fr
  }

  /* Images */
  .image-badge {
    bottom: 10px;
    right: 10px;
    padding: 10px 15px
  }

  .experience-badge {
    padding: 15px 20px
  }
}

/* Styles for very small mobile devices */
@media(max-width:480px) {
  h2 {
    font-size: 28px !important
  }

  h3 {
    font-size: 25px !important
  }

  .container {
    padding: 0 15px
  }

  .hero-title {
    font-size: 28px
  }

  .section-header h2 {
    font-size: 26px
  }

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

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

  .safe-cta-button,
  .security-button,
  .emergency-button {
    font-size: 16px;
    padding: 14px 25px
  }

  .emergency-button {
    padding: 14px 40px 14px 25px
  }

  .security-badges {
    flex-direction: row;
    justify-content: center;
    padding: 8px 12px
  }

  .security-badge {
    flex-direction: column;
    text-align: center;
    gap: 3px
  }

  .security-badge span {
    font-size: 11px
  }

  .certification-badges {
    flex-direction: row;
    padding: 10px 15px
  }

  .certification-item {
    flex-direction: column;
    gap: 5px;
    text-align: center
  }

  .certification-item img {
    width: 25px;
    height: 25px
  }

  .certification-item span {
    font-size: 11px
  }
}

/* Styles for smallest devices (375px and below) */
@media(max-width:375px) {

  /* Typography adjustments */
  body {
    font-size: 14px
  }

  h2 {
    font-size: 24px !important
  }

  .hero-title {
    font-size: 24px
  }

  .hero-desc {
    font-size: 14px
  }

  .section-header h2 {
    font-size: 22px
  }

  h3 {
    font-size: 18px
  }

  h4 {
    font-size: 16px
  }

  /* Padding adjustments */
  section {
    padding: 40px 0 !important
  }

  .hero {
    padding: 60px 0 40px !important
  }

  /* Button adjustments */
  .btn-main,
  .btn-ghost,
  .btn-primary,
  .btn-lock {
    padding: 12px 20px;
    font-size: 14px
  }

  .fixed-call-button {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px
  }

  .fixed-call-button svg {
    width: 22px;
    height: 22px
  }

  /* Card adjustments */
  .service-box {
    padding: 20px
  }

  .price-card {
    padding: 20px
  }

  .review-card {
    padding: 15px
  }

  .emergency-card {
    padding: 20px
  }

  .trust-card {
    padding: 20px
  }

  /* Form adjustments */
  .form-control {
    font-size: 14px;
    padding: 10px
  }

  /* Small text adjustments */
  .feature-item {
    font-size: 13px
  }

  .trust-list li {
    font-size: 13px
  }

  .price-list li {
    font-size: 13px
  }

  /* Safe and car sections */
  .stat-card {
    padding: 15px
  }

  .stat-value {
    font-size: 20px
  }

  .stat-label {
    font-size: 11px
  }

  /* Emergency button */
  .emergency-button {
    padding: 12px 40px 12px 20px;
    font-size: 14px
  }

  .emergency-button img {
    width: 20px;
    height: 20px
  }
}

/* Blog Page Styles */
.blog-page {
  padding: 80px 0;
  background: var(--light-color)
}

.blog-content {
  max-width: 1200px;
  margin: 0 auto
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin: 50px 0
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column
}

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

.blog-card-header {
  margin-bottom: 15px
}

.blog-date {
  color: var(--gray-500);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.blog-card-title {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 1.3
}

.blog-card-title a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.2s
}

.blog-card-title a:hover {
  color: var(--primary-color)
}

.blog-card-excerpt {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1
}

.blog-card-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s
}

.blog-card-link:hover {
  color: var(--secondary-color);
  transform: translateX(5px)
}

/* Blog Pagination */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 60px 0 40px
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  background: #fff;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-700);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s
}

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

.pagination-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  cursor: default
}

.pagination-ellipsis {
  color: var(--gray-400);
  padding: 0 5px
}

/* Related Articles */
.related-articles {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--gray-200)
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px
}

.related-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease
}

.related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.related-link {
  text-decoration: none;
  color: var(--dark-color);
  display: block
}

.related-link h3 {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.2s
}

.related-link:hover h3 {
  color: var(--primary-color)
}

.related-date {
  color: var(--gray-500);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

/* Blog Active State in Navigation */
.blog-link.active {
  background: var(--gray-200);
  color: var(--primary-color)
}

.blog-link.active:hover {
  background: var(--gray-300);
  color: var(--primary-color)
}

.blog-link.active img {
  filter: none
}

/* Mobile Blog Styles */
@media (max-width: 768px) {
  .blog-page {
    padding: 60px 0
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0
  }

  .blog-card {
    padding: 25px
  }

  .blog-card-title {
    font-size: 20px
  }

  .blog-pagination {
    margin: 40px 0 30px;
    flex-wrap: wrap
  }

  .pagination-btn {
    min-width: 35px;
    height: 35px;
    font-size: 14px
  }

  .related-articles {
    margin-top: 60px;
    padding-top: 40px
  }

  .related-grid {
    grid-template-columns: 1fr;
    gap: 20px
  }

  .related-card {
    padding: 20px
  }

  .related-link h3 {
    font-size: 16px
  }
}

@media (max-width: 480px) {
  .blog-card {
    padding: 20px
  }

  .blog-card-title {
    font-size: 18px
  }

  .blog-card-excerpt {
    font-size: 14px
  }

  .pagination-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    font-size: 13px
  }

  .related-card {
    padding: 15px
  }
}

/* Article Page Styles */
.article-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg)
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--gray-500)
}

.article-breadcrumb a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s
}

.article-breadcrumb a:hover {
  color: var(--primary-color)
}

.article-title {
  font-size: 42px;
  color: var(--dark-color);
  line-height: 1.3;
  margin-bottom: 20px
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200)
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 14px
}

.meta-item img {
  opacity: 0.6
}

.article-image {
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden
}

.article-image img {
  width: 100%;
  height: auto;
  display: block
}

.image-caption {
  padding: 15px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 14px;
  text-align: center;
  font-style: italic
}

.article-body {
  margin: 40px 0
}

.article-intro {
  font-size: 20px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 30px;
  padding: 25px;
  background: var(--light-color);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px
}

.article-intro p {
  margin: 0
}

.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray-800)
}

.article-content h2 {
  font-size: 28px;
  color: var(--dark-color);
  margin: 35px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-200)
}

.article-content h3 {
  font-size: 22px;
  color: var(--dark-color);
  margin: 25px 0 15px
}

.article-content p {
  margin-bottom: 20px
}

.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px
}

.article-content li {
  margin-bottom: 10px;
  line-height: 1.7
}

.article-content blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  background: var(--gray-100);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  font-style: italic;
  color: var(--gray-700)
}

.article-content strong {
  color: var(--dark-color);
  font-weight: 600
}

.article-content a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.2s
}

.article-content a:hover {
  color: var(--secondary-color)
}

.article-conclusion {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--light-color), #fff);
  border-radius: 10px;
  border: 1px solid var(--gray-200)
}

.conclusion-title {
  font-size: 24px;
  color: var(--dark-color);
  margin-bottom: 15px
}

.article-conclusion p {
  color: var(--gray-700);
  line-height: 1.7
}

/* Article CTA */
.article-cta {
  margin: 50px 0;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  text-align: center
}

.article-cta .cta-content {
  color: #fff
}

.article-cta h3 {
  font-size: 28px;
  margin-bottom: 10px
}

.article-cta p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95
}

.article-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--dark-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-lg)
}

.article-cta .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  background: #e59500
}

.article-cta .cta-button img {
  filter: brightness(0)
}

/* Mobile Article Styles */
@media (max-width: 768px) {
  .article-wrapper {
    padding: 25px;
    border-radius: 0
  }

  .article-title {
    font-size: 28px
  }

  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px
  }

  .article-intro {
    font-size: 16px;
    padding: 20px
  }

  .article-content {
    font-size: 15px
  }

  .article-content h2 {
    font-size: 22px
  }

  .article-content h3 {
    font-size: 18px
  }

  .article-cta {
    padding: 30px 20px
  }

  .article-cta h3 {
    font-size: 22px
  }

  .article-cta p {
    font-size: 16px
  }

  .article-cta .cta-button {
    padding: 14px 25px;
    font-size: 16px
  }
}

@media (max-width: 480px) {
  .article-wrapper {
    padding: 20px 15px
  }

  .article-breadcrumb {
    font-size: 12px
  }

  .article-title {
    font-size: 24px
  }

  .article-intro {
    font-size: 14px;
    padding: 15px
  }

  .article-content {
    font-size: 14px
  }

  .article-content h2 {
    font-size: 20px
  }

  .article-content h3 {
    font-size: 17px
  }

  .article-conclusion {
    padding: 20px
  }

  .conclusion-title {
    font-size: 20px
  }

  .article-cta {
    padding: 25px 15px
  }

  .article-cta h3 {
    font-size: 20px
  }

  .article-cta .cta-button {
    width: 100%;
    justify-content: center
  }
}

/* Reviews Page Styles */
.reviews-page {
  padding: 80px 0;
  background: var(--light-color)
}

.reviews-content {
  max-width: 1200px;
  margin: 0 auto
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 30px;
  margin: 50px 0
}

.review-card-full {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease
}

.review-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl)
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px
}

.review-user {
  display: flex;
  align-items: center;
  gap: 15px
}

.user-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700
}

.user-info {
  flex: 1
}

.review-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0
}

.review-service {
  display: inline-block;
  background: var(--accent-color);
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 5px
}

.review-rating {
  font-size: 18px;
  color: var(--accent-color);
  letter-spacing: 2px
}

.review-comment {
  color: var(--gray-700);
  line-height: 1.7;
  margin: 20px 0;
  font-size: 15px
}

.review-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--gray-200)
}

.review-date {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-500);
  font-size: 13px
}

.review-date img {
  opacity: 0.5
}

/* Reviews Pagination */
.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 60px 0 40px
}

/* Review Form Section */
.review-form-section {
  background: #fff;
  padding: 80px 0
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--light-color);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg)
}

.review-form-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--dark-color);
  margin-bottom: 10px
}

.form-subtitle {
  text-align: center;
  color: var(--gray-600);
  margin-bottom: 30px
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 25px
}

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

.form-control {
  padding: 15px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
  background: #fff
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 80, 144, 0.1)
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: inherit
}

.rating-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  color: var(--dark-color)
}

.star-rating {
  display: flex;
  gap: 10px;
  font-size: 28px
}

.star-rating i {
  cursor: pointer;
  color: var(--gray-300);
  transition: all 0.2s
}

.star-rating i:hover {
  color: var(--accent-color);
  transform: scale(1.2)
}

.star-rating i.fas {
  color: var(--accent-color)
}

.error-message {
  color: var(--danger-color);
  font-size: 13px;
  margin-top: 5px
}

.submit-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px
}

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

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed
}

/* Mobile Reviews Styles */
@media (max-width: 768px) {
  .reviews-page {
    padding: 60px 0
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px
  }
  
  .review-card-full {
    padding: 25px
  }
  
  .review-card-header {
    flex-direction: column;
    gap: 15px
  }
  
  .review-form-section {
    padding: 60px 0
  }
  
  .form-wrapper {
    padding: 30px 20px;
    border-radius: 0
  }
  
  .review-form-section h2 {
    font-size: 26px
  }
  
  .star-rating {
    font-size: 24px
  }
}

@media (max-width: 480px) {
  .reviews-grid {
    gap: 20px;
    margin: 40px 0
  }
  
  .review-card-full {
    padding: 20px
  }
  
  .user-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px
  }
  
  .review-name {
    font-size: 16px
  }
  
  .review-comment {
    font-size: 14px
  }
  
  .form-wrapper {
    padding: 25px 15px
  }
  
  .form-control {
    padding: 12px;
    font-size: 14px
  }
  
  .submit-btn {
    padding: 14px 25px;
    font-size: 16px
  }
}

/* Исправления для формы отзывов */
.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
  background: white !important;
  color: #333 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #333 !important;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form select:focus,
.review-form textarea:focus {
  background: white !important;
  color: #333 !important;
  opacity: 1 !important;
  -webkit-text-fill-color: #333 !important;
  border-color: #00a887;
}

/* Стили для звездного рейтинга */
.jqr_star-rating {
  color: #ddd !important;
  font-size: 24px;
}

.jqr_star-rating .star {
  cursor: pointer;
  transition: color 0.2s;
  display: inline-block;
  margin-right: 5px;
}

.jqr_star-rating .star:hover,
.jqr_star-rating .star.active,
.jqr_star-rating .star.selected {
  color: #ffd700 !important;
}

