@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
  display: inline-block;
}

.container {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 0 12px;
}

.containerP0 {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding: 0;
}

body {
  margin: auto;
  padding: 0;
  font: 16px Helvetica, Arial, sans-serif;
  max-width: 1920px;
  min-width: 320px;
  color: #000;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

:root {
  --maxWidth: 1200px;
  --btnColorFixed: #00489d;
  --btnColorTel: #04b561;
  --mainColor: #00489d;
}

.btnFixedD__img {
  all: unset !important;
  width: 100%;
}

.process__img,
.saveOurNumber__img {
  min-height: 100% !important;
  min-width: 100% !important;
}

.advice {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.advice::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.advice__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.advice__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.advice__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advice__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.advice__subTitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #0f766e;
  line-height: 1.3;
}

.advice__txt {
  line-height: 1.7;
  font-size: clamp(14px, 3vw, 16px);
  color: #374151;
  margin: 0;
}

.advice__txt strong {
  color: #0f766e;
  font-weight: 600;
}

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

.advice__wrp {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advice__wrp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.advice__wrp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.2);
}

.advice__wrp:hover::before {
  left: 100%;
}

.modernTechnology {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.modernTechnology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.modernTechnology__box {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.modernTechnology__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.modernTechnology__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.modernTechnology__title {
  font-size: clamp(32px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(20, 184, 166, 0.1);
  position: relative;
  z-index: 2;
}

.modernTechnology__txt {
  line-height: 1.6;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #374151;
  margin: 0;
  position: relative;
  z-index: 2;
}

.modernTechnology__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.modernTechnology__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.modernTechnology__ul li {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 20px 20px 60px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
  color: #374151;
}

.modernTechnology__ul li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.modernTechnology__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
}

.saveOurNumber {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.saveOurNumber::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.saveOurNumber__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.saveOurNumber__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.saveOurNumber__imgWrp {
  max-width: 100%;
  max-height: 500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.saveOurNumber__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.cheap__btnWrpMargin {
  margin-bottom: 20px;
}

.saveOurNumber__dsc {
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.saveOurNumber__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.saveOurNumber__title {
  font-size: clamp(32px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(20, 184, 166, 0.1);
  position: relative;
  z-index: 2;
}

.saveOurNumber__txt {
  line-height: 1.6;
  font-size: clamp(14px, 2.5vw, 16px);
  color: #374151;
  margin: 0;
  position: relative;
  z-index: 2;
}

.saveOurNumber__subTitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.saveOurNumber__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.saveOurNumber__ul li {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px 20px 20px 60px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
  color: #374151;
}

.saveOurNumber__ul li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.saveOurNumber__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(20, 184, 166, 0.4);
}

.fast {
  margin-top: 20px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.fast::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.fast__box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.fast__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.fast__left,
.fast__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.fast__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.fast__txt {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: #374151;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.fast__subTitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.fast__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.fast__ul li {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px 16px 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  color: #374151;
  font-weight: 500;
}

.fast__ul li::before {
  content: '🚗';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.fast__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.changeLock {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.changeLock::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.changeLock__box {
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.changeLock__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.changeLock__left,
.changeLock__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.changeLock__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.changeLock__subTitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.changeLock__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.changeLock__ul li {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px 16px 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  color: #374151;
  font-weight: 500;
}

.changeLock__ul li::before {
  content: '💧';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.changeLock__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.changeLock__txt {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: #374151;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.changeLock__imgWrp {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
}

.changeLock__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.openingCar {
  margin-top: 30px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.openingCar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.openingCar__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.openingCar__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.openingCar__left,
.openingCar__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.openingCar__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.openingCar__txt {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: #374151;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.openingCar__subTitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.openingCar__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.openingCar__ul li {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px 16px 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  color: #374151;
  font-weight: 500;
}

.openingCar__ul li::before {
  content: '💧';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.openingCar__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.openingASafe {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 50%, #ccfbf1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.openingASafe::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  z-index: 1;
}

.openingASafe__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.openingASafe__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.openingASafe__left,
.openingASafe__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.openingASafe__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.openingASafe__txt {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: #374151;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.openingASafe__subTitle {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.openingASafe__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.openingASafe__ul li {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px 16px 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  color: #374151;
  font-weight: 500;
}

.openingASafe__ul li::before {
  content: '💧';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.openingASafe__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.aboutUs {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.aboutUs::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.aboutUs__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.aboutUs__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.aboutUs__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.aboutUs__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 20px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.aboutUs__txt {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: #374151;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

.aboutUs__subTitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  margin: 0 0 15px 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}

.aboutUs__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.aboutUs__ul li {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px 16px 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.5;
  color: #374151;
  font-weight: 500;
}

.aboutUs__ul li::before {
  content: '💧';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 12px;
  flex-shrink: 0;
}

.aboutUs__ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.aboutUs__imgWrp {
  position: relative;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.aboutUs__imgWrp:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.aboutUs__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.aboutUs__img:hover {
  transform: scale(1.05);
}

.faq {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e6fffa 50%, #ccfbf1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.faq__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.faq__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(20, 184, 166, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.faq__left,
.faq__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 2;
}

.faq__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 25px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.faq__wrp {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.faq__wrp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(20, 184, 166, 0.4);
}

.faq__subTitle {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 600;
  margin: 0;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
}

.faq__txt {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.6;
  color: #374151;
  margin: 0;
  position: relative;
  z-index: 2;
}

.header {
  background-color: var(--mainColor);
  color: #fff;
}

.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 10px;
}

.header__log {
  font-weight: 700;
  font-size: 17px;
  padding-left: 30px;
  position: relative;
}

.header__log::before {
  content: "";
  position: absolute;
  background-image: url(/assets/icons/log.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  left: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header__ul a {
  color: #fff;
}

/* hebe стили для locksmith блока */
.locksmith {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 40px 0;
  position: relative;
}

.locksmith__hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.locksmith__card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  position: relative;
}

.locksmith__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #22d3ee);
}

.locksmith__header {
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.locksmith__badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.locksmith__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  color: #0f766e;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.locksmith__subtitle {
  color: #64748b;
  font-size: 18px;
  margin: 0;
  font-weight: 500;
}

.locksmith__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.locksmith__image-section {
  position: relative;
}

.locksmith__imgWrp {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
}

.locksmith__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.locksmith__imgWrp:hover .locksmith__img {
  transform: scale(1.05);
}

.locksmith__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(15, 118, 110, 0.8), rgba(20, 184, 166, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.locksmith__imgWrp:hover .locksmith__overlay {
  opacity: 1;
}

.locksmith__quick-info {
  text-align: center;
  color: white;
}

.locksmith__price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.locksmith__time {
  font-size: 16px;
  font-weight: 500;
}

.locksmith__info-section {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.locksmith__description {
  margin-bottom: 25px;
}

.locksmith__txt {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

.locksmith__features {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.locksmith__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #0f766e;
  transition: all 0.3s ease;
  cursor: pointer;
}

.locksmith__feature:hover {
  background: #e2e8f0;
  transform: translateY(-2px);
}

.locksmith__feature-icon {
  font-size: 18px;
}

.locksmith__actions {
  margin-top: auto;
}

.locksmith__btnWrp {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.locksmith__btnTel,
.locksmith__btnMessage {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.locksmith__btnTel {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.locksmith__btnTel:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
  color: white;
}

.locksmith__btnMessage {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.locksmith__btnMessage:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  color: white;
}

.locksmith__btn-icon {
  font-size: 18px;
}

/* Адаптивность */
@media (max-width: 992px) {
  .locksmith__content {
    grid-template-columns: 1fr;
  }

  .locksmith__image-section {
    order: -1;
  }

  .locksmith__imgWrp {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .locksmith {
    padding: 20px 0;
  }

  .locksmith__hero {
    min-height: auto;
    padding: 0 12px;
  }

  .locksmith__card {
    border-radius: 16px;
  }

  .locksmith__header {
    padding: 20px 20px 15px;
  }

  .locksmith__info-section {
    padding: 20px;
  }

  .locksmith__features {
    justify-content: center;
  }

  .locksmith__btnWrp {
    flex-direction: column;
  }

  .locksmith__btnTel,
  .locksmith__btnMessage {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .locksmith__features {
    flex-direction: column;
    gap: 10px;
  }

  .locksmith__feature {
    justify-content: center;
  }

  .locksmith__header {
    padding: 15px;
  }

  .locksmith__info-section {
    padding: 12px;
  }
}

.hourlyService {
  margin-top: 50px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0;
}

.hourlyService__box {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hourlyService__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #ffd700);
  z-index: 1;
}

.hourlyService__left {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.hourlyService__right {
  padding: 50px 40px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hourlyService__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 25px 0;
  line-height: 1.2;
}

.hourlyService__left .hourlyService__title {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hourlyService__right .hourlyService__title {
  color: #0f766e;
  position: relative;
  padding-bottom: 20px;
}

.hourlyService__right .hourlyService__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  border-radius: 2px;
}

.hourlyService__txt {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.7;
  margin: 0;
}

.hourlyService__left .hourlyService__txt {
  opacity: 0.95;
  color: white;
}

.hourlyService__right .hourlyService__txt {
  color: #374151;
}

.hourlyService__inner {
  background: #f8fafc;
  border-radius: 16px;
  padding: 25px;
  border-left: 4px solid #14b8a6;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hourlyService__inner:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
  background: #f1f5f9;
}

.hourlyService__inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #14b8a6;
  border-radius: 50%;
  box-shadow: 0 0 0 3px white, 0 0 0 6px #14b8a6;
}

.hourlyService__subTitle {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 700;
  margin: 0;
  color: #0f766e;
  position: relative;
  padding-left: 30px;
}



.hourlyService__inner .hourlyService__txt {
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}

@media (max-width: 768px) {
  .hourlyService__box {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .hourlyService__left,
  .hourlyService__right {
    padding: 30px 25px;
  }

  .hourlyService__left {
    min-height: auto;
  }

  .hourlyService__inner {
    padding: 20px;
  }

  .hourlyService__inner:hover {
    transform: translateX(4px);
  }
}

@media (max-width: 480px) {

  .hourlyService__left,
  .hourlyService__right {
    padding: 25px 10px;
  }

  .hourlyService__inner {
    padding: 18px;
  }

  .hourlyService__subTitle {
    padding-left: 25px;
  }
}

.process {
  margin-top: 60px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 80px 0;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #ffd700);
  z-index: 1;
}

.process__title {
  font-size: clamp(28px, 6vw, 32px);
  font-weight: 700;
  margin: 0 0 60px 0;
  text-align: center;
  color: #0f766e;
  position: relative;
  padding-bottom: 25px;
}

.process__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  border-radius: 2px;
}

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

.process__inner {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s ease;
  position: relative;
  border-left: 5px solid #14b8a6;
}

.process__inner:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(15, 118, 110, 0.15);
  border-left-color: #ffd700;

  .process__name {
    color: #fff;
  }
}

.process__inner::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #14b8a6, #ffd700);
  border-radius: 23px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process__inner:hover::before {
  opacity: 1;
}

.process__imgWrp {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #14b8a6;
  position: relative;
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  transition: all 0.4s ease;
}

.process__inner:hover .process__imgWrp {
  border-color: #ffd700;
  transform: scale(1.05);
}

.process__imgWrp::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: #ffd700;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
}

.process__inner:hover .process__imgWrp::after {
  opacity: 0.9;
  width: 40px;
  height: 40px;
}

.process__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.process__inner:hover .process__img {
  transform: scale(1.1);
}

.process__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.process__name {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: #0f766e;
  margin: 0;
  position: relative;
  padding-left: 35px;
}

.process__name::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: linear-gradient(135deg, #14b8a6, #ffd700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process__inner:nth-child(1) .process__name::after {
  content: '📞';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.process__inner:nth-child(2) .process__name::after {
  content: '💰';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.process__inner:nth-child(3) .process__name::after {
  content: '🚀';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.process__inner:nth-child(4) .process__name::after {
  content: '🔧';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.process__txt {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

@media (max-width: 768px) {
  .process {
    padding: 60px 0;
  }

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

  .process__inner {
    padding: 25px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .process__imgWrp {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .process__name {
    padding-left: 0;
    text-align: center;
  }

  .process__name::before {
    display: none;
  }

  .process__inner:nth-child(1) .process__name::after,
  .process__inner:nth-child(2) .process__name::after,
  .process__inner:nth-child(3) .process__name::after,
  .process__inner:nth-child(4) .process__name::after {
    content: '';
  }
}

@media (max-width: 480px) {
  .process__inner {
    padding: 20px;
  }

  .process__imgWrp {
    width: 80px;
    height: 80px;
  }
}

.prices {
  margin-top: 60px;
  background: linear-gradient(135deg, #fefefe 0%, #f8fafc 100%);
  padding: 80px 0;
  position: relative;
}

.prices::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #ffd700);
  z-index: 1;
}

.prices__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.prices__content {
  text-align: center;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.prices__title {
  font-size: clamp(32px, 6vw, 32px);
  font-weight: 700;
  margin: 0;
  color: #0f766e;
  position: relative;
  padding-bottom: 25px;
}

.prices__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  border-radius: 2px;
}

.prices__txt {
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

.prices__table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.1);
  position: relative;
}

.prices__table::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #14b8a6, #ffd700);
  z-index: 1;
}

.prices__table th,
.prices__table td {
  padding: 20px 25px;
  text-align: left;
  border: none;
  position: relative;
}

.prices__table th {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  color: white;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prices__table th:first-child {
  border-top-left-radius: 0;
}

.prices__table th:last-child {
  border-top-right-radius: 0;
  text-align: center;
}

.prices__table td {
  font-size: clamp(15px, 2.5vw, 16px);
  color: #374151;
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.prices__table tbody tr {
  transition: all 0.3s ease;
}

.prices__table tbody tr:hover {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
}

.prices__table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.prices__table tbody tr:nth-child(even):hover {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.prices__table td:first-child {
  font-weight: 600;
  color: #0f766e;
  position: relative;
  padding-left: 45px;
}

.prices__table td:first-child::before {
  content: '💰';
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.prices__table tbody tr:nth-child(1) td:first-child::before {
  content: '🔧';
}

.prices__table tbody tr:nth-child(2) td:first-child::before {
  content: '🌙';
}

.prices__table tbody tr:nth-child(3) td:first-child::before {
  content: '💧';
}

.prices__table tbody tr:nth-child(4) td:first-child::before {
  content: '🚰';
}

.prices__table tbody tr:nth-child(5) td:first-child::before {
  content: '🔥';
}

.prices__table td:last-child {
  text-align: center;
  font-weight: 700;
  font-size: clamp(16px, 3vw, 18px);
  color: #14b8a6;
  position: relative;
}

.prices__table td:last-child::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #ffd700;
  border-radius: 1px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

td,
th {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
}

th {
  background-color: #14b8a6;
  color: #fff;
  font-weight: 700;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

td:first-child {
  text-align: left;
}

@media (max-width: 768px) {
  .prices {
    padding: 60px 0;
  }

  .prices__box {
    gap: 40px;
    padding: 0 15px;
  }

  .prices__table th,
  .prices__table td {
    padding: 15px 12px;
  }

  .prices__table td:first-child {
    padding-left: 35px;
  }

  .prices__table td:first-child::before {
    left: 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {

  .prices__table th,
  .prices__table td {
    padding: 12px 8px;
  }

  .prices__table td:first-child {
    padding-left: 30px;
  }

  .prices__table td:first-child::before {
    left: 8px;
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .prices {
    padding: 35px 0;
  }

  .prices__box {
    gap: 25px;
    padding: 0 5px;
  }

  .prices__content {
    gap: 15px;
  }

  .prices__title {
    font-size: clamp(24px, 6vw, 32px);
    padding-bottom: 15px;
  }

  .prices__txt {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.5;
  }

  .prices__table {
    border-radius: 15px;
  }

  .prices__table th,
  .prices__table td {
    padding: 10px 6px;
    font-size: clamp(13px, 2.5vw, 14px);
  }

  .prices__table td:first-child {
    padding-left: 25px;
  }

  .prices__table td:first-child::before {
    left: 6px;
    font-size: 12px;
  }

  .prices__table td:last-child {
    font-size: clamp(14px, 3vw, 16px);
  }
}

@media (max-width: 360px) {
  .prices__box {
    padding: 0 3px;
  }

  .prices__table th,
  .prices__table td {
    padding: 8px 4px;
  }

  .prices__table td:first-child {
    padding-left: 22px;
  }

  .prices__table td:first-child::before {
    left: 4px;
    font-size: 10px;
  }
}

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

@media (max-width: 375px) {
  .cheap {
    padding: 35px 5px;
  }
}

.cheap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #ffd700);
  z-index: 1;
}

.cheap__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(15, 118, 110, 0.15);
  position: relative;
  overflow: hidden;
}

.cheap__box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(20, 184, 166, 0.1));
  border-radius: 50%;
  z-index: 0;
}

.cheap__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.cheap__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  color: #0f766e;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.2;
}

.cheap__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  border-radius: 2px;
}

.cheap__txt {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  color: #374151;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .cheap__txt {
    text-align: left;
    line-height: 1.5;
  }
}

.cheap__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.cheap__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cheap__ul li {
  position: relative;
  padding: 20px 20px 20px 60px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 15px;
  border-left: 5px solid #14b8a6;
  font-size: clamp(15px, 2.5vw, 16px);
  font-weight: 600;
  color: #0f766e;
  line-height: 1.6;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.08);
}

.cheap__ul li::before {
  content: '⚡';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: linear-gradient(135deg, #ffd700, #ffbf00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cheap__ul li:nth-child(1)::before {
  content: '🕐';
}

.cheap__ul li:nth-child(2)::before {
  content: '💰';
}

.cheap__ul li:nth-child(3)::before {
  content: '🚨';
}

.cheap__ul li:nth-child(4)::before {
  content: '💬';
}

.cheap__ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.cheap__btnWrp {
  text-align: center;
  margin-top: 20px;
}

.cheap__btn {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(18px, 3vw, 20px);
  padding: 18px 35px 18px 55px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.3);
  border: none;
  cursor: pointer;
}

.cheap__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cheap__btn:hover::before {
  left: 100%;
}

.cheap__btn span {
  position: relative;
  z-index: 1;
}

.cheap__btn span::before {
  content: "";
  position: absolute;
  background-image: url(/assets/icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  aspect-ratio: 1;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}

.cheap__btn:hover {
  background: linear-gradient(135deg, #0f766e, #065f46);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.4);
}

@media (max-width: 1024px) {
  .cheap__box {
    gap: 40px;
    padding: 45px 30px;
  }

  .cheap__title {
    font-size: clamp(24px, 4vw, 32px);
  }
}

@media (max-width: 768px) {
  .cheap {
    padding: 50px 0;
  }

  .cheap__box {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 35px 20px;
    margin: 0 15px;
    border-radius: 20px;
  }

  .cheap__left {
    gap: 20px;
  }

  .cheap__right {
    gap: 25px;
  }

  .cheap__ul {
    gap: 15px;
  }

  .cheap__ul li {
    padding: 15px 15px 15px 50px;
    border-radius: 12px;
  }

  .cheap__ul li::before {
    left: 15px;
    font-size: 20px;
  }

  .cheap__btn {
    width: 100%;
    padding: 16px 30px 16px 50px;
    font-size: clamp(16px, 3vw, 18px);
  }

  .cheap__btn span::before {
    left: -30px;
    width: 20px;
  }
}

@media (max-width: 480px) {
  .cheap {
    padding: 40px 0;
  }

  .cheap__box {
    padding: 25px 15px;
    margin: 0 10px;
    gap: 30px;
  }

  .cheap__left {
    gap: 15px;
  }

  .cheap__right {
    gap: 20px;
  }

  .cheap__ul {
    gap: 12px;
  }

  .cheap__ul li {
    padding: 12px 12px 12px 45px;
    border-radius: 10px;
  }

  .cheap__ul li::before {
    left: 12px;
    font-size: 18px;
  }

  .cheap__btn {
    padding: 14px 25px 14px 45px;
  }

  .cheap__btn span::before {
    left: -25px;
    width: 18px;
  }
}

@media (max-width: 375px) {
  .cheap {
    padding: 35px 0;
  }

  .cheap__box {
    padding: 20px 10px;
    margin: 0 5px;
    gap: 25px;
    border-radius: 15px;
  }

  .cheap__left {
    gap: 12px;
  }

  .cheap__right {
    gap: 18px;
  }

  .cheap__title {
    font-size: clamp(20px, 5vw, 24px);
    padding-bottom: 15px;
  }

  .cheap__txt {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.4;
  }

  .cheap__ul {
    gap: 10px;
  }

  .cheap__ul li {
    padding: 10px 8px 10px 35px;
    border-radius: 8px;
    font-size: clamp(13px, 3vw, 14px);
  }

  .cheap__ul li::before {
    left: 8px;
    font-size: 14px;
  }

  .cheap__btn {
    padding: 12px 15px 12px 35px;
    font-size: clamp(14px, 3vw, 16px);
  }

  .cheap__btn span::before {
    left: -20px;
    width: 14px;
  }
}

@media (max-width: 360px) {
  .cheap__box {
    padding: 18px 8px;
    margin: 0 3px;
  }

  .cheap__ul li {
    padding: 8px 6px 8px 32px;
  }

  .cheap__ul li::before {
    left: 6px;
    font-size: 12px;
  }

  .cheap__btn {
    padding: 10px 12px 10px 32px;
  }

  .cheap__btn span::before {
    left: -18px;
    width: 12px;
  }
}

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

@media (max-width: 375px) {
  .doorOpening {
    padding: 35px 5px;
  }
}

.doorOpening::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #ffd700);
  z-index: 1;
}

.doorOpening__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(15, 118, 110, 0.15);
  position: relative;
  overflow: hidden;
}

.doorOpening__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(20, 184, 166, 0.1));
  border-radius: 50%;
  z-index: 0;
}

.doorOpening__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.doorOpening__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  color: #0f766e;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.2;
}

.doorOpening__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  border-radius: 2px;
}

.doorOpening__txt {
  font-size: clamp(14px, 2.5vw, 18px);
  line-height: 1.6;
  color: #374151;
  margin: 0;
  text-align: justify;
}

@media (max-width: 768px) {
  .doorOpening__txt {
    text-align: left;
    line-height: 1.5;
  }
}

.doorOpening__right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.doorOpening__wrp {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 20px;
  padding: 25px;
  border-left: 6px solid #14b8a6;
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.doorOpening__wrp::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(20, 184, 166, 0.2));
  border-radius: 50%;
  transform: translate(30px, -30px);
  z-index: 0;
}

.doorOpening__wrp:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 118, 110, 0.2);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.doorOpening__subTitle {
  font-size: clamp(18px, 3vw, 20px);
  font-weight: 700;
  color: #0f766e;
  margin: 0 0 15px 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.doorOpening__subTitle::before {
  content: '🔧';
  font-size: 24px;
  background: linear-gradient(135deg, #ffd700, #ffbf00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.doorOpening__wrp:nth-child(1) .doorOpening__subTitle::before {
  content: '🔍';
}

.doorOpening__wrp:nth-child(2) .doorOpening__subTitle::before {
  content: '⚙️';
}

.doorOpening__wrp:nth-child(3) .doorOpening__subTitle::before {
  content: '🛠️';
}

.doorOpening__wrp:nth-child(4) .doorOpening__subTitle::before {
  content: '💬';
}

@media (max-width: 1024px) {
  .doorOpening__box {
    gap: 40px;
    padding: 45px 30px;
  }

  .doorOpening__title {
    font-size: clamp(24px, 4vw, 32px);
  }
}

@media (max-width: 768px) {
  .doorOpening {
    padding: 50px 0;
  }

  .doorOpening__box {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 35px 20px;
    margin: 0 15px;
    border-radius: 20px;
  }

  .doorOpening__left {
    gap: 20px;
  }

  .doorOpening__right {
    gap: 20px;
  }

  .doorOpening__wrp {
    padding: 20px;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .doorOpening {
    padding: 40px 0;
  }

  .doorOpening__box {
    padding: 25px 15px;
    margin: 0 10px;
    gap: 30px;
  }

  .doorOpening__left {
    gap: 15px;
  }

  .doorOpening__right {
    gap: 18px;
  }

  .doorOpening__wrp {
    padding: 18px;
    border-radius: 12px;
  }
}

@media (max-width: 375px) {
  .doorOpening {
    padding: 35px 0;
  }

  .doorOpening__box {
    padding: 20px 10px;
    margin: 0 5px;
    gap: 25px;
    border-radius: 15px;
  }

  .doorOpening__left {
    gap: 12px;
  }

  .doorOpening__right {
    gap: 15px;
  }

  .doorOpening__title {
    font-size: clamp(20px, 5vw, 24px);
    padding-bottom: 15px;
  }

  .doorOpening__txt {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.4;
  }

  .doorOpening__wrp {
    padding: 15px;
    border-radius: 10px;
  }

  .doorOpening__subTitle {
    font-size: clamp(14px, 3vw, 16px);
    gap: 8px;
  }

  .doorOpening__subTitle::before {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .doorOpening__box {
    padding: 18px 8px;
    margin: 0 3px;
  }

  .doorOpening__left {
    gap: 10px;
  }

  .doorOpening__right {
    gap: 12px;
  }

  .doorOpening__wrp {
    padding: 12px;
    border-radius: 8px;
  }

  .doorOpening__subTitle {
    font-size: clamp(13px, 3vw, 15px);
    gap: 6px;
  }

  .doorOpening__subTitle::before {
    font-size: 16px;
  }

  .doorOpening__txt {
    font-size: clamp(12px, 3vw, 14px);
  }
}

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

.whenCanDamageOccur::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0f766e, #14b8a6, #ffd700);
  z-index: 1;
}

.whenCanDamageOccur__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(15, 118, 110, 0.15);
  position: relative;
  overflow: hidden;
}

.whenCanDamageOccur__box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(20, 184, 166, 0.1));
  border-radius: 50%;
  z-index: 0;
}

.whenCanDamageOccur__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.whenCanDamageOccur__imgWrp {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 118, 110, 0.2);
  border: 3px solid #ffffff;
  position: relative;
  transition: all 0.3s ease;
}

.whenCanDamageOccur__imgWrp:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(15, 118, 110, 0.25);
}

.whenCanDamageOccur__imgWrp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(20, 184, 166, 0.1));
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whenCanDamageOccur__imgWrp:hover::before {
  opacity: 1;
}

.whenCanDamageOccur__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.whenCanDamageOccur__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.whenCanDamageOccur__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  color: #0f766e;
  position: relative;
  padding-bottom: 20px;
  line-height: 1.2;
}

.whenCanDamageOccur__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffbf00);
  border-radius: 2px;
}

.whenCanDamageOccur__txt {
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.7;
  color: #374151;
  margin: 0;
  text-align: justify;
}

.whenCanDamageOccur__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.whenCanDamageOccur__ul li {
  position: relative;
  padding: 20px 20px 20px 60px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 15px;
  border-left: 5px solid #14b8a6;
  font-size: clamp(15px, 2.5vw, 16px);
  font-weight: 600;
  color: #0f766e;
  line-height: 1.6;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(15, 118, 110, 0.08);
}

.whenCanDamageOccur__ul li::before {
  content: '🔧';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  background: linear-gradient(135deg, #ffd700, #ffbf00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.whenCanDamageOccur__ul li:nth-child(1)::before {
  content: '⚡';
}

.whenCanDamageOccur__ul li:nth-child(2)::before {
  content: '🔧';
}

.whenCanDamageOccur__ul li:nth-child(3)::before {
  content: '🏢';
}

.whenCanDamageOccur__ul li:nth-child(4)::before {
  content: '🚨';
}

.whenCanDamageOccur__ul li:nth-child(5)::before {
  content: '📋';
}

.whenCanDamageOccur__ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.15);
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.locksmith__btnWrp {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.locksmith__btnTel {
  background: linear-gradient(135deg, #14b8a6, #0f766e);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(16px, 3vw, 18px);
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(15, 118, 110, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.locksmith__btnTel::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.locksmith__btnTel:hover::before {
  left: 100%;
}

.locksmith__btnTel:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(15, 118, 110, 0.4);
  background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.locksmith__btnMessage {
  background: linear-gradient(135deg, #ffd700, #ffbf00);
  color: #0f766e;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(16px, 3vw, 18px);
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.locksmith__btnMessage::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.locksmith__btnMessage:hover::before {
  left: 100%;
}

.locksmith__btnMessage:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #ffbf00, #ffd700);
}

.reviews {
  margin-top: 50px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(236, 191, 77, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.reviews__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.reviews__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 24px;
  pointer-events: none;
}

.reviews__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.reviews__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0;
  background: linear-gradient(135deg, #ecbf4d 0%, #f59e0b 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reviews__txt {
  line-height: 1.6;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.reviews__txt strong {
  color: #ecbf4d;
  font-weight: 600;
}

.reviews__commentWrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.reviews__name {
  font-weight: 700;
  color: #ecbf4d;
}

.reviews__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.reviews__imgWrp {
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews__imgWrp:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15);
}

.reviews__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.reviews__imgWrp:hover .reviews__img {
  transform: scale(1.05);
}

.forms {
  margin-top: 50px;
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.forms::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.forms__box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.forms__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 20px;
  pointer-events: none;
  z-index: -1;
}

.forms__title {
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  margin: 0 0 30px 0;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  text-align: center;
}

.form-control {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: clamp(14px, 3vw, 16px);
  color: #374151;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.15);
  outline: none;
  transform: translateY(-2px);
}

.forms__button {
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: clamp(16px, 3vw, 18px);
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

.forms__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.forms__button:hover {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.4);
}

.forms__button:hover::before {
  left: 100%;
}

.forms__button span {
  position: relative;
  z-index: 2;
}

.forms__button span::before {
  content: "";
  position: absolute;
  background-image: url(/assets/icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  aspect-ratio: 1;
  left: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btnFixed {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0;
  margin-bottom: 10px;
  z-index: 100;
}

.btnFixed__btn {
  background-color: var(--btnColorTel);
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
  padding: 10px 20px 10px 40px;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--btnColorTel);
  width: 100%;
  text-align: center;
  padding: 16px 15px;
  border-radius: 0;
}

.btnFixed__btn span {
  position: relative;
}

.btnFixed__btn span::before {
  content: "";
  position: absolute;
  background-image: url(/assets/icons/telephone-fill.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  aspect-ratio: 1;
  left: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btnFixed__btn:hover {
  background-color: #038b4c;
  color: #fff;
}

.btnFixed__btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 5px;
  font-size: 12px;
}

.btnFixedD {
  position: fixed;
  bottom: 20px;
  right: 10px;
}

.btnFixedD__btn {
  background-color: var(--btnColorTel);
  padding: 10px;
  border-radius: 50px;
  width: 38px;
  height: 38px;
}

.btnFixedD__img {
  width: 100%;
}

footer {
  background-color: var(--mainColor);
  color: #fff;
  font-weight: 700;
  padding: 13px 0;
}

@media (max-width: 767px) {

  .aboutUs__box,
  .advice__box,
  .changeLock__box,
  .cheap__box,
  .doorOpening__box,
  .faq__box,
  .fast__box,
  .hourlyService__box,
  .locksmith__box,
  .modernTechnology__box,
  .openingASafe__box,
  .openingCar__box,
  .prices__box,
  .process__wrapper,
  .reviews__box,
  .saveOurNumber__box,
  .whenCanDamageOccur__box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 35px 10px;
    margin: 0;
    border-radius: 20px;
  }

  .whenCanDamageOccur__imgWrp {
    height: 250px;
  }

  .whenCanDamageOccur__left {
    gap: 20px;
  }

  .whenCanDamageOccur__right {
    gap: 25px;
  }

  .whenCanDamageOccur__ul {
    gap: 15px;
  }

  .whenCanDamageOccur__ul li {
    padding: 15px 15px 15px 50px;
    border-radius: 12px;
  }

  .whenCanDamageOccur__ul li::before {
    left: 15px;
    font-size: 20px;
  }

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

  .locksmith__btnTel,
  .locksmith__btnMessage {
    width: 100%;
    padding: 16px 30px;
    font-size: clamp(16px, 3vw, 18px);
  }

  .whenCanDamageOccur__txt {
    text-align: left;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .whenCanDamageOccur {
    padding: 40px 0;
  }

  .whenCanDamageOccur__box {
    padding: 25px 15px;
    margin: 0 10px;
    gap: 30px;
  }

  .whenCanDamageOccur__imgWrp {
    height: 200px;
  }

  .whenCanDamageOccur__left {
    gap: 15px;
  }

  .whenCanDamageOccur__right {
    gap: 20px;
  }

  .whenCanDamageOccur__ul {
    gap: 12px;
  }

  .whenCanDamageOccur__ul li {
    padding: 12px 12px 12px 45px;
    border-radius: 10px;
  }

  .whenCanDamageOccur__ul li::before {
    left: 12px;
    font-size: 18px;
  }

  .locksmith__btnTel,
  .locksmith__btnMessage {
    padding: 14px 25px;
  }
}

@media (max-width: 375px) {
  .whenCanDamageOccur {
    padding: 35px 5px;
  }

  .whenCanDamageOccur__box {
    padding: 20px 10px;
    margin: 0;
    gap: 25px;
    border-radius: 15px;
  }

  .whenCanDamageOccur__imgWrp {
    height: 180px;
    border-radius: 15px;
  }

  .whenCanDamageOccur__left {
    gap: 12px;
  }

  .whenCanDamageOccur__right {
    gap: 18px;
  }

  .whenCanDamageOccur__title {
    font-size: clamp(20px, 5vw, 24px);
    padding-bottom: 15px;
  }

  .whenCanDamageOccur__txt {
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.4;
  }

  .whenCanDamageOccur__ul {
    gap: 10px;
  }

  .whenCanDamageOccur__ul li {
    padding: 10px 8px 10px 35px;
    border-radius: 8px;
    font-size: clamp(13px, 3vw, 14px);
  }

  .whenCanDamageOccur__ul li::before {
    left: 8px;
    font-size: 14px;
  }

  .locksmith__btnTel,
  .locksmith__btnMessage {
    padding: 12px 20px;
    font-size: clamp(14px, 3vw, 16px);
    min-width: auto;
  }
}

@media (max-width: 360px) {
  .whenCanDamageOccur__box {
    padding: 18px 8px;
    margin: 0 3px;
  }

  .whenCanDamageOccur__imgWrp {
    height: 160px;
  }

  .whenCanDamageOccur__ul li {
    padding: 8px 6px 8px 32px;
  }

  .whenCanDamageOccur__ul li::before {
    left: 6px;
    font-size: 12px;
  }

  .locksmith__btnTel,
  .locksmith__btnMessage {
    padding: 10px 15px;
  }
}

@media (max-width: 500px) {
  .btnFixedD {
    display: none;
  }

  .btnFixed {
    display: block;
  }

  footer {
    margin-bottom: 60px;
  }

  .header__ul {
    gap: 15px;
  }

  .header__box {
    gap: 10px;
  }

  .header__ul {
    font-size: 15px;
  }
}

/*  */
.header {
  background: linear-gradient(135deg, #0f766e, #14b8a6);
  /* Бирюзовый → светло-бирюзовый */
  color: #fff;
  padding: 10px 0;
  font-family: "Segoe UI", sans-serif;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header__logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.header__logo a:hover {
  color: #ffd700;
}

.header__nav {
  flex-grow: 1;
  text-align: center;
}

.header__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  justify-content: center;
}

.header__ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  position: relative;
}

.header__ul li a::after {
  content: "";
  display: block;
  height: 2px;
  background: #ffd700;
  width: 0%;
  transition: width 0.3s;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.header__ul li a:hover::after {
  width: 100%;
}

.btn-call {
  background: #ffd700;
  color: #0f766e;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-call:hover {
  background: #ffbf00;
}

/* 2 */
.locksmith {
  background: #f8f9fa;
}

.locksmith__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.locksmith__left {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.locksmith__imgWrp {
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.locksmith__img {
  width: 100%;
  height: auto;
  display: block;
}

.locksmith__right {
  flex: 1;
  min-width: 300px;
}

.locksmith__txt {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 30px;
  background-color: #ffffff;
  padding: 10px;
  border-left: 4px solid #ffd700;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.locksmith__btnWrp {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.locksmith__btnTel,
.locksmith__btnMessage {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.locksmith__btnTel {
  background-color: #ffd700;
  color: #0f766e;
}

.locksmith__btnTel:hover {
  background-color: #ffbf00;
}

.locksmith__btnMessage {
  background-color: #0f766e;
  color: #ffffff;
}

.locksmith__btnMessage:hover {
  background-color: #14b8a6;
}

/* 3 */
.hourlyService {
  background: #ffffff;
  padding: 0;
}

.hourlyService__left,
.hourlyService__right {
  flex: 1;
  min-width: 320px;
}

.hourlyService__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.hourlyService__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

.hourlyService__subTitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #14b8a6;
  margin-bottom: 8px;
  border-left: 4px solid #ffd700;
  padding-left: 12px;
}

.hourlyService__inner {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: background 0.3s ease;
}

.hourlyService__inner:hover {
  background: #f1f3f5;
}

.locksmith__btnWrp {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.locksmith__btnTel,
.locksmith__btnMessage {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.locksmith__btnTel {
  background: #ffd700;
  color: #0f766e;
}

.locksmith__btnTel:hover {
  background: #ffbf00;
}

.locksmith__btnMessage {
  background: #0f766e;
  color: #fff;
}

.locksmith__btnMessage:hover {
  background: #14b8a6;
}

/* 4 */

.process {
  background: #f8f9fa;
  padding: 60px 0 30px;
}

.process__title {
  color: #0f766e;
  margin-bottom: 40px;
}

.process__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.process__inner {
  flex: 1 1 calc(50% - 30px);
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process__imgWrp {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #ffd700;
}

.process__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process__content {
  flex-grow: 1;
}

.process__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #14b8a6;
  margin-bottom: 6px;
}

.process__txt {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process__wrapper {
    flex-direction: column;
  }

  .process__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process__imgWrp {
    margin-bottom: 10px;
  }

  .process__content {
    align-items: center;
  }
}

@media (max-width: 1023px) {
  .process__inner {
    flex: 1 1 calc(50% - 30px);
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-direction: column;
  }
}

/* 5 */
.prices {
  background: #ffffff;
}

.prices__title {
  color: #0f766e;
  margin-bottom: 20px;
  text-align: center;
}

.prices__txt {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.prices__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background-color: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.prices__table th,
.prices__table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  color: #0f766e;
}

.prices__table th {
  color: #fff;
}

.prices__table thead {
  background: #0f766e;
  color: #fff;
}

.prices__table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.prices__table tbody tr:nth-child(even) {
  background-color: #f1f3f5;
}

.prices__table td:last-child {
  font-weight: 600;
  color: #14b8a6;
}

/* 6 */
.cheap {
  background: #fefefe;
  padding: 20px 0;
}

.cheap__left,
.cheap__right {
  flex: 1;
  min-width: 320px;
}

.cheap__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.cheap__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.cheap__ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cheap__ul li {
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
  color: #0f766e;
  font-weight: 500;
}

.cheap__ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a86b;
  font-weight: bold;
  font-size: 1.2rem;
}

.cheap__btnWrp {
  margin-top: 30px;
}

.cheap__btn {
  background: #ffd700;
  color: #0f766e;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.cheap__btn:hover {
  background: #ffbf00;
}

@media (max-width: 768px) {
  .cheap__box {
    flex-direction: column;
    padding: 0 10px;
  }

  .cheap__txt,
  .cheap__ul li {
    font-size: 1rem;
  }

  .cheap__ul {
    gap: 12px;
  }

  .cheap__btn {
    width: 100%;
    text-align: center;
  }
}

/* 7 */
.doorOpening {
  background: #f8f9fa;
  padding: 60px 0;
}

.doorOpening__left,
.doorOpening__right {
  flex: 1;
  min-width: 320px;
}

.doorOpening__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.doorOpening__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.doorOpening__wrp {
  background: #ffffff;
  border-left: 4px solid #ffd700;
  border-radius: 10px;
  padding: 20px 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.doorOpening__wrp:hover {
  background: #f1f3f5;
}

.doorOpening__subTitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: #14b8a6;
  margin-bottom: 10px;
}

/* 8 */
.whenCanDamageOccur {
  background: #ffffff;
}

.whenCanDamageOccur__left {
  flex: 1;
  min-width: 300px;
}

.whenCanDamageOccur__imgWrp {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whenCanDamageOccur__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.whenCanDamageOccur__right {
  flex: 2;
  min-width: 300px;
}

.whenCanDamageOccur__title {
  color: #0f766e;
  margin-bottom: 20px;
  margin-top: 20px;
}

.whenCanDamageOccur__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.whenCanDamageOccur__ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.whenCanDamageOccur__ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  color: #0f766e;
  font-weight: 500;
}

.whenCanDamageOccur__ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a86b;
  font-weight: bold;
}

/* 9 */
.reviews {
  background: #fefefe;
}

.reviews__left {
  flex: 2;
  min-width: 320px;
}

.reviews__right {
  flex: 1;
  min-width: 300px;
}

.reviews__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.reviews__txt {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviews__commentWrp {
  background: #f8f9fa;
  border-left: 4px solid #ffd700;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.reviews__commentWrp:hover {
  background: #f1f3f5;
}

.reviews__name {
  font-weight: 600;
  color: #14b8a6;
  margin-bottom: 5px;
}

.reviews__stars {
  color: #ffd700;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.reviews__message {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.reviews__imgWrp {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.reviews__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 10 */
.advice {
  background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 50%, #f0f9ff 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.advice::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.advice__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.advice__left,
.advice__right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.advice__title {
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #10b981 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px 0;
  font-size: clamp(28px, 5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.advice__subTitle {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #0f766e;
  line-height: 1.3;
}

.advice__txt {
  line-height: 1.7;
  font-size: clamp(14px, 3vw, 16px);
  color: #374151;
  margin: 0;
}

.advice__txt strong {
  color: #0f766e;
  font-weight: 600;
}

.advice__wrp {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(20, 184, 166, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.advice__wrp::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.1), transparent);
  transition: left 0.5s ease;
}

.advice__wrp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.2);
}

.advice__wrp:hover::before {
  opacity: 1;
}

.cheap__btnWrp {
  margin-top: 35px;
}

.cheap__btn {
  background: linear-gradient(135deg, #ffd700 0%, #f59e0b 100%);
  color: #0f766e;
  padding: 16px 32px 16px 55px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.cheap__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f59e0b 0%, #ffd700 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cheap__btn span {
  position: relative;
  z-index: 2;
}

.cheap__btn::after {
  content: '→';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  transition: transform 0.3s ease;
}

.cheap__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.cheap__btn:hover::before {
  opacity: 1;
}

.cheap__btn:hover::after {
  transform: translateY(-50%) translateX(3px);
}

@media (max-width: 768px) {
  .advice__box {
    flex-direction: column;
  }

  .advice__txt,
  .advice__subTitle {
    font-size: clamp(15px, 2.5vw, 16px);
  }

  .cheap__btn {
    width: 100%;
    text-align: center;
    padding: 16px 32px;
  }

  .cheap__btn::after {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .cheap__btn:hover::after {
    transform: translateX(-47%) translateY(-50%);
  }
}

@media (max-width: 480px) {
  .advice {
    padding: 60px 0;
  }

  .advice__box {
    gap: 30px;
    padding: 0 15px;
  }

  .advice__left {
    gap: 20px;
  }

  .advice__right {
    gap: 20px;
  }

  .advice__title {
    font-size: clamp(24px, 6vw, 28px);
    margin-bottom: 20px;
  }

  .advice__subTitle {
    font-size: clamp(16px, 4vw, 18px);
  }

  .advice__txt {
    font-size: clamp(14px, 3vw, 15px);
  }

  .advice__wrp {
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
  }

  .cheap__btnWrp {
    margin-top: 25px;
  }
}

@media (max-width: 375px) {
  .advice {
    padding: 50px 0;
  }

  .advice__box {
    gap: 25px;
    padding: 0 10px;
  }

  .advice__left,
  .advice__right {
    gap: 18px;
  }

  .advice__title {
    font-size: clamp(22px, 7vw, 26px);
    margin-bottom: 18px;
  }

  .advice__subTitle {
    font-size: clamp(15px, 4.5vw, 17px);
    margin-bottom: 10px;
  }

  .advice__txt {
    font-size: clamp(13px, 3.5vw, 14px);
  }

  .advice__wrp {
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 12px;
  }

  .cheap__btn {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .advice {
    padding: 40px 0;
  }

  .advice__box {
    gap: 20px;
    padding: 0 8px;
  }

  .advice__left,
  .advice__right {
    gap: 15px;
  }

  .advice__title {
    font-size: clamp(20px, 8vw, 24px);
    margin-bottom: 15px;
  }

  .advice__subTitle {
    font-size: clamp(14px, 5vw, 16px);
    margin-bottom: 8px;
  }

  .advice__txt {
    font-size: clamp(12px, 4vw, 13px);
  }

  .advice__wrp {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .cheap__btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .cheap__btn::after {
    font-size: 16px;
  }
}

.advice__right {
  gap: 20px;
}

.advice__title {
  font-size: clamp(20px, 4vw, 24px);
}

.advice__subTitle {
  font-size: clamp(16px, 3vw, 18px);
}

.advice__txt {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.5;
}

.advice__wrp {
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
}


@media (max-width: 375px) {
  .advice {
    padding: 30px 5px;
  }

  .advice__box {
    padding: 20px 10px;
    margin: 0 5px;
    gap: 25px;
  }

  .advice__left {
    gap: 12px;
  }

  .advice__right {
    gap: 15px;
  }

  .advice__title {
    font-size: clamp(18px, 4vw, 22px);
  }

  .advice__subTitle {
    font-size: clamp(15px, 3vw, 17px);
  }

  .advice__txt {
    font-size: clamp(13px, 2.5vw, 15px);
    line-height: 1.4;
  }

  .advice__wrp {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
  }
}

@media (max-width: 360px) {
  .advice {
    padding: 25px 3px;
  }

  .advice__box {
    padding: 15px 8px;
    margin: 0 3px;
    gap: 20px;
  }

  .advice__left {
    gap: 10px;
  }

  .advice__right {
    gap: 12px;
  }

  .advice__title {
    font-size: clamp(16px, 4vw, 20px);
  }

  .advice__subTitle {
    font-size: clamp(14px, 3vw, 16px);
  }

  .advice__txt {
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 1.3;
  }

  .advice__wrp {
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
}

/* 11 - modernTechnology responsive styles */
.modernTechnology__subTitle {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  background: linear-gradient(135deg, #14b8a6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 20px 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .modernTechnology {
    padding: 60px 0;
  }

  .modernTechnology__box {
    padding: 30px;
    gap: 30px;
  }

  .modernTechnology__left,
  .modernTechnology__right {
    gap: 15px;
  }

  .modernTechnology__title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .modernTechnology__subTitle {
    font-size: clamp(16px, 4vw, 20px);
  }

  .modernTechnology__txt {
    font-size: clamp(13px, 3vw, 15px);
  }

  .modernTechnology__ul li {
    padding: 16px 16px 16px 50px;
    font-size: clamp(13px, 3vw, 15px);
  }

  .modernTechnology__ul li::before {
    width: 20px;
    height: 20px;
    left: 16px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .modernTechnology {
    padding: 40px 0;
  }

  .modernTechnology__box {
    padding: 20px;
    gap: 20px;
  }

  .modernTechnology__ul {
    gap: 12px;
  }

  .modernTechnology__ul li {
    padding: 14px 14px 14px 45px;
  }

  .modernTechnology__ul li::before {
    width: 18px;
    height: 18px;
    left: 14px;
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .modernTechnology {
    padding: 30px 0;
  }

  .modernTechnology__box {
    padding: 16px;
    gap: 16px;
  }

  .modernTechnology__ul li {
    padding: 12px 12px 12px 40px;
  }

  .modernTechnology__ul li::before {
    width: 16px;
    height: 16px;
    left: 12px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .modernTechnology__box {
    padding: 14px;
    gap: 14px;
  }

  .modernTechnology__ul {
    gap: 10px;
  }
}

/* 12 */
.saveOurNumber {
  background: #fefefe;
}

.saveOurNumber__box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.saveOurNumber__imgWrp {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.saveOurNumber__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.saveOurNumber__right {
  flex: 1.2;
  min-width: 320px;
}

.saveOurNumber__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.saveOurNumber__subTitle {
  color: #14b8a6;
  margin-bottom: 15px;
}

.saveOurNumber__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

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

.saveOurNumber__ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #0f766e;
}

.saveOurNumber__ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #00a86b;
}

.saveOurNumber__dsc {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f766e;
}

.cheap__btnWrpMargin {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .saveOurNumber {
    padding: 60px 0;
  }

  .saveOurNumber__box {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }

  .saveOurNumber__title {
    font-size: clamp(28px, 6vw, 36px);
  }

  .saveOurNumber__subTitle {
    font-size: clamp(16px, 4vw, 20px);
  }

  .saveOurNumber__txt {
    font-size: clamp(13px, 3vw, 15px);
  }

  .saveOurNumber__ul li {
    padding: 16px 16px 16px 50px;
    font-size: clamp(13px, 3vw, 15px);
  }

  .saveOurNumber__ul li::before {
    width: 20px;
    height: 20px;
    left: 16px;
    font-size: 12px;
  }

  .saveOurNumber__dsc {
    font-size: clamp(14px, 3.5vw, 16px);
    text-align: center;
  }

  .cheap__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .saveOurNumber {
    padding: 40px 0;
  }

  .saveOurNumber__box {
    padding: 20px;
    gap: 20px;
  }

  .saveOurNumber__ul {
    gap: 12px;
  }

  .saveOurNumber__ul li {
    padding: 14px 14px 14px 45px;
  }

  .saveOurNumber__ul li::before {
    width: 18px;
    height: 18px;
    left: 14px;
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  .saveOurNumber {
    padding: 30px 0;
  }

  .saveOurNumber__box {
    padding: 10px;
    gap: 16px;
  }

  .saveOurNumber__ul li {
    padding: 12px 12px 12px 40px;
  }

  .saveOurNumber__ul li::before {
    width: 16px;
    height: 16px;
    left: 12px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .saveOurNumber__box {
    padding: 14px;
    gap: 14px;
  }

  .saveOurNumber__ul {
    gap: 10px;
  }
}

/* 13 */
.fast {
  background: #ffffff;
  padding-top: 20px;
}

.fast__left,
.fast__right {
  flex: 1;
  min-width: 320px;
}

.fast__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.fast__subTitle {
  color: #14b8a6;
  margin: 0 0 15px;
}

.fast__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

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

.fast__ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-weight: 500;
  color: #0f766e;
}

.fast__ul li::before {
  content: "🚗";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #00a86b;
}

@media (max-width: 768px) {
  .fast {
    padding: 60px 0;
  }

  .fast__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .fast__title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .fast__subTitle {
    font-size: clamp(16px, 5vw, 20px);
  }

  .fast__txt {
    font-size: clamp(14px, 4vw, 16px);
  }

  .fast__ul li {
    font-size: clamp(14px, 4vw, 16px);
    padding: 14px 18px 14px 45px;
  }

  .fast__ul li::before {
    width: 20px;
    height: 20px;
    left: 14px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .fast {
    padding: 40px 0;
  }

  .fast__box {
    gap: 25px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .fast__title {
    font-size: clamp(20px, 7vw, 24px);
    margin-bottom: 15px;
  }

  .fast__subTitle {
    font-size: clamp(16px, 6vw, 18px);
    margin-bottom: 12px;
  }

  .fast__txt {
    font-size: clamp(13px, 4.5vw, 15px);
    margin-bottom: 15px;
  }

  .fast__ul {
    gap: 10px;
  }

  .fast__ul li {
    font-size: clamp(13px, 4.5vw, 15px);
    padding: 12px 16px 12px 40px;
    border-radius: 10px;
  }

  .fast__ul li::before {
    width: 18px;
    height: 18px;
    left: 12px;
    font-size: 9px;
  }
}

@media (max-width: 375px) {
  .fast {
    padding: 30px 0;
  }

  .fast__box {
    gap: 20px;
    padding: 20px 10px;
  }

  .fast__title {
    font-size: clamp(18px, 8vw, 22px);
  }

  .fast__subTitle {
    font-size: clamp(15px, 7vw, 17px);
  }

  .fast__txt {
    font-size: clamp(12px, 5vw, 14px);
  }

  .fast__ul li {
    font-size: clamp(12px, 5vw, 14px);
    padding: 10px 14px 10px 35px;
  }

  .fast__ul li::before {
    width: 16px;
    height: 16px;
    left: 10px;
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .fast__box {
    padding: 18px 12px;
  }

  .fast__title {
    font-size: clamp(16px, 9vw, 20px);
  }

  .fast__subTitle {
    font-size: clamp(14px, 8vw, 16px);
  }

  .fast__txt {
    font-size: clamp(11px, 6vw, 13px);
  }

  .fast__ul li {
    font-size: clamp(11px, 6vw, 13px);
    padding: 8px 12px 8px 32px;
  }

  .fast__ul li::before {
    width: 14px;
    height: 14px;
    left: 8px;
    font-size: 7px;
  }
}

/* 14 */
.changeLock {
  background: #f8f9fa;
  padding: 60px 0;
}

.changeLock__right {
  flex: 1;
  min-width: 320px;
}

.changeLock__title {
  color: #0f766e;
}

.changeLock__subTitle {
  color: #14b8a6;
  margin: 25px 0 15px;
}

.changeLock__txt {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.changeLock__ul {
  list-style: none;
  padding-left: 0;
}

.changeLock__ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #0f766e;
  font-weight: 500;
}

.changeLock__ul li::before {
  content: "💧";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #00a86b;
}

.saveOurNumber__dsc {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f766e;
}

.cheap__btnWrpMargin {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .changeLock {
    padding: 60px 0;
  }

  .changeLock__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .changeLock__title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .changeLock__subTitle {
    font-size: clamp(16px, 5vw, 20px);
  }

  .changeLock__txt {
    font-size: clamp(14px, 4vw, 16px);
  }

  .changeLock__ul li {
    font-size: clamp(14px, 4vw, 16px);
    padding: 14px 18px 14px 45px;
  }

  .changeLock__ul li::before {
    width: 20px;
    height: 20px;
    left: 14px;
    font-size: 10px;
  }

  .cheap__btn {
    width: 100%;
    text-align: center;
  }

  .saveOurNumber__dsc {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .changeLock {
    padding: 40px 0;
  }

  .changeLock__box {
    gap: 25px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .changeLock__title {
    font-size: clamp(20px, 7vw, 24px);
    margin-bottom: 15px;
  }

  .changeLock__subTitle {
    font-size: clamp(16px, 6vw, 18px);
    margin-bottom: 12px;
  }

  .changeLock__txt {
    font-size: clamp(13px, 4.5vw, 15px);
    margin-bottom: 15px;
  }

  .changeLock__ul {
    gap: 10px;
  }

  .changeLock__ul li {
    font-size: clamp(13px, 4.5vw, 15px);
    padding: 12px 16px 12px 40px;
    border-radius: 10px;
  }

  .changeLock__ul li::before {
    width: 18px;
    height: 18px;
    left: 12px;
    font-size: 9px;
  }
}

@media (max-width: 375px) {
  .changeLock {
    padding: 30px 0;
  }

  .changeLock__box {
    gap: 20px;
    padding: 20px 10px;
  }

  .changeLock__title {
    font-size: clamp(18px, 8vw, 22px);
  }

  .changeLock__subTitle {
    font-size: clamp(15px, 7vw, 17px);
  }

  .changeLock__txt {
    font-size: clamp(12px, 5vw, 14px);
  }

  .changeLock__ul li {
    font-size: clamp(12px, 5vw, 14px);
    padding: 10px 14px 10px 35px;
  }

  .changeLock__ul li::before {
    width: 16px;
    height: 16px;
    left: 10px;
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .changeLock__box {
    padding: 18px 12px;
  }

  .changeLock__title {
    font-size: clamp(16px, 9vw, 20px);
  }

  .changeLock__subTitle {
    font-size: clamp(14px, 8vw, 16px);
  }

  .changeLock__txt {
    font-size: clamp(11px, 6vw, 13px);
  }

  .changeLock__ul li {
    font-size: clamp(11px, 6vw, 13px);
    padding: 8px 12px 8px 32px;
  }

  .changeLock__ul li::before {
    width: 14px;
    height: 14px;
    left: 8px;
    font-size: 7px;
  }
}

/* 15 */
.openingCar,
.openingASafe {
  background: #ffffff;
  padding: 30px 0;
}

/* Общие стили для блоков */
.openingCar__box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Картинка для openingCar */
.changeLock__imgWrp {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.changeLock__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Левая и правая часть */
.openingCar__right,
.openingASafe__left,
.openingASafe__right {
  flex: 1;
  min-width: 320px;
}

.openingCar__title,
.openingASafe__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.openingCar__subTitle,
.openingASafe__subTitle {
  color: #14b8a6;
  margin-bottom: 15px;
}

.openingCar__txt,
.openingASafe__txt {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.openingCar__ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.openingCar__ul li,
.openingASafe__ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: #0f766e;
  font-weight: 500;
}

.openingCar__ul li::before,
.openingASafe__ul li::before {
  content: "💧";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  color: #00a86b;
}

/* Кнопки */
.locksmith__btnWrp {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.locksmith__btnTel,
.locksmith__btnMessage {
  padding: 12px 24px 12px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.locksmith__btnTel {
  background: #ffd700;
  color: #0f766e;
}

.locksmith__btnTel:hover {
  background: #ffbf00;
}

.locksmith__btnMessage {
  background: #0f766e;
  color: #fff;
}

.locksmith__btnMessage:hover {
  background: #14b8a6;
}

@media (max-width: 768px) {
  .openingCar {
    padding: 60px 0;
  }

  .openingCar__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .openingCar__title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .openingCar__subTitle {
    font-size: clamp(16px, 5vw, 20px);
  }

  .openingCar__txt {
    font-size: clamp(14px, 4vw, 16px);
  }

  .openingCar__ul li {
    font-size: clamp(14px, 4vw, 16px);
    padding: 14px 18px 14px 45px;
  }

  .openingCar__ul li::before {
    width: 20px;
    height: 20px;
    left: 14px;
    font-size: 10px;
  }

  .openingASafe {
    padding: 60px 0;
  }

  .openingASafe__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .openingASafe__title {
    font-size: clamp(24px, 6vw, 28px);
  }

  .openingASafe__subTitle {
    font-size: clamp(16px, 5vw, 20px);
  }

  .openingASafe__txt {
    font-size: clamp(14px, 4vw, 16px);
  }

  .openingASafe__ul li {
    font-size: clamp(14px, 4vw, 16px);
    padding: 14px 18px 14px 45px;
  }

  .openingASafe__ul li::before {
    width: 20px;
    height: 20px;
    left: 14px;
    font-size: 10px;
  }

  .locksmith__btnWrp {
    justify-content: center;
  }

  .locksmith__btnTel,
  .locksmith__btnMessage {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .openingCar {
    padding: 40px 0;
  }

  .openingCar__box {
    gap: 25px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .openingCar__title {
    font-size: clamp(20px, 7vw, 24px);
    margin-bottom: 15px;
  }

  .openingASafe {
    padding: 40px 0;
  }

  .openingASafe__box {
    gap: 25px;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .openingASafe__title {
    font-size: clamp(20px, 7vw, 24px);
    margin-bottom: 15px;
  }

  .openingASafe__subTitle {
    font-size: clamp(16px, 6vw, 18px);
    margin-bottom: 12px;
  }

  .openingASafe__txt {
    font-size: clamp(13px, 4.5vw, 15px);
    margin-bottom: 15px;
  }

  .openingASafe__ul {
    gap: 10px;
  }

  .openingASafe__ul li {
    font-size: clamp(13px, 4.5vw, 15px);
    padding: 12px 16px 12px 40px;
    border-radius: 10px;
  }

  .openingASafe__ul li::before {
    width: 18px;
    height: 18px;
    left: 12px;
    font-size: 9px;
  }

  .openingCar__subTitle {
    font-size: clamp(16px, 6vw, 18px);
    margin-bottom: 12px;
  }

  .openingCar__txt {
    font-size: clamp(13px, 4.5vw, 15px);
    margin-bottom: 15px;
  }

  .openingCar__ul {
    gap: 10px;
  }

  .openingCar__ul li {
    font-size: clamp(13px, 4.5vw, 15px);
    padding: 12px 16px 12px 40px;
    border-radius: 10px;
  }

  .openingCar__ul li::before {
    width: 18px;
    height: 18px;
    left: 12px;
    font-size: 9px;
  }
}

@media (max-width: 375px) {
  .openingCar {
    padding: 30px 0;
  }

  .openingCar__box {
    gap: 20px;
    padding: 20px 10px;
  }

  .openingCar__title {
    font-size: clamp(18px, 8vw, 22px);
  }

  .openingCar__subTitle {
    font-size: clamp(15px, 7vw, 17px);
  }

  .openingCar__txt {
    font-size: clamp(12px, 5vw, 14px);
  }

  .openingCar__ul li {
    font-size: clamp(12px, 5vw, 14px);
    padding: 10px 14px 10px 35px;
  }

  .openingCar__ul li::before {
    width: 16px;
    height: 16px;
    left: 10px;
    font-size: 8px;
  }

  .openingASafe {
    padding: 30px 0;
  }

  .openingASafe__box {
    gap: 20px;
    padding: 20px 10px;
  }

  .openingASafe__title {
    font-size: clamp(18px, 8vw, 22px);
  }

  .openingASafe__subTitle {
    font-size: clamp(15px, 7vw, 17px);
  }

  .openingASafe__txt {
    font-size: clamp(12px, 5vw, 14px);
  }

  .openingASafe__ul li {
    font-size: clamp(12px, 5vw, 14px);
    padding: 10px 14px 10px 35px;
  }

  .openingASafe__ul li::before {
    width: 16px;
    height: 16px;
    left: 10px;
    font-size: 8px;
  }
}

@media (max-width: 360px) {
  .openingCar__box {
    padding: 18px 12px;
  }

  .openingCar__title {
    font-size: clamp(16px, 9vw, 20px);
  }

  .openingCar__subTitle {
    font-size: clamp(14px, 8vw, 16px);
  }

  .openingCar__txt {
    font-size: clamp(11px, 6vw, 13px);
  }

  .openingCar__ul li {
    font-size: clamp(11px, 6vw, 13px);
    padding: 8px 12px 8px 32px;
  }

  .openingCar__ul li::before {
    width: 14px;
    height: 14px;
    left: 8px;
    font-size: 7px;
  }

  .openingASafe__box {
    padding: 18px 12px;
  }

  .openingASafe__title {
    font-size: clamp(16px, 9vw, 20px);
  }

  .openingASafe__subTitle {
    font-size: clamp(14px, 8vw, 16px);
  }

  .openingASafe__txt {
    font-size: clamp(11px, 6vw, 13px);
  }

  .openingASafe__ul li {
    font-size: clamp(11px, 6vw, 13px);
    padding: 8px 12px 8px 32px;
  }

  .openingASafe__ul li::before {
    width: 14px;
    height: 14px;
    left: 8px;
    font-size: 7px;
  }
}

/* 16 */
.aboutUs {
  background: #ffffff;
}

.aboutUs__box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.aboutUs__left {
  flex: 1.5;
  min-width: 320px;
}

.aboutUs__imgWrp {
  flex: 1;
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.aboutUs__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.aboutUs__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.aboutUs__subTitle {
  color: #14b8a6;
  margin: 0;
}

.aboutUs__txt {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.aboutUs__ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.aboutUs__ul li {
  position: relative;
  margin-bottom: 12px;
  color: #0f766e;
  font-weight: 500;
  line-height: 20px;
}

/* 17 */
.faq {
  background: #f8f9fa;
  padding: 30px 0;
}

.faq__box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.faq__left,
.faq__right {
  flex: 1;
  min-width: 320px;
}

.faq__title {
  color: #0f766e;
  margin-bottom: 20px;
}

.faq__subTitle {
  color: #14b8a6;
  margin: 20px 0 10px;
}

.faq__txt {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.faq__txt strong {
  color: #0f766e;
}

@media (max-width: 768px) {

  .aboutUs,
  .faq,
  .forms,
  .advice,
  .reviews {
    padding: 60px 0;
  }

  .aboutUs__box,
  .faq__box,
  .forms__box,
  .advice__box,
  .reviews__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .aboutUs__title,
  .faq__title,
  .forms__title,
  .advice__title,
  .reviews__title {
    font-size: clamp(24px, 5vw, 28px);
  }

  .aboutUs__subTitle,
  .faq__subTitle,
  .advice__subTitle {
    font-size: clamp(16px, 4vw, 20px);
  }

  .faq__wrp,
  .advice__wrp {
    padding: 18px;
  }

  .forms__button {
    font-size: clamp(14px, 3vw, 16px);
    padding: 14px 28px;
  }

  .aboutUs__txt,
  .aboutUs__ul li,
  .faq__txt,
  .advice__txt,
  .reviews__txt {
    font-size: clamp(14px, 3vw, 16px);
  }

  .aboutUs__ul li::before {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

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

.aboutUs__imgWrp {
  margin-top: 20px;
}

.cheap__btn {
  width: 100%;
  text-align: center;
}

.faq__box {
  gap: 0;
}

.faq__left,
.faq__right {
  gap: 0px;
}


/* 18 */
.forms {
  background: #ffffff;
  padding: 0 0 20px;
}

.forms__title {
  color: #0f766e;
  margin-bottom: 30px;
  text-align: center;
}

.forms__box {
  max-width: 700px;
  margin: 0 auto;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #14b8a6;
  box-shadow: 0 0 4px rgba(0, 78, 102, 0.2);
}

.forms__button {
  background-color: #ffd700;
  border: none;
  color: #0f766e;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.forms__button:hover {
  background-color: #ffbf00;
  cursor: pointer;
}

#jq_success {
  margin-top: 20px;
  font-weight: 600;
  color: green;
  text-align: center;
}

/* 19 */
.footer-standorte {
  background-color: #0f766e;
  color: #ffffff;
  padding: 60px 0 40px;
  font-family: "Segoe UI", sans-serif;
}

.footer-standorte .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-standorte h2 {
  margin-bottom: 25px;
  color: #ffd700;
  font-weight: 600;
  text-align: center;
}

.standorte-liste {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  justify-content: center;
}

.standorte-liste li {
  text-align: center;
}

.standorte-liste a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.standorte-liste a:hover {
  background-color: #ffd700;
  color: #0f766e;
  font-weight: 600;
}

/* Стили для отзывов */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(236, 191, 77, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e6a400 0%, #f59e0b 50%, #d97706 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
}

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

.review-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e6a400;
}

.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.review-content p {
  margin: 0.5rem 0;
  line-height: 1.5;
  color: #444;
  background-color: #f5faff;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 10px;
}

.review-rating {
  font-size: 1.1rem;
  color: #e6a400;
}

.titleH1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #222;
  border-bottom: 2px solid #e6a400;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.pagination .btn,
.pagination .current {
  padding: 0.6em 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-decoration: none;
  background: white;
  color: #333;
  transition: background 0.3s;
}

.pagination .btn:hover {
  background: #e6a400;
  color: white;
}

.pagination .current {
  background: #e6a400;
  color: #fff;
  pointer-events: none;
}

.pagination .ellipsis {
  padding: 0.5em;
  color: #aaa;
}


.review-content h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #0f766e;
  font-weight: 600;
}

.review__wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.review-city {
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.2rem;
}

.review-service {
  display: inline-block;
  background: #e6a40022;
  color: #e59f00;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  margin: 0.5rem 0;
  width: fit-content;
}

.review-comment {
  margin: 0.5rem 0;
  line-height: 1.6;
  color: #444;
}

.review-meta {
  display: flex;
  justify-content: flex-end;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.8rem;
  align-items: center;
}

.review-meta .date {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.review-rating {
  font-size: 1.1rem;
  color: #e6a400;
  letter-spacing: 1px;
}

.write-review-button-wrp {
  text-align: right;
  margin-top: 1.5rem;
}

.write-review-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  background: linear-gradient(135deg, #e6a400 0%, #f59e0b 50%, #d97706 100%);
  color: #fff;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 164, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.write-review-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.write-review-button span::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.write-review-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d97706 0%, #e6a400 50%, #f59e0b 100%);
  box-shadow: 0 8px 20px rgba(230, 164, 0, 0.4), 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.write-review-button:hover::before {
  left: 100%;
}

.write-review-button:hover span::after {
  transform: translateX(3px);
}

/* Responsive styles for reviews block */
@media (max-width: 480px) {
  .reviews {
    padding: 40px 0;
  }

  .reviews__box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px;
    margin: 0 15px;
    border-radius: 20px;
  }

  .reviews__left {
    gap: 20px;
  }

  .reviews__title {
    font-size: clamp(24px, 6vw, 30px);
    text-align: center;
  }

  .reviews__txt {
    font-size: 15px;
    text-align: center;
  }

  .review-card {
    padding: 1.2rem;
    margin-bottom: 1.2rem;
  }

  .write-review-button {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }

  .write-review-button-wrp {
    text-align: center;
  }

  .aboutUs,
  .forms,
  .advice {
    padding: 50px 0;
  }

  .aboutUs__box,
  .forms__box,
  .advice__box {
    gap: 25px;
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 16px;
  }

  .aboutUs__title,
  .forms__title,
  .advice__title {
    font-size: clamp(22px, 6vw, 26px);
  }

  .aboutUs__subTitle,
  .advice__subTitle {
    font-size: clamp(16px, 4vw, 18px);
  }

  .forms__button {
    font-size: clamp(13px, 3vw, 15px);
    padding: 12px 24px;
  }

  .advice__wrp {
    padding: 16px;
  }

  .aboutUs__txt,
  .aboutUs__ul li,
  .advice__txt {
    font-size: clamp(13px, 3vw, 15px);
  }

  .aboutUs__ul li::before {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .faq {
    padding: 50px 0;
  }

  .faq__box {
    gap: 25px;
    padding: 25px 20px;
    margin: 0 15px;
    border-radius: 16px;
  }

  .faq__title {
    font-size: clamp(22px, 6vw, 26px);
  }

  .faq__subTitle {
    font-size: clamp(16px, 4vw, 18px);
  }

  .faq__txt {
    font-size: clamp(13px, 3vw, 15px);
  }

  .faq__wrp {
    padding: 16px;
  }
}

@media (max-width: 375px) {
  .reviews {
    padding: 35px 0;
  }

  .reviews__box {
    gap: 25px;
    padding: 25px 10px;
    margin: 0;
    border-radius: 16px;
  }

  .reviews__left {
    gap: 18px;
  }

  .reviews__title {
    font-size: clamp(22px, 6vw, 28px);
  }

  .reviews__txt {
    font-size: 14px;
    line-height: 1.5;
  }

  .review-card {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 12px;
  }

  .review-content h3 {
    font-size: 1rem;
  }

  .review-service {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
  }

  .review-comment {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .review-meta {
    font-size: 0.8rem;
  }

  .write-review-button {
    padding: 0.8rem 1.3rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }

  .aboutUs,
  .forms,
  .advice {
    padding: 40px 0;
  }

  .aboutUs__box,
  .forms__box,
  .advice__box {
    gap: 20px;
    padding: 20px 10px;
    margin: 0;
  }

  .aboutUs__title,
  .forms__title,
  .advice__title {
    font-size: clamp(20px, 6vw, 24px);
  }

  .aboutUs__subTitle,
  .advice__subTitle {
    font-size: clamp(15px, 4vw, 17px);
  }

  .forms__button {
    font-size: clamp(12px, 3vw, 14px);
    padding: 10px 20px;
  }

  .advice__wrp {
    padding: 14px;
  }

  .aboutUs__txt,
  .aboutUs__ul li,
  .advice__txt {
    font-size: clamp(12px, 3vw, 14px);
  }

  .aboutUs__ul li::before {
    width: 16px;
    height: 16px;
    font-size: 8px;
  }

  .faq {
    padding: 40px 0;
  }

  .faq__box {
    gap: 20px;
    padding: 20px 10px;
    margin: 0;
  }

  .faq__title {
    font-size: clamp(20px, 6vw, 24px);
  }

  .faq__subTitle {
    font-size: clamp(15px, 4vw, 17px);
  }

  .faq__txt {
    font-size: clamp(12px, 3vw, 14px);
  }

  .faq__wrp {
    padding: 15px;
  }
}

@media (max-width: 360px) {
  .reviews {
    padding: 30px 0;
  }

  .reviews__box {
    gap: 20px;
    padding: 20px 12px;
    margin: 0 8px;
  }

  .reviews__left {
    gap: 16px;
  }

  .reviews__title {
    font-size: clamp(20px, 6vw, 26px);
  }

  .reviews__txt {
    font-size: 13px;
  }

  .review-card {
    padding: 0.9rem;
    margin-bottom: 0.9rem;
  }

  .review-content h3 {
    font-size: 0.95rem;
  }

  .review-service {
    font-size: 0.8rem;
  }

  .review-comment {
    font-size: 0.85rem;
  }

  .write-review-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .aboutUs,
  .forms,
  .advice {
    padding: 35px 0;
  }

  .aboutUs__box,
  .forms__box,
  .advice__box {
    gap: 18px;
    padding: 18px 12px;
    margin: 0 8px;
  }

  .aboutUs__title,
  .forms__title,
  .advice__title {
    font-size: clamp(18px, 6vw, 22px);
  }

  .aboutUs__subTitle,
  .advice__subTitle {
    font-size: clamp(14px, 4vw, 16px);
  }

  .forms__button {
    font-size: clamp(11px, 3vw, 13px);
    padding: 8px 16px;
  }

  .advice__wrp {
    padding: 12px;
  }

  .aboutUs__txt,
  .aboutUs__ul li,
  .advice__txt {
    font-size: clamp(11px, 3vw, 13px);
  }

  .aboutUs__ul li::before {
    width: 14px;
    height: 14px;
    font-size: 7px;
  }

  .faq {
    padding: 35px 0;
  }

  .faq__box {
    gap: 18px;
    padding: 18px 12px;
    margin: 0 8px;
  }

  .faq__title {
    font-size: clamp(18px, 6vw, 22px);
  }

  .faq__subTitle {
    font-size: clamp(14px, 4vw, 16px);
  }

  .faq__txt {
    font-size: clamp(11px, 3vw, 13px);
  }

  .faq__wrp {
    padding: 14px;
  }
}

@media (max-width: 1024px) {
  .review-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .review-meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
  }

  .review-rating-bar progress {
    width: 120px;
  }
}




/* ----- */