:root {
  --brand: #144451;
  --accent: #f97341;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(16, 24, 40, .08);
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

section {
  scroll-margin-top: 84px
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px
}

.section {
  padding: 72px 0
}

.section-head {
  text-align: center;
  margin-bottom: 36px
}

.section-eyebrow {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  font-size: .8rem
}

.lede {
  color: var(--muted)
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  transition: .2s;
}

/* Smaller buttons on mobile */
@media (max-width: 576px) {
  .btn {
    padding: 8px 14px;
    font-size: 14px;
  }
}


.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent)
}

.btn-primary:hover {
  filter: brightness(.95);
  transform: translateY(-1px)
}

.btn-outline {
  background: #fff;
  color: var(--brand);
  border: 2px solid var(--brand)
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff
}

.btn-light {
  background: #fff;
  color: var(--brand);
  border: 2px solid #fff
}

.btn-soft {
  background: rgba(20, 68, 81, .08);
  color: var(--brand);
  border: 2px solid transparent
}

.btn-soft:hover {
  background: rgba(20, 68, 81, .14)
}

.btn-call {
  display: none
}

.w-100 {
  width: 100%
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 9px;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line)
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 14px 0 */
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit
}

.logo {
  /* height: 42px; */
  /* width: 42px; */
  border-radius: 12px;
  /* background: var(--brand); */
  color: #fff;
  display: grid;
  padding-left: 25px;
  place-content: center;
  font-weight: 800;
  /* box-shadow: var(--shadow) */
}

.brand-txt strong {
  display: block;
  color: var(--brand);
  line-height: 1
}

.brand-txt span {
  font-size: .8rem;
  color: var(--muted)
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 10px;
  border-radius: 10px
}

.nav-toggle:hover {
  background: #f1f5f9
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--brand);
  display: block;
  border-radius: 2px
}

/* Mobile menu closed by default; opened via .open */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 64px;
  right: 16px;
  left: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px
}

.nav-menu.open {
  display: block
}

.nav-menu li a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: rgba(20, 68, 81, .08);
  color: var(--brand)
}

.mobile-only {
  display: block
}

@media(min-width:900px) {
  .nav-toggle {
    display: none
  }

  .nav-menu {
    position: static;
    display: flex;
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 6px;
    padding: 0
  }

  .nav-menu.open {
    display: flex
  }

  .nav-menu li a {
    padding: 10px 12px;
    border-radius: 999px
  }

  .mobile-only {
    display: none
  }

  .btn-call {
    display: inline-flex
  }
}

.hero {
  margin-top: 72px
}

.carousel {
  position: relative
}

.carousel-track {
  position: relative;
  height: clamp(260px, 54vw, 560px);
  overflow: hidden
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-image: var(--bg)
}
.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* keeps text above image */
}


.slide .container {
  position: relative;
  color: #fff;
  z-index: 2
}

.slide::before {
  content: "";
  z-index: auto;
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 68, 81, .55), rgba(20, 68, 81, .25))
}

.slide h1 {
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  margin: 8px 0 10px
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .08em;
  font-size: .8rem
}

.slide p {
  color: #f8fafc;
  max-width: 56ch
}

.slide .cta-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.slide.is-active {
  opacity: 1
}

.align-right {
  display: flex;
  justify-content: flex-end
}

.ctrl {
  position: absolute;
  top: 85%;
  transform: translateY(-50%);
  height: 44px;
  width: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-content: center;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 1;

  
}

.prev {
  left: 14px
}

.next {
  right: 14px
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center
}

.dots button {
  height: 10px;
  width: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, .6);
  cursor: pointer
}

.dots button.is-active {
  background: #fff;
  width: 28px
}

.about {
  background: var(--bg-soft)
}

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

.about-text h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  margin: .2em 0 .5em
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  color: var(--ink)
}

.check-list li {
  margin: 8px 0
}

.about-contacts {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted)
}

.about-contacts i {
  color: var(--brand);
  margin-right: 6px
}

.about-collage {
  position: relative;
  height: 360px
}

.about-collage .img-a,
.about-collage .img-b {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about-collage .img-a {
  top: 0;
  left: 0;
  width: 62%;
  height: 68%
}

.about-collage .img-b {
  right: 0;
  bottom: 0;
  width: 58%;
  height: 62%;
  border: 6px solid #fff
}

.about-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

@media(min-width:900px) {
  .about-grid {
    grid-template-columns: 1.1fr .9fr
  }

  .about-collage {
    height: 420px
  }
}

.cards-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr
}

@media(min-width:720px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:992px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
  transition: transform .25s ease, box-shadow .25s ease
}

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

.card-media {
  aspect-ratio: 16/10;
  overflow: hidden
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.card:hover .card-media img {
  transform: scale(1.05)
}

.card-body {
  padding: 18px
}

.card-body h3 {
  margin: .2em 0 .4em;
  color: var(--brand)
}

.card-body p {
  color: var(--muted)
}

.card-cta {
  display: flex;
  gap: 10px;
  margin-top: 12px
}

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

@media(min-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.g-item {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition: transform .5s ease, filter .5s ease
}

.g-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 68, 81, .15), transparent 40%);
  opacity: 0;
  transition: .35s
}

.g-item:hover img {
  transform: scale(1.06);
  filter: contrast(1.05)
}

.g-item:hover::after {
  opacity: 1
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
  padding: 20px
}

.lightbox.show {
  display: flex
}

.lightbox img {
  max-width: 96vw;
  max-height: 86vh;
  border-radius: 12px;
  box-shadow: var(--shadow)
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-content: center;
  box-shadow: var(--shadow);
  cursor: pointer
}

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

@media(min-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr
  }
}

.info-list {
  list-style: none;
  margin: 14px 0;
  padding: 0
}

.info-list li {
  margin: 8px 0;
  color: var(--muted)
}

.info-list i {
  color: var(--brand);
  margin-right: 8px
}

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

.badge {
  background: rgba(20, 68, 81, .08);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand);
  font-weight: 600
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02)
}

.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr
}

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

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

.field.full {
  grid-column: 1/-1
}

label {
  font-weight: 600
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink)
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(20, 68, 81, .25);
  border-color: var(--brand)
}

.form-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 10px
}

.map-wrap {
  margin-top: 26px
}

.map-iframe {
  width: 100%;
  height: 360px;
  border: 0
}

@media(min-width:768px) {
  .map-iframe {
    height: 420px
  }
}

.site-footer {
  background: var(--brand);
  color: #e6f1f4;
  margin-top: 40px
}

.footer-grid {
  display: grid;
  gap: 24px;
  padding: 36px 10px;
  grid-template-columns: 1fr
}

@media(min-width:820px) {
  .footer-grid {
    grid-template-columns: 1.1fr .7fr .7fr 1fr
  }
}

.brand-foot .logo {
  background: #fff;
  color: var(--brand)
}

.f-text {
  color: #dbe7ea
}

.f-col h4 {
  margin: 0 0 12px
}

.f-links,
.f-contact {
  list-style: none;
  margin: 0;
  padding: 0
}

.f-links li,
.f-contact li {
  margin: 8px 0
}

.f-links a {
  color: #e6f1f4;
  text-decoration: none
}

.f-links a:hover {
  color: #fff;
  text-decoration: underline
}

.f-contact a {
  color: #fff;
  text-decoration: none
}

.f-contact i {
  margin-right: 8px;
  color: #fff
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 10px 0;
  background: #0f2d35
}

.foot-bar {
  display: flow-root;
  align-items: center;
  justify-content: space-between;
  color: #cfe2e6;
  gap: 10px;
  flex-wrap: wrap
}

.socials {
  display: flex;
  gap: 10px
}

.socials a {
  color: #fff;
  font-size: 1.1rem
}

.w-60{
  width: 60%;
}

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

.my-2{
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4{
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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



#callme {
    position: fixed;
    right: 15px;
    top: 190px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity:1;
    z-index: 9999;
}
#callme #callmeMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgb(207,8,8);
    width: 70px;
    height: 70px;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}
#callme #callmeMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}
@-webkit-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-moz-keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@keyframes zcwphone2 {
    0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
    50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
    100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
}
@-webkit-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-webkit-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@-moz-keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
@keyframes zcwmini2 {
    0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
    10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
    100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
}
