

@charset "UTF-8";

/* ===== Reset (desktop) ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

/* ===== Header ===== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;

  flex-wrap: nowrap;
}

/* ===== Brand (left) ===== */
.brand {
  display: inline-block;
  text-decoration: none;
  color: #111;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-title {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 5px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.78;
}

/* ===== Navigation (center) ===== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  flex: 1;
  min-width: 420px;
  white-space: nowrap;
}

.nav-link {
  text-decoration: none;
  color: #111;

  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.7px;
  text-transform: uppercase;

  padding: 10px 8px;
  border-radius: 8px;

  transition: background 0.15s ease, opacity 0.15s ease;
}

.nav-link:hover { background: rgba(0, 0, 0, 0.05); }

/* ===== Contacts (right) ===== */
.header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;

  min-width: 320px;
  white-space: nowrap;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: #111;

  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;

  transition: opacity 0.15s ease;
}

.contact-item:hover { opacity: 0.85; }

.contact-icon {
  width: 22px;
  display: inline-flex;
  justify-content: center;
  font-size: 18px;
}

.contact-phone {
  font-size: 21px;
  font-weight: 900;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 89.22vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../Images/mainpagespicture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 0 20px;
  color: #fff;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5.2vw, 78px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.08;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;

  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  user-select: none;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); opacity: 0.96; }

.btn-primary {
  background: #ffffff;
  color: #111111;
  border: 2px solid #ffffff;
}

.btn-primary:hover { background: rgba(255,255,255,0.92); }

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.85);
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

/* Dark outline buttons (IMPORTANT: black border visible) */
.btn-outline-dark {
  background: transparent;
  color: #111;
  border: 2px solid #111;
  box-shadow: none;
}

.btn-outline-dark:hover {
  background: #111;
  color: #fff;
}

/* Scroll down */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);

  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
  display: grid;
  place-items: center;

  z-index: 1;
  opacity: 0.9;
  text-decoration: none;
}

.hero-scroll:hover { opacity: 1; }

.hero-scroll span {
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.85);
  border-bottom: 2px solid rgba(255,255,255,0.85);
  transform: rotate(45deg);
  margin-top: -4px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 72px 0 72px;
  background: #fff;
}

.about-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.about-top {
  text-align: center;
  margin-bottom: 34px;
}

.about-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.70);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-title {
  margin: 0 0 10px;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.06;
}

.about-subtitle {
  margin: 0;
  font-size: 18px;
  color: rgba(0,0,0,0.70);
  line-height: 1.45;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  background: #f3f3f3;
}

.about-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.about-content {
  padding-right: 8px;
}

.about-text {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.about-list li {
  position: relative;
  padding-left: 34px;
  margin: 10px 0;
  font-size: 17px;
  font-weight: 800;
  color: rgba(0,0,0,0.78);
}

.about-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(0,0,0,0.06);
  color: #111;
  font-weight: 900;
}

.about-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== SERVICES BANNER (Card with rounded corners + PERFECT centered text) ===== */
.services-banner {
  padding: 28px 0 44px;
  background: #fff;
}

.services-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.services-banner-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  /* ВЫСОТА КАРТОЧКИ (можешь смело менять) */
  min-height: 560px;

  border-radius: 22px;
  overflow: hidden;

  text-decoration: none;
  color: #fff;

  background-image: url("../Images/aboutussection2.JPG");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.services-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  transition: background 0.18s ease;
}

/* Ключевая правка: делаем контент flex-колонкой и центруем ИДЕАЛЬНО */
.services-banner-content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 980px;

  padding: 28px 28px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-banner-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);

  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;

  margin: 0 0 14px;
}

.services-banner-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.services-banner-sub {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.services-banner-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.20);
}

.services-banner-link:hover .services-banner-overlay {
  background: rgba(0,0,0,0.38);
}

/* ===== WHY TRUST US (REDESIGN: cleaner + premium + fixed icons) ===== */
.trust{
  padding: 96px 0;
  background:
    radial-gradient(900px 240px at 50% 0%, rgba(0,0,0,0.06), rgba(0,0,0,0) 62%),
    #fff;
}

.trust-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.trust-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 34px;
}

.trust-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color:#111;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.trust-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 44px);
  color:#111;
}

.trust-subtitle{
  margin: 0 auto;
  color: rgba(0,0,0,0.70);
  font-size: 18px;
  line-height: 1.55;
  max-width: 860px;
}

/* тонкая линия под подзаголовком (добавляет “дорогой” рельеф) */
.trust-divider{
  width: 110px;
  height: 3px;
  border-radius: 999px;
  background: rgba(0,0,0,0.10);
  margin: 22px auto 0;
}

.trust-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

/* Карточка стала “премиум”: мягкий фон + сильнее тень + правильные отступы */
.trust-card{
  position: relative;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;

  /* ВАЖНО: большой отступ слева под иконку, чтобы ничего не перекрывалось */
  padding: 26px 26px 22px 78px;

  box-shadow: 0 14px 40px rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.trust-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.14);
}

/* ИКОНКА: фиксируем размер, позицию и делаем как аккуратный “badge” */
.trust-card::before{
  content:"✓";
  position:absolute;
  left: 24px;
  top: 24px;

  width: 40px;
  height: 40px;
  border-radius: 999px;

  display:grid;
  place-items:center;

  background: #111;         /* черный круг */
  color: #fff;              /* белая галочка */

  font-weight: 900;
  font-size: 16px;
  line-height: 1;

  box-shadow: 0 10px 26px rgba(0,0,0,0.18);
}

.trust-card h3{
  margin: 2px 0 10px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 15px;
  color:#111;
}

.trust-card p{
  margin: 0;
  color: rgba(0,0,0,0.72);
  line-height: 1.65;
  font-size: 15.5px;
}


/* ===== REQUEST A QUOTE (Application Form) ===== */
.quote{
  background:#fff;
  padding: 90px 0;
}

.quote-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.quote-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 28px;
}

.quote-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color:#111;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.quote-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 44px);
  color:#111;
}

.quote-subtitle{
  margin: 0;
  color: rgba(0,0,0,0.70);
  font-size: 18px;
  line-height: 1.55;
}

.quote-card{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  padding: 26px;
}

.quote-form{
  margin: 0;
}

.quote-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
}

.field-wide{
  grid-column: 1 / -1;
}

.field label{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.72);
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(0,0,0,0.02);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  outline: none;

  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.field textarea{
  min-height: 150px;
  resize: vertical;
  line-height: 1.55;
  font-weight: 700;
}

.field input::placeholder,
.field textarea::placeholder{
  color: rgba(0,0,0,0.40);
  font-weight: 700;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(0,0,0,0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

/* Submit button variant (matches your style) */
.btn-solid-dark{
  background: #111;
  color: #fff;
  border: 2px solid #111;
}

.btn-solid-dark:hover{
  background: rgba(17,17,17,0.92);
}

.quote-actions{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.quote-note{
  color: rgba(0,0,0,0.62);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}


/* ===== REQUEST FORM ===== */
.quote{
  background:#fff;
  padding: 90px 0;
}

.quote-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.quote-head{
  text-align:center;
  max-width: 920px;
  margin: 0 auto 26px;
}

.quote-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color:#111;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.quote-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: clamp(28px, 3.2vw, 44px);
  color:#111;
}

.quote-subtitle{
  margin: 0;
  color: rgba(0,0,0,0.70);
  font-size: 18px;
  line-height: 1.55;
}

.quote-card{
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
  padding: 26px;
}

.quote-form{
  margin: 0;
}

.quote-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.field-wide{
  grid-column: 1 / -1;
}

.field label{
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(0,0,0,0.82);
}

.field input,
.field select,
.field textarea{
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15.5px;
  outline: none;
  background: #fff;
  color: #111;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(0,0,0,0.45);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.quote-submit{
  margin-top: 14px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid #111;
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

.quote-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.quote-submit:active{
  transform: translateY(0);
  opacity: .96;
}

.quote-note{
  margin-top: 14px;
  text-align: center;
  color: rgba(0,0,0,0.65);
  font-size: 14px;
  line-height: 1.45;
}

/* honeypot */
.hp-field{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}


/* ===== FOOTER ===== */
.site-footer{
  background: #0f0f0f;
  color: rgba(255,255,255,0.88);
  padding-top: 72px;
}

.footer-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px 56px;

  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 26px;
}

.footer-logo-top{
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
}

.footer-logo-bottom{
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

.footer-title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
}

.footer-text{
  margin: 14px 0 16px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  font-size: 14.5px;
}

.footer-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.footer-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);

  color: rgba(255,255,255,0.88);
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 11px;
}

.footer-link{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: rgba(255,255,255,0.86);

  padding: 10px 10px;
  border-radius: 12px;

  transition: background .15s ease, transform .15s ease, opacity .15s ease;
}

.footer-link:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.footer-ico{
  width: 32px;
  height: 32px;
  border-radius: 999px;

  display: inline-grid;
  place-items: center;

  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;

  font-weight: 900;
  font-size: 13px;
}

.footer-ico-wa{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  letter-spacing: .6px;
}

.footer-mini{
  margin-top: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  line-height: 1.5;
}

.footer-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;

  border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.85);
  color: #fff;
  text-decoration: none;

  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12.5px;

  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.footer-cta:hover{
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
  background: #0b0b0b;
}

.footer-bottom-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  color: rgba(255,255,255,0.60);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom-right{
  color: rgba(255,255,255,0.60);
}


/* ===== ABOUT PAGE (Fresh / Modern) ===== */
.aboutpage{
  padding: 86px 0 96px;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(0,0,0,0.06), transparent 60%),
    radial-gradient(700px 360px at 85% 20%, rgba(0,0,0,0.05), transparent 55%),
    #ffffff;
}

.aboutpage-inner{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 26px;
}

.aboutpage-head{
  text-align: center;
  margin-bottom: 26px;
}

.aboutpage-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.78);
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.aboutpage-title{
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  line-height: 1.05;
  font-size: clamp(30px, 3.9vw, 56px);
  color: #111;
}

.aboutpage-subtitle{
  margin: 0 auto;
  max-width: 860px;
  color: rgba(0,0,0,0.70);
  font-size: 18px;
  line-height: 1.7;
}

.aboutpage-card{
  margin-top: 26px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.82));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.85);
  overflow: hidden;
}

.aboutpage-card-inner{
  padding: 26px 28px;
  color: rgba(0,0,0,0.78);
  font-size: 17px;
  line-height: 1.85;
}

.aboutpage-card-inner p{
  margin: 0 0 14px;
}

.aboutpage-strong{
  margin-top: 8px;
  font-weight: 900;
  color: rgba(0,0,0,0.86);
}

/* ===== PORTFOLIO CTA (Fresh Card Button) ===== */
.portfolio-cta{
  margin-top: 28px;
}

.portfolio-cta-link{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  min-height: 210px;
  border-radius: 22px;
  overflow: hidden;

  text-decoration: none;
  color: #fff;

  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
  border: 1px solid rgba(0,0,0,0.10);
}

.portfolio-cta-bg{
  position: absolute;
  inset: 0;
  background-image: url("../Images/aboutussection2.JPG");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.portfolio-cta-glow{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 220px at 50% 30%, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(0deg, rgba(0,0,0,0.62), rgba(0,0,0,0.34));
  transition: opacity 0.18s ease;
}

.portfolio-cta-content{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 26px 26px;
}

.portfolio-cta-kicker{
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-cta-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 48px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.portfolio-cta-sub{
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.portfolio-cta-arrow{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 900;
  font-size: 18px;
  z-index: 1;
}

.portfolio-cta-link:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.20);
}

.portfolio-cta-link:hover .portfolio-cta-glow{
  opacity: 0.92;
}



/* =========================
   SERVICES PAGE
========================= */
.services-page{
  background: #fff;
  padding: 68px 0 90px;
}

.services-page-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.services-page-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 34px;
}

.services-page-kicker{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.70);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-page-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: clamp(32px, 3.6vw, 54px);
  color: #111;
  line-height: 1.05;
}

.services-page-subtitle{
  margin: 0;
  color: rgba(0,0,0,0.70);
  font-size: 18px;
  line-height: 1.55;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.service-card{
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.service-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.16);
}

.service-title{
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  font-size: 16px;
  color: #111;
}

.service-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li{
  position: relative;
  padding-left: 34px;
  margin: 10px 0;
  color: rgba(0,0,0,0.78);
  line-height: 1.55;
  font-size: 15.5px;
  font-weight: 700;
}

.service-list li::before{
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0,0,0,0.06);
  color: #111;
  font-weight: 900;
  font-size: 14px;
}

/* CTA card */
.services-cta-card{
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  text-decoration: none;
  color: #111;

  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.10);
  background: linear-gradient(180deg, rgba(0,0,0,0.03), rgba(0,0,0,0.00));
  padding: 22px 22px;

  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.services-cta-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.16);
}

.services-cta-kicker{
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: rgba(0,0,0,0.70);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.services-cta-title{
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 6px;
}

.services-cta-sub{
  color: rgba(0,0,0,0.70);
  line-height: 1.55;
  font-size: 15.5px;
  font-weight: 700;
}

.services-cta-right{
  flex: 0 0 auto;
}

.services-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  border: 2px solid #111;
  background: transparent;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.services-cta-card:hover .services-cta-btn{
  background: #111;
  color: #fff;
}

/* simple desktop safety */
@media (max-width: 920px){
  .services-grid{ grid-template-columns: 1fr; }
  .services-cta-card{ flex-direction: column; align-items: flex-start; }
}


/* ===== PORTFOLIO PAGE (NEW) ===== */
.nav-link-active{
  background: rgba(0,0,0,0.06);
}

/* hero */
.portfolio-hero{
  position: relative;
  width: 100%;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../Images/mainpagespicture.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.portfolio-hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.portfolio-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 0 26px;
  color: #fff;
}

.portfolio-hero-kicker{
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.portfolio-hero-title{
  margin: 0 0 12px;
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.portfolio-hero-subtitle{
  margin: 0 auto 18px;
  max-width: 860px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  text-shadow: 0 10px 26px rgba(0,0,0,0.35);
}

.portfolio-hero-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* sections */
.portfolio-section{
  padding: 78px 0;
  background: #fff;
}

.portfolio-section-alt{
  background: #fafafa;
}

.portfolio-inner{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 26px;
}

.portfolio-head{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 30px;
}

.portfolio-kicker{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: #111;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.portfolio-title{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 46px);
  color: #111;
  line-height: 1.1;
}

.portfolio-subtitle{
  margin: 0;
  color: rgba(0,0,0,0.70);
  font-size: 18px;
  line-height: 1.55;
}

/* grid gallery */
.portfolio-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.portfolio-card{
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 16px;
}

.portfolio-thumb{
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  transform: translateY(0);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.portfolio-thumb img{
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  transform: scale(1);
  transition: transform .25s ease;
}

.portfolio-card:hover .portfolio-thumb{
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.10);
  border-color: rgba(0,0,0,0.14);
}

.portfolio-card:hover img{
  transform: scale(1.03);
}

/* lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 9999;
}

.lightbox.open{
  display: flex;
}

.lightbox-img{
  max-width: 96vw;
  max-height: 86vh;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
  background: #111;
}

.lightbox-close{
  position: absolute;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform .14s ease, opacity .14s ease, background .14s ease;
}

.lightbox-close:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.16);
}

/* responsive (safe minimal) */
@media (max-width: 1100px){
  .portfolio-grid{ grid-template-columns: repeat(3, 1fr); }
  .portfolio-thumb img{ height: 230px; }
}

@media (max-width: 780px){
  .portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
  .portfolio-thumb img{ height: 220px; }
}

@media (max-width: 480px){
  .portfolio-grid{ grid-template-columns: 1fr; }
  .portfolio-thumb img{ height: 240px; }
}


#quote{
  scroll-margin-top: 110px; /* подстрой если хедер выше/ниже */
}

/* ===== Quote form status (AJAX) ===== */
.quote-status{
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.35;
  min-height: 18px;
}
.quote-status.ok{ color: #1c7c3e; }
.quote-status.err{ color: #b42318; }
.quote-form.is-loading .quote-submit{
  opacity: .7;
  pointer-events: none;
}
