:root {
  --mt-blue: #126bff;
  --mt-blue-dark: #0754d6;
  --mt-blue-soft: #eaf2ff;
  --mt-sky: #38bdf8;
  --mt-navy: #071a33;
  --mt-navy-soft: #102b4e;
  --mt-text: #0b1f33;
  --mt-muted: #5d728a;
  --mt-surface: #fff;
  --mt-bg: #f4f8fc;
  --mt-border: #dce7f2;
  --mt-container: 1280px;
  --mt-radius-sm: 10px;
  --mt-radius: 16px;
  --mt-radius-lg: 24px;
  --mt-section: clamp(72px, 9vw, 120px);
  --theme-color: var(--mt-blue);
  --theme-color-2: var(--mt-sky);
  --title-color: var(--mt-text);
  --body-color: var(--mt-muted);
  --smoke-color: var(--mt-bg);
  --title-font: "Manrope", sans-serif;
  --body-font: "Inter", sans-serif;
  --main-container: var(--mt-container);
  --section-space: var(--mt-section);
  --section-space-mobile: 72px;
}

html {
  scroll-padding-top: 104px;
}

body {
  background: var(--mt-surface);
  color: var(--mt-muted);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
}

body::selection {
  color: #fff;
  background: var(--mt-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--mt-text);
  font-family: var(--title-font);
  letter-spacing: -0.03em;
}

p {
  color: var(--mt-muted);
}

a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.55) !important;
  outline-offset: 3px;
}

.container,
.th-container {
  max-width: var(--mt-container) !important;
  padding-left: clamp(20px, 4vw, 36px) !important;
  padding-right: clamp(20px, 4vw, 36px) !important;
}

.bg-smoke {
  background: var(--mt-bg) !important;
}

.space,
.space-top {
  padding-top: var(--mt-section);
}

.space,
.space-bottom {
  padding-bottom: var(--mt-section);
}

.SolMenu {
  display: none !important;
}

/* Header */
.th-header.header-layout6 {
  position: relative;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
}

.header-layout6 .header-top {
  padding: 9px 0;
  background: var(--mt-navy);
  border: 0;
}

.header-layout6 .header-links ul,
.header-layout6 .header-social {
  gap: 18px;
}

.header-layout6 .header-links li,
.header-layout6 .header-links a,
.header-layout6 .header-social .social-title {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 550;
}

.header-layout6 .header-links i {
  color: var(--mt-sky);
}

.header-layout6 .header-links a:hover {
  color: #fff;
}

.header-layout6 .header-social a {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin: 0 0 0 5px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 50%;
}

.header-layout6 .header-social a:hover {
  color: #fff !important;
  background: var(--mt-blue) !important;
  transform: translateY(-2px);
}

.header-layout6 .sticky-wrapper {
  box-shadow: 0 1px 0 rgba(7, 26, 51, 0.08);
}

.header-layout6 .sticky-wrapper.sticky {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 50px rgba(7, 26, 51, 0.1);
  backdrop-filter: blur(18px);
}

.header-layout6 .menu-area {
  padding: 0;
  background: transparent;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-logo img,
.mobile-logo img {
  width: auto;
  max-width: 74px;
  max-height: 62px;
  object-fit: contain;
}

.brand-name {
  color: var(--mt-navy);
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.main-menu > ul > li {
  margin: 0 13px;
}

.main-menu > ul > li > a {
  padding: 34px 0;
  color: var(--mt-text) !important;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 650;
}

.main-menu > ul > li > a:hover,
.main-menu > ul > li.active > a {
  color: var(--mt-blue) !important;
}

.main-menu ul.sub-menu {
  min-width: 240px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius);
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
}

.main-menu ul.sub-menu li a {
  display: block;
  padding: 11px 13px;
  padding-left: 27px;
  border-radius: 10px;
  font-family: var(--body-font);
}

.main-menu ul.sub-menu li a::before {
  top: 50%;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  transform: translateY(-50%);
}

.main-menu ul.sub-menu li a:hover {
  color: var(--mt-blue);
  background: var(--mt-blue-soft);
}

.th-btn,
.header-button .th-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px 10px 20px;
  overflow: hidden;
  color: #fff !important;
  background: linear-gradient(135deg, #1672ff 0%, #0754d6 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(18, 107, 255, 0.2), inset 0 1px rgba(255, 255, 255, 0.18);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}

.th-btn i {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  font-size: 12px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.th-btn::before,
.th-btn::after {
  display: none !important;
}

.th-btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #075fe8 0%, #0648b7 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 30px rgba(18, 107, 255, 0.28), inset 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.th-btn:hover i { transform: translateX(2px); }

.header-button {
  gap: 10px;
}

.header-button .th-menu-toggle {
  width: 48px;
  height: 48px;
  color: var(--mt-navy);
  background: var(--mt-blue-soft);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-area {
  width: min(88vw, 360px);
  max-width: 360px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0 24px 24px 0;
  box-shadow: 24px 0 70px rgba(7, 26, 51, 0.24);
  transition-duration: 0.34s;
}

.th-menu-wrapper .th-menu-toggle {
  top: 18px;
  right: 16px;
  z-index: 5;
  width: 42px;
  height: 42px;
  line-height: 42px;
  color: var(--mt-navy);
  background: var(--mt-blue-soft);
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 13px;
}

.th-menu-wrapper {
  background: rgba(7, 26, 51, 0.66);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition-duration: 0.3s;
}

.th-menu-wrapper .mobile-logo {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 14px 72px 14px 20px;
  text-align: left;
  background: #fff;
  border-bottom: 1px solid var(--mt-border);
}

.th-menu-wrapper .mobile-logo .brand-lockup {
  justify-content: flex-start;
}

.th-menu-wrapper .mobile-logo .brand-lockup img {
  width: auto;
  height: 52px;
  max-height: 52px;
}

.th-menu-wrapper .mobile-logo .brand-name {
  display: block;
  font-size: 13px;
}

.th-mobile-menu {
  max-height: calc(100dvh - 82px);
  margin-top: 0;
  padding: 12px 18px 28px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
  scrollbar-color: rgba(18, 107, 255, 0.24) transparent;
  scrollbar-width: thin;
}

.th-mobile-menu > ul {
  padding: 0;
}

.th-mobile-menu ul li {
  padding: 0;
  border-bottom: 1px solid #edf2f7;
}

.th-mobile-menu ul li li:first-child {
  border-top: 0;
}

.th-mobile-menu ul li a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 13px 44px 13px 12px;
  color: var(--mt-text) !important;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
}

.th-mobile-menu ul li a::before,
.th-mobile-menu ul .th-item-has-children > a::after {
  display: none;
  content: none;
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand {
  top: 50%;
  right: 7px;
  display: grid;
  width: 32px;
  height: 32px;
  margin-top: 0;
  place-items: center;
  color: var(--mt-blue);
  background: var(--mt-blue-soft);
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 10px;
  box-shadow: none;
  line-height: 1;
  transform: translateY(-50%);
}

.th-mobile-menu ul .th-item-has-children > a .th-mean-expand::before {
  font-size: 11px;
  line-height: 1;
}

.th-mobile-menu .th-mean-expand + .th-mean-expand {
  display: none !important;
}

.th-mobile-menu ul li.th-active > a {
  color: var(--mt-blue) !important;
}

.th-mobile-menu ul li ul {
  margin: 2px 0 10px;
  padding: 5px 7px;
  background: #f6f9fd;
  border: 1px solid #e8f0f8;
  border-radius: 14px;
}

.th-mobile-menu ul li ul li {
  padding-left: 0;
  border-bottom-color: #e8f0f8;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: 0;
}

.th-mobile-menu ul li ul li a {
  min-height: 46px;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 600;
}

.th-mobile-menu ul li ul li ul {
  margin-left: 8px;
  background: #fff;
}

/* Hero */
.th-hero-wrapper.hero-6 {
  min-height: min(760px, calc(100vh - 112px));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--mt-navy);
}

.hero-6 .th-hero-bg {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.94;
  filter: saturate(0.9) contrast(1.03);
}

.hero-6::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 26, 51, 0.9) 0%, rgba(7, 26, 51, 0.82) 31%, rgba(7, 26, 51, 0.58) 49%, rgba(7, 26, 51, 0.16) 68%, rgba(7, 26, 51, 0.03) 100%),
    linear-gradient(0deg, rgba(7, 26, 51, 0.2), transparent 38%);
}

.hero-6::after {
  position: absolute;
  z-index: 1;
  top: 12%;
  left: -140px;
  width: 310px;
  height: 310px;
  content: "";
  background: rgba(18, 107, 255, 0.1);
  border-radius: 50%;
  filter: blur(90px);
}

.hero-6 > .container {
  position: relative;
  z-index: 2;
}

.hero-style6 {
  width: min(760px, 72%);
  padding: clamp(90px, 12vw, 150px) 0;
}

.hero-style6::before {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-bottom: 24px;
  padding: 7px 13px;
  color: #bfe9ff;
  content: "ADANA • İKLİMLENDİRME & ENERJİ SİSTEMLERİ";
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.hero-style6 .hero-title {
  max-width: 760px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.5rem, 5.4vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.018em;
  text-wrap: balance;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.18);
}

.hero-style6 .hero-text {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}

.hero-style6 .th-btn {
  min-height: 54px;
  padding: 12px 14px 12px 22px;
  color: #fff !important;
  background: linear-gradient(135deg, #1672ff 0%, #0754d6 100%);
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  box-shadow: 0 16px 38px rgba(0, 44, 114, 0.32), inset 0 1px rgba(255, 255, 255, 0.2);
}

.hero-style6 .th-btn:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #2780ff 0%, #0754d6 100%);
}

.mt-trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.mt-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(220, 231, 242, 0.9);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.13);
  backdrop-filter: blur(18px);
}

.mt-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 24px clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--mt-border);
}

.mt-trust-item:last-child { border-right: 0; }

.mt-trust-item .mt-trust-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--mt-blue);
  background: var(--mt-blue-soft);
  border: 1px solid rgba(18, 107, 255, 0.08);
  border-radius: 14px;
  font-size: 19px;
  line-height: 1;
}

.mt-trust-item strong,
.mt-trust-item div > span { display: block; }

.mt-trust-item strong {
  margin-bottom: 3px;
  color: var(--mt-text);
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 750;
}

.mt-trust-item div > span {
  color: var(--mt-muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Shared sections */
.mt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--mt-blue);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mt-eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--mt-blue), var(--mt-sky));
  border-radius: 999px;
}

.text-center .mt-eyebrow::before,
[align="center"] .mt-eyebrow::before { display: none; }

.title-area {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.sec-title {
  margin-bottom: 16px;
  color: var(--mt-text);
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.sec-desc {
  max-width: 680px;
  margin-inline: auto;
  color: var(--mt-muted);
  font-size: 17px;
}

hr.sep-3 {
  width: 72px;
  height: 4px;
  margin: 22px auto 0;
  opacity: 1;
  background: linear-gradient(90deg, var(--mt-blue), var(--mt-sky));
  border: 0;
  border-radius: 999px;
}

#about-sec .row {
  align-items: center;
  row-gap: 42px;
}

#about-sec .mt-about-heading {
  width: 100%;
  margin-bottom: clamp(38px, 5vw, 64px);
}

#about-sec .mt-about-heading .sec-title {
  max-width: 1180px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
}

#about-sec .mt-about-heading hr.sep-3 {
  justify-self: start;
  margin-right: 0;
  margin-left: 0;
}

#about-sec .mt-about-body {
  align-items: flex-start;
}

#about-sec .img-box1 {
  padding-right: clamp(0px, 4vw, 44px) !important;
}

#about-sec .hakkimizda {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(145deg, var(--mt-blue-soft), #d9efff);
  border-radius: clamp(20px, 3vw, 32px);
  box-shadow: 0 32px 80px rgba(7, 26, 51, 0.13);
}

#about-sec .hakkimizda::after {
  position: absolute;
  inset: 14px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}

#about-sec .hakkimizda img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#about-sec p {
  font-size: 17px;
  line-height: 1.85;
}

/* Square service/category cards */
.couple-area-sec {
  position: relative;
  overflow: hidden;
}

.couple-area-sec::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 400px;
  height: 400px;
  content: "";
  pointer-events: none;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}

.couple-area-sec .row {
  row-gap: 28px;
}

.couple-area-sec [class*="col-"] > a {
  display: block;
  height: 100%;
}

.couple-card,
.service-card {
  height: 100%;
  padding: 12px 12px 22px;
  overflow: hidden;
  text-align: left;
  background: var(--mt-surface);
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  box-shadow: 0 12px 35px rgba(7, 26, 51, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.couple-card:hover,
.service-card:hover {
  background: var(--mt-surface);
  border-color: rgba(18, 107, 255, 0.35);
  box-shadow: 0 24px 55px rgba(7, 26, 51, 0.11);
  transform: translateY(-7px);
}

.couple-card_img,
.service-card > .mb-3,
.service-card .mb-3 {
  position: relative;
  aspect-ratio: 1;
  margin-bottom: 22px !important;
  overflow: hidden;
  background: linear-gradient(145deg, var(--mt-blue-soft), #d9efff);
  border-radius: 17px;
}

.couple-card_img::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 65%, rgba(7, 26, 51, 0.14));
}

.couple-card_img img,
.service-card > .mb-3 img,
.service-card .mb-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit !important;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.mt-media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(18, 107, 255, 0.34);
  background:
    radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.26), transparent 36%),
    linear-gradient(145deg, var(--mt-blue-soft), #d7ecff);
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.couple-card:hover .couple-card_img img,
.service-card:hover .mb-3 img {
  transform: scale(1.045);
}

.couple-card_title,
.service-card_title {
  margin: 0 12px 10px;
  color: var(--mt-text);
  font-family: var(--title-font);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 760;
  line-height: 1.25;
}

.couple-card p,
.service-card_text {
  display: -webkit-box;
  min-height: 3.5em;
  margin: 0 12px 20px;
  overflow: hidden;
  color: var(--mt-muted);
  font-size: 14px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.couple-card .th-btn,
.service-card .th-btn {
  min-height: 44px;
  margin: 0 12px;
  padding: 12px 18px;
  color: var(--mt-blue) !important;
  background: var(--mt-blue-soft);
  border-color: transparent;
  box-shadow: none;
}

.couple-card .th-btn i,
.service-card .th-btn i {
  background: rgba(18, 107, 255, 0.1);
}

.couple-card:hover .th-btn,
.service-card:hover .th-btn {
  color: #fff !important;
  background: var(--mt-blue);
}

.couple-card:hover .th-btn i,
.service-card:hover .th-btn i {
  background: rgba(255, 255, 255, 0.16);
}

.service-card_inner {
  display: block;
  min-width: 0;
  padding: 0 !important;
  margin: 0;
}

.mt-service-media-link {
  display: block;
  border-radius: 17px;
}

.service-card_title,
.service-card_title a {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.service-card_title a {
  display: block;
  color: var(--mt-text);
}

.service-card_text {
  width: auto;
  max-width: none;
}

.service-card .th-btn {
  width: fit-content;
  max-width: calc(100% - 24px);
  white-space: normal;
}

/* Gallery */
.gallery-row {
  row-gap: 24px;
}

.gallery-row .filter-item {
  margin-bottom: 0 !important;
}

.gallery-box.style3 {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mt-blue-soft);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(7, 26, 51, 0.08);
}

.gallery-box.style3 .gallery-img,
.gallery-box.style3 .gallery-img img {
  width: 100%;
  height: 100%;
}

.gallery-box.style3 .gallery-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-box.style3 .gallery-img img {
  display: block;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.gallery-box.style3 .gallery-content {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  place-items: center;
  background: transparent;
  transform: none;
}

.gallery-box.style3 .icon-btn {
  position: static;
  display: inline-grid;
  margin: 0;
  place-items: center;
  color: var(--mt-navy);
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(12px);
  transform: none;
}

/* Contact card */
.position-relative.overflow-hidden.bg-smoke .card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--mt-border) !important;
  border-radius: var(--mt-radius-lg);
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.09) !important;
}

.position-relative.overflow-hidden.bg-smoke .list-group-item {
  gap: 4px;
  min-height: 64px;
  padding: 16px 22px !important;
  background: transparent;
  border-bottom: 1px solid var(--mt-border) !important;
}

.position-relative.overflow-hidden.bg-smoke .list-group-item:last-child {
  border-bottom: 0 !important;
}

.position-relative.overflow-hidden.bg-smoke .list-group-item i {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--mt-blue) !important;
  background: var(--mt-blue-soft);
  border-radius: 12px;
}

.position-relative.overflow-hidden.bg-smoke .list-group-item a,
.position-relative.overflow-hidden.bg-smoke .list-group-item span {
  color: var(--mt-text) !important;
  font-weight: 550;
  overflow-wrap: anywhere;
}

.position-relative.overflow-hidden.bg-smoke .list-group-item:last-child .th-btn {
  width: 100%;
}

/* Inner pages */
.breadcumb-wrapper {
  position: relative;
  min-height: clamp(240px, 32vw, 390px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background-color: var(--mt-navy);
  background-position: center;
}

.breadcumb-wrapper::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 26, 51, 0.97), rgba(7, 26, 51, 0.66));
}

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

.breadcumb-title {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.breadcumb-menu li,
.breadcumb-menu a {
  color: rgba(255, 255, 255, 0.75);
}

.page-single,
.sidebar-area .widget,
.contact-info {
  background: #fff;
  border: 1px solid var(--mt-border);
  border-radius: var(--mt-radius-lg);
  box-shadow: 0 14px 45px rgba(7, 26, 51, 0.06);
}

.page-single {
  padding: clamp(20px, 4vw, 38px);
}

.page-single img,
.ser-img img {
  border-radius: var(--mt-radius) !important;
}

.mt-service-main-image,
.ser-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--mt-blue-soft);
  border-radius: var(--mt-radius);
  object-fit: cover;
}

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

.sidebar-area .widget {
  padding: 26px;
}

.sidebar-area .widget.widget_banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--mt-navy-soft), var(--mt-navy)) !important;
  border-color: rgba(56, 189, 248, 0.16);
  box-shadow: 0 20px 50px rgba(7, 26, 51, 0.2);
}

.sidebar-area .widget.widget_categories {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, var(--mt-navy-soft), var(--mt-navy)) !important;
  border-color: rgba(56, 189, 248, 0.16);
  box-shadow: 0 20px 50px rgba(7, 26, 51, 0.16);
}

.sidebar-area .widget_categories .widget_title {
  color: #fff;
}

.sidebar-area .widget_categories li {
  border-color: rgba(255, 255, 255, 0.1);
}

.sidebar-area .widget_categories li a {
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
}

.sidebar-area .widget_categories li > i {
  color: rgba(255, 255, 255, 0.52);
}

.sidebar-area .widget_categories li.active a,
.sidebar-area .widget_categories li a:hover {
  color: #fff;
  background: rgba(18, 107, 255, 0.32);
}

.sidebar-area .widget_categories li.active > i,
.sidebar-area .widget_categories li:hover > i {
  color: #7dd3fc;
}

.sidebar-area .widget.widget_banner::before {
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  content: "";
  background: rgba(18, 107, 255, 0.2);
  border-radius: 50%;
  filter: blur(12px);
}

.sidebar-area .widget_banner .widget_title,
.sidebar-area .widget_banner .banner-text,
.sidebar-area .widget_banner .banner-link,
.sidebar-area .widget_banner .banner-link i {
  color: #fff;
}

.sidebar-area .widget_banner .banner-text {
  color: rgba(255, 255, 255, 0.72);
}

.sidebar-area .widget_banner .banner-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-weight: 700;
}

.sidebar-area .widget_banner .banner-link:hover {
  color: #fff;
  background: var(--mt-blue);
}

.widget_title {
  font-family: var(--title-font);
  letter-spacing: -0.025em;
}

.widget_categories li a {
  border-radius: 10px;
}

.sidebar-area .widget_categories:not(.widget) li.active a,
.sidebar-area .widget_categories:not(.widget) li a:hover {
  color: var(--mt-blue);
  background: var(--mt-blue-soft);
}

.contact-info {
  height: 100%;
  padding: 32px 24px;
}

.contact-info_icon {
  color: var(--mt-blue);
  background: var(--mt-blue-soft);
}

/* Homepage contact */
.mt-contact-section {
  padding: clamp(70px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}

.mt-contact-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 6vw, 82px);
  padding: clamp(36px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(135deg, #102b4e 0%, #071a33 68%, #06172d 100%);
  border: 1px solid rgba(56, 189, 248, 0.16);
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(7, 26, 51, 0.18);
}

.mt-contact-panel::before {
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -120px;
  width: 440px;
  height: 440px;
  content: "";
  background: rgba(18, 107, 255, 0.24);
  border-radius: 50%;
  filter: blur(30px);
}

.mt-contact-intro {
  align-self: center;
}

.mt-contact-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.mt-contact-intro h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.025em;
}

.mt-contact-intro p {
  max-width: 470px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.mt-contact-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 11px;
  padding: 12px 18px;
  color: #fff;
  background: var(--mt-blue);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(18, 107, 255, 0.3);
  font-weight: 750;
}

.mt-contact-cta .fa-arrow-right {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 180ms ease;
}

.mt-contact-cta:hover {
  color: #fff;
  background: #2780ff;
}

.mt-contact-cta:hover .fa-arrow-right {
  transform: translateX(3px);
}

.mt-contact-grid {
  display: grid;
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mt-contact-item {
  display: flex;
  min-width: 0;
  min-height: 112px;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

a.mt-contact-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(125, 211, 252, 0.34);
  transform: translateY(-2px);
}

.mt-contact-item--wide {
  grid-column: 1 / -1;
}

.mt-contact-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: #7dd3fc;
  background: rgba(18, 107, 255, 0.2);
  border: 1px solid rgba(125, 211, 252, 0.15);
  border-radius: 12px;
}

.mt-contact-item div {
  min-width: 0;
}

.mt-contact-item small {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mt-contact-item p,
.mt-contact-item strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* Homepage contact — light panel above the dark footer */
.mt-contact-panel {
  color: var(--mt-text);
  background: linear-gradient(145deg, #fff 0%, #f2f7ff 100%);
  border-color: var(--mt-border);
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.1);
}

.mt-contact-panel::before {
  background: rgba(18, 107, 255, 0.1);
}

.mt-contact-kicker {
  color: var(--mt-blue);
}

.mt-contact-intro h2 {
  color: var(--mt-text);
}

.mt-contact-intro p {
  color: var(--mt-muted);
}

.mt-contact-item {
  color: var(--mt-text);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(18, 107, 255, 0.12);
  box-shadow: 0 10px 28px rgba(7, 26, 51, 0.05);
  backdrop-filter: blur(10px);
}

a.mt-contact-item:hover {
  color: var(--mt-text);
  background: #fff;
  border-color: rgba(18, 107, 255, 0.3);
}

.mt-contact-item small {
  color: var(--mt-muted);
}

.mt-contact-item p,
.mt-contact-item strong {
  color: var(--mt-text);
}

.mt-contact-item--action {
  align-items: center;
}

.mt-contact-item--action strong {
  font-size: 17px;
}

.mt-contact-item--whatsapp .mt-contact-icon {
  color: #138a47;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.2);
}

/* Footer */
.footer-wrapper.footer-layout5 {
  position: relative;
  overflow: hidden;
  background: var(--mt-navy) !important;
}

.footer-wrapper.footer-layout5::before {
  position: absolute;
  top: -240px;
  left: 50%;
  width: 640px;
  height: 440px;
  content: "";
  pointer-events: none;
  background: rgba(18, 107, 255, 0.16);
  border-radius: 50%;
  filter: blur(100px);
}

.footer-layout5 .widget-area {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0 58px;
}

.footer-layout5 .footer-widget {
  margin-bottom: 36px;
}

.footer-layout5 .mt-footer-grid {
  --bs-gutter-x: clamp(40px, 6vw, 90px);
}

.footer-layout5 .mt-footer-services .menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(30px, 5vw, 72px);
}

.footer-layout5 .mt-footer-services .menu li {
  min-width: 0;
}

.footer-layout5 .mt-footer-socials {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-layout5 .about-logo img {
  width: min(230px, 100%) !important;
}

.footer-layout5 .widget_title {
  margin-bottom: 25px;
  color: #fff;
  font-size: 18px;
}

.footer-layout5 .footer-widget a,
.footer-layout5 .info-box_text,
.footer-layout5 .info-box_link {
  color: rgba(255, 255, 255, 0.67);
  font-family: var(--body-font);
}

.footer-layout5 .footer-widget a:hover {
  color: var(--mt-sky);
}

.footer-layout5 .info-box_icon {
  color: var(--mt-sky);
  background: rgba(56, 189, 248, 0.1);
  border-radius: 10px;
}

.footer-layout5 .th-social a {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-right: 8px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 1;
}

.footer-layout5 .th-social a i {
  display: block;
  line-height: 1;
}

.footer-layout5 .th-social a:hover {
  background: var(--mt-blue);
}

.footer-layout5 .copyright-wrap {
  background: rgba(0, 0, 0, 0.13);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-layout5 .copyright-text {
  color: rgba(255, 255, 255, 0.55);
}

.scroll-top {
  color: #fff;
  background: var(--mt-blue);
  border: 0;
  box-shadow: 0 14px 35px rgba(18, 107, 255, 0.3);
}

.mt-floating-actions {
  position: fixed;
  z-index: 85;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.mt-floating-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 16px 7px 7px;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(7, 26, 51, 0.2);
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mt-floating-action i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 15px;
}

.mt-floating-action--phone {
  background: linear-gradient(135deg, #1672ff, #0754d6);
}

.mt-floating-action--whatsapp {
  background: linear-gradient(135deg, #2acb6f, #14954b);
}

.mt-floating-action:hover {
  color: #fff !important;
  box-shadow: 0 16px 36px rgba(7, 26, 51, 0.28);
  transform: translateY(-2px);
}

@media (max-width: 1199px) {
  .header-layout6 .header-top {
    display: none;
  }

  .header-layout6 .menu-area {
    min-height: 78px;
  }

  .header-button .th-btn {
    display: none;
  }

  .hero-style6 {
    width: min(780px, 88%);
  }

  .mt-contact-panel {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
  }
}

@media (max-width: 767px) {
  :root {
    --mt-section: 72px;
  }

  .header-logo .brand-name {
    display: block;
    font-size: 13px;
  }

  .header-logo img,
  .mobile-logo img {
    max-width: 64px;
    max-height: 54px;
  }

  .th-hero-wrapper.hero-6 {
    min-height: 560px;
    align-items: stretch;
  }

  .hero-6 .th-hero-bg {
    opacity: 1;
    background-position: 62% center;
    filter: saturate(0.92) contrast(1.03);
  }

  .hero-6::before {
    background:
      linear-gradient(0deg, rgba(7, 26, 51, 0.97) 0%, rgba(7, 26, 51, 0.84) 48%, rgba(7, 26, 51, 0.36) 100%),
      linear-gradient(90deg, rgba(7, 26, 51, 0.42), rgba(7, 26, 51, 0.04));
  }

  .hero-6::after { display: none; }

  .hero-6 > .container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-style6 {
    width: 100%;
    max-width: none;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0 62px;
    text-align: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .hero-style6::before {
    max-width: 100%;
    min-height: 28px;
    margin-bottom: 16px;
    padding: 6px 10px;
    color: #d8f3ff;
    background: rgba(18, 107, 255, 0.18);
    border-color: rgba(143, 220, 255, 0.3);
    font-size: 8px;
    letter-spacing: 0.055em;
  }

  .hero-style6 .hero-title {
    max-width: 390px;
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 9.5vw, 2.5rem);
    line-height: 1.06;
    letter-spacing: -0.012em;
    text-align: center;
  }

  .hero-style6 .hero-text {
    max-width: 345px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  .hero-style6 .th-btn {
    width: auto;
    min-height: 50px;
  }

  #about-sec .row {
    flex-direction: column;
  }

  #about-sec [class*="col-md-"] {
    width: 100%;
  }

  .couple-card,
  .service-card {
    border-radius: 20px;
  }

  .gallery-row {
    --bs-gutter-x: 14px;
    row-gap: 14px;
  }

  .gallery-box.style3 {
    border-radius: 15px;
  }

  .mt-contact-section {
    padding: 64px 0;
  }

  .mt-contact-panel {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 30px 22px 22px;
    border-radius: 24px;
  }

  .mt-contact-intro {
    text-align: center;
  }

  .mt-contact-intro h2 {
    font-size: 2.35rem;
  }

  .mt-contact-intro p {
    margin: 0 auto 24px;
    font-size: 15px;
  }

  .mt-contact-grid {
    grid-template-columns: 1fr;
  }

  .mt-contact-item,
  .mt-contact-item--wide {
    min-height: 94px;
    grid-column: auto;
    padding: 17px;
  }

  .footer-layout5 .mt-footer-services .menu {
    grid-template-columns: 1fr;
  }

  .footer-layout5 .mt-footer-grid {
    row-gap: 12px;
  }

  .breadcumb-wrapper {
    min-height: 245px;
  }

  .mt-trust-strip {
    margin-top: -24px;
    overflow: visible;
  }

  .mt-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--mt-border);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(7, 26, 51, 0.12);
  }

  .mt-trust-item {
    min-width: 0;
    min-height: 88px;
    padding: 18px 20px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--mt-border);
    border-radius: 0;
    box-shadow: none;
  }

  .mt-trust-item:last-child {
    border: 0;
  }

  .page-single,
  .sidebar-area .widget {
    border-radius: 18px;
  }

  .mt-floating-actions {
    bottom: 16px;
    left: 16px;
    flex-direction: column;
    gap: 8px;
  }

  .mt-floating-action {
    width: 44px;
    min-height: 44px;
    padding: 5px;
  }

  .mt-floating-action i {
    width: 32px;
    height: 32px;
  }

  .mt-floating-action span { display: none; }
}

@media (max-width: 390px) {
  .container,
  .th-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-style6 .hero-title {
    font-size: 1.98rem;
  }

  .hero-style6 .th-btn {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
