/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #333;
  line-height: 1.5;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: #4db4df; text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; line-height: 1.6; }
ul { list-style: none; margin: 0; padding: 0; }

/* ==========================================================================
   Header
   ========================================================================== */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 100;
}
header .wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}
header section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}
#main-logo img {
  height: 60px;
  width: auto;
}
#main-menu {
  justify-self: center;
}
#main-menu ul.menu {
  display: flex;
  align-items: center;
  gap: 25px;
}
#main-menu ul.menu > li > a {
  color: #333;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
  padding: 8px 0;
  display: inline-block;
}
#main-menu ul.menu > li > a:hover { color: #4db4df; text-decoration: none; }
#main-menu ul.menu > li.current-menu-item > a { color: #4db4df; }
#main-menu ul.menu > li { position: relative; }
#main-menu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 8px 0;
  border: 1px solid #eee;
  border-top: 3px solid #4db4df;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  display: none;
  z-index: 200;
}
#main-menu ul.menu > li:hover > ul.sub-menu { display: block; }
#main-menu ul.sub-menu li a {
  display: block;
  padding: 8px 16px;
  color: #333;
  font-size: 0.9rem;
}
#main-menu ul.sub-menu li a:hover { background: #f2f3f5; color: #4db4df; text-decoration: none; }
#main-menu .mobile-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.8rem;
  color: #4db4df;
  cursor: pointer;
}
#request a.btn {
  background: #4db4df;
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.9rem;
  display: inline-block;
  letter-spacing: 0.5px;
}
#request a.btn:hover { background: #369cc7; text-decoration: none; }

/* ==========================================================================
   Hero banner
   ========================================================================== */
section.theme_banner {
  padding: 180px 0 130px;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}
section.theme_banner .container {
  padding: 100px 0 150px;
  color: #fff;
  text-align: center;
}
section.theme_banner .line1 { font-size: 5rem; line-height: 1.1; }
section.theme_banner .line2 { font-size: 3.5rem; line-height: 1.2; }
section.theme_banner a.btn {
  display: inline-block;
  margin-top: 30px;
  font-size: 1.5rem;
  border-radius: 40px;
  border: 4px solid #fff;
  background: transparent;
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
section.theme_banner a.btn:hover {
  text-decoration: none;
  background: #fff;
  color: #4db4df;
}

/* ==========================================================================
   Blue tag bar
   ========================================================================== */
section.theme_tag {
  background: #4db4df;
  color: #fff;
}
section.theme_tag .container {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
section.theme_tag .block {
  font-size: 3rem;
  padding: 40px 0;
  text-align: center;
}
section.theme_tag .block strong { display: inline-block; margin-left: 10px; }

/* ==========================================================================
   Intro rows (Kadence-style)
   ========================================================================== */
.kb-row-layout-wrap { width: 100%; }
.intro-1 .kt-row-column-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6.5rem 1rem 1.5rem;
}
.intro-heading {
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  color: #222;
  margin: 0 0 20px;
  line-height: 1.15;
}
.intro-sub {
  text-align: center;
  font-size: 24px;
  padding-bottom: 1rem;
  color: #333;
  margin: 0;
}
.intro-body {
  text-align: center;
  font-size: 24px;
  color: #333;
  margin: 0;
}

.kb-block-spacer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.kb-block-spacer .kt-divider {
  border: 0;
  border-top: 3px solid #f3f3f3;
  width: 80%;
  margin: 0 auto;
}

.intro-2 .kt-row-column-wrap.two-col {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem 6.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-heading {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 24px;
  padding: 1.5rem 0;
  line-height: 1.1;
}
.cta-body {
  text-align: center;
  font-size: 1.25rem;
  line-height: 25px;
  color: #333;
  margin: 0;
}
.col-right {
  background: #f2f3f5;
  border: 5px solid transparent;
  border-radius: 5px;
  padding: 5rem 3rem;
  text-align: center;
}
.phone-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}
.phone-link { display: block; text-decoration: none; }
.phone-link:hover { text-decoration: none; }
.phone-number {
  text-align: center;
  font-size: 3rem;
  color: #4db4df;
  padding-top: 1.5rem;
  margin: 0;
  font-weight: 700;
}

/* ==========================================================================
   Services grid
   ========================================================================== */
section.theme_services {
  background: #F2F3F5;
  padding: 130px 0;
}
section.theme_services .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 348px));
  gap: 40px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section.theme_services .block {
  text-align: center;
  width: 100%;
  max-width: 348px;
}
section.theme_services .block img { width: 100%; height: auto; display: block; }
section.theme_services .block div {
  color: #fff;
  background: #4db4df;
  padding: 20px 0;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}
section.theme_services .block div a { color: #fff; }
section.theme_services .block div a:hover { text-decoration: none; opacity: 0.9; }

/* ==========================================================================
   Advantages / About section
   ========================================================================== */
section.theme_about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
section.theme_about #block-left {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  background-color: #4db4df;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 60px 30px;
}
section.theme_about #block-left div.text p {
  font-size: 3rem;
  text-align: center;
  color: #fff;
  line-height: normal;
  margin: 0;
}
section.theme_about #block-left div.text p strong {
  font-size: 3.25rem;
  font-weight: bold;
  padding: 10px 0;
  color: #fff;
  display: inline-block;
}
section.theme_about #block-left a.btn {
  display: inline-block;
  margin-top: 30px;
  padding: 10px 30px;
  color: #fff;
  border: 4px solid #fff;
  border-radius: 40px;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
}
section.theme_about #block-left a.btn:hover {
  background: #fff;
  color: #4db4df;
  text-decoration: none;
}
section.theme_about #block-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  place-items: start;
  padding: 30px;
}
section.theme_about #block-right div.block {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: start;
  gap: 20px;
}
section.theme_about #block-right div.block img { width: 40px; height: auto; }
section.theme_about #block-right div.block div strong {
  display: inline-block;
  font-size: 1.5rem;
  padding: 0 0 15px 0;
  text-transform: uppercase;
  color: #222;
}
section.theme_about #block-right div.block div p {
  font-size: 1.25rem;
  margin: 0;
  color: #444;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer { background: #fff; }
#footer_top {
  padding: 60px 0 40px;
  border-top: 1px solid #eee;
}
#footer_top .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
#footer_top .heading {
  color: #4db4df;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
#footer_top ul.menu li { padding: 6px 0; }
#footer_top ul.menu li a { color: #666; font-size: 0.95rem; }
#footer_top ul.menu li a:hover { color: #4db4df; text-decoration: none; }

#footer_bottom {
  padding: 30px 0;
  border-top: 1px solid #eee;
}
#footer_bottom .wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
#footer-logo img {
  height: 50px;
  width: auto;
  display: inline-block;
  margin: 0 auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1200px) {
  #main-menu ul.menu { gap: 15px; }
  #main-menu ul.menu > li > a { font-size: 0.85rem; }
}

@media (max-width: 1100px) {
  section.theme_services { padding: 60px 0; }
  section.theme_services .container { gap: 20px; }
  section.theme_services .block div { font-size: 0.85rem; }
}

@media (max-width: 1024px) {
  header section {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
  }
  #main-menu { justify-self: end; order: 3; }
  #request { order: 2; }
  #main-menu .mobile-toggle { display: inline-block; }
  #main-menu .menu-main-menu-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 15px 20px;
  }
  #main-menu .menu-main-menu-container.open { display: block; }
  #main-menu ul.menu { flex-direction: column; align-items: stretch; gap: 0; }
  #main-menu ul.menu > li { border-bottom: 1px solid #eee; }
  #main-menu ul.menu > li > a { padding: 12px 0; display: block; }
  #main-menu ul.sub-menu {
    position: static;
    box-shadow: none;
    border: 0;
    padding: 0 0 10px 15px;
    display: block;
  }
  .intro-2 .kt-row-column-wrap.two-col { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 950px) {
  section.theme_banner { padding: 50px 0; }
  section.theme_banner .container { padding: 100px 0 30px; }
  section.theme_banner .line1,
  section.theme_banner .line2 { font-size: 3rem; }
  section.theme_tag .block { font-size: 1.5rem; padding: 30px 0; }
  section.theme_about { padding: 0; }
  section.theme_services { padding: 40px 0; }
  section.theme_services .container { grid-template-columns: 1fr 1fr; }
  section.theme_services .block div { font-size: 1rem; }
  .intro-heading { font-size: 2.5rem; }
  .cta-heading { font-size: 2.5rem; }
}

@media (max-width: 900px) {
  section.theme_about .container { grid-template-columns: 1fr; }
  section.theme_about #block-left { padding: 25px 15px; }
}

@media (max-width: 800px) {
  section.theme_banner { padding: 30px 0; }
  #footer_top .wrapper { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .intro-heading { font-size: 2rem; padding: 0 1rem; }
  .intro-sub, .intro-body { font-size: 1.1rem; }
  .cta-heading { font-size: 2rem; }
  .phone-number { font-size: 2rem; }
  .phone-heading { font-size: 1.25rem; }
  .col-right { padding: 2rem 1.5rem; }
  section.theme_about #block-right div.block { grid-template-columns: 45px 1fr; gap: 15px; }
  section.theme_about #block-right div.block img { width: 32px; }
  section.theme_about #block-right div.block div strong { font-size: 1.25rem; }
  section.theme_about #block-right div.block div p { font-size: 1rem; }
  section.theme_about #block-left a.btn { padding: 10px 30px; font-size: 1rem; }
}

@media (max-width: 630px) {
  section.theme_banner { padding: 50px 0; }
  section.theme_banner .line1,
  section.theme_banner .line2 { font-size: 2rem; }
  #footer_top .wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 550px) {
  section.theme_tag .block { font-size: 1rem; padding: 20px 0; }
  section.theme_about #block-left div.text p { font-size: 2rem; }
  section.theme_about #block-left div.text p strong { font-size: 2.25rem; }
}

@media (max-width: 500px) {
  section.theme_services .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section.theme_banner a.btn { font-size: 1rem; padding: 10px 20px; }
}

@media (max-width: 430px) {
  section.theme_banner { padding: 50px 15px; }
  section.theme_tag .block { font-size: 0.85rem; padding: 20px 0; }
}

/* ==========================================================================
   Sub-page templates
   ========================================================================== */
section.subpage_banner {
  padding: 100px 0 80px;
  position: relative;
}
section.subpage_banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 90, 0.55);
}
section.subpage_banner .container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}
section.subpage_banner .page-title {
  font-size: 4rem;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
section.subpage_banner .page-subtitle {
  font-size: 1.4rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
section.subpage_banner a.btn {
  display: inline-block;
  margin-top: 15px;
  font-size: 1.1rem;
  border-radius: 40px;
  border: 3px solid #fff;
  background: transparent;
  padding: 14px 32px;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}
section.subpage_banner a.btn:hover {
  background: #fff;
  color: #4db4df;
  text-decoration: none;
}

section.page-content {
  padding: 80px 0;
  background: #fff;
}
section.page-content .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
section.page-content h2 {
  font-size: 2.25rem;
  color: #222;
  margin: 40px 0 20px;
  font-weight: 700;
  line-height: 1.2;
}
section.page-content h2:first-child { margin-top: 0; }
section.page-content h3 {
  font-size: 1.5rem;
  color: #4db4df;
  margin: 30px 0 15px;
  font-weight: 700;
}
section.page-content h4 {
  font-size: 1.2rem;
  color: #333;
  margin: 24px 0 10px;
  font-weight: 700;
}
section.page-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 1.2em;
}
section.page-content p.center,
section.page-content h2.center,
section.page-content h3.center { text-align: center; }
section.page-content ul,
section.page-content ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
  list-style-position: outside;
}
section.page-content ul { list-style: disc; }
section.page-content ol { list-style: decimal; }
section.page-content ul li,
section.page-content ol li {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  margin: 0 0 0.5em;
  padding-left: 6px;
}
section.page-content blockquote {
  border-left: 4px solid #4db4df;
  padding: 10px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #555;
  background: #f8fafb;
}
section.page-content a { color: #4db4df; text-decoration: underline; }
section.page-content a:hover { color: #369cc7; }
section.page-content svg,
section.page-content img { max-width: 20px; max-height: 20px; vertical-align: middle; margin-right: 6px; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-top: 0; }
.contact-form { display: grid; gap: 15px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #333;
  font-weight: 600;
  gap: 6px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid #ccd3d8;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  background: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #4db4df;
  border-color: #4db4df;
}
.contact-form button.btn {
  background: #4db4df;
  color: #fff;
  border: 0;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  justify-self: start;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contact-form button.btn:hover { background: #369cc7; }

@media (max-width: 900px) {
  section.subpage_banner .page-title { font-size: 2.5rem; }
  section.subpage_banner .page-subtitle { font-size: 1.15rem; }
  section.page-content h2 { font-size: 1.75rem; }
  section.page-content { padding: 50px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 500px) {
  section.subpage_banner .page-title { font-size: 2rem; }
  section.page-content h2 { font-size: 1.5rem; }
  section.page-content p,
  section.page-content li { font-size: 1rem; }
}
