/*
Theme Name: GTP Custom
Theme URI: https://georgiantaxpartners.com
Author: Georgian Tax Partners
Author URI: https://georgiantaxpartners.com
Description: Custom theme for Georgian Tax Partners migration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: gtp-custom
*/

:root {
  --primary: #f58217;
  --text: #020202;
  --background: #ffffff;
  --footer-bg: #ffffff;
  --header-bg: #ffffff;
  --body-font: "Poppins", sans-serif;
  --normal-font-size: 0.938rem;
  --header-height: 84px;
  --font-semi: 600;
  --gtp-page-hero-min: calc(var(--header-height) + 5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text);
  background: var(--background);
}

h1, h2, p {
    margin: 0;
}

/*body.admin-bar {*/
/*  margin-top: calc(var(--header-height) + 32px);*/
/*}*/

.l-main {
  padding-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height) !important;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}

html body.admin-bar .header {
  top: 32px !important;
}

@media (max-width: 782px) {
  html body.admin-bar .header {
    top: 46px !important;
  }
}

.gtp-header-inner {
  height: 100%;
  width: 100%;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  gap: 1.2rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}


.header .nav__logo img {
  height: 110px;
  width: auto ;
  max-width: none;
  max-height: 110px;
}

.header .nav {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.gtp-nav-shell {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link,
.nav__list a {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
  position: relative;
  transition: color .3s;
}

.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

.nav__list a:hover::after,
.nav__list .current-menu-item > a::after,
.nav__list .current_page_item > a::after,
.nav__list .current-section > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__list .current-section > a {
  color: var(--primary);
}

/* Dropdown sub-menu */
.nav__list > li {
  position: relative;
}

/* Invisible bridge so the cursor can reach the dropdown without closing */
.nav__list > li.menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: max(100%, 280px);
  height: 16px;
  z-index: 1099;
}

.nav__list .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s;
  z-index: 1100;
  flex-direction: column;
  gap: 0;
}

.nav__list .menu-item-has-children:hover > .sub-menu,
.nav__list .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__list .sub-menu li {
  width: 100%;
}

.nav__list .sub-menu a {
  display: block;
  padding: 0.8rem 1.35rem;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
}

.nav__list .sub-menu a::after {
  display: none;
}

.nav__list .sub-menu a:hover {
  background: rgba(245, 130, 23, 0.08);
  color: var(--primary);
}

.nav__list .current-menu-ancestor > a,
.nav__list .current-menu-parent > a {
  color: var(--primary);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-left: 40px;
}

.lang-label {
  font-size: 1rem;
  color: #555;
  font-weight: 600;
  position: relative;
  text-decoration: none;
  transition: color .3s;
}

.lang-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

.lang-label:hover::after,
.lang-label.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-label:hover {
  color: var(--primary);
}

.lang-label.active {
  color: var(--primary);
}

.gtp-nav-toggle,
.gtp-burger {
  display: none;
}

/* Hero */
.hero-watch {
  min-height: 100vh;
  min-height: 100dvh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

/* Homepage — each main block at least one viewport tall */
body.home .l-main > .hero-watch,
body.home .l-main > .team-preview,
body.home .l-main > .services,
body.home .l-main > .home-faq,
body.home .l-main > .contact-section {
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
}

body.home .l-main > .team-preview,
body.home .l-main > .services,
body.home .l-main > .home-faq,
body.home .l-main > .contact-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.home .l-main > .team-preview > .container,
body.home .l-main > .home-faq > .container,
body.home .l-main > .contact-section > .container {
  width: 100%;
}

body.home .l-main > .services {
  align-items: center;
}

body.home .l-main > .services > .service-container {
  width: 100%;
  max-width: 1400px;
}

body.home .l-main > .services .services-grid {
  justify-content: center;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  margin: 0 0 0.7rem;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1.3;
  letter-spacing: 4px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 920px;
  font-size: 1.5rem;
  line-height: 1.35;
  letter-spacing: 2px;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn-primary {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: linear-gradient(135deg, #f58217, #e07a15);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(245, 130, 23, 0.3);
  letter-spacing: 1px;
  transition: all 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(245, 130, 23, 0.4);
}

/* Team/About block (from original site styles) */
.team-preview {
  padding: 6rem 0;
  background: #fff;
  text-align: center;
}

.team-preview h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 3rem;
  color: #111;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  width: 280px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #1a1a1a;
  border-radius: 1.2rem;
  padding: 1.2rem 1.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  transition: all .4s ease;
}

.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 1.4rem;
  border: 5px solid #f0f0f0;
  transition: .4s;
  display: block;
  margin: 0 auto;
}

.team-member p {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ccc;
}

.team-member-role {
  font-size: 0.8rem;
  color: #666;
  display: block;
  margin-top: 5px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(245, 130, 23, .2);
  border-color: var(--primary);
  background: #1f1f1f;
}

.team-member:hover img {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .2);
}

.home-about-intro,
.home-about-detail {
  max-width: 920px;
  margin: 1.2rem auto 0;
  color: #555;
  line-height: 1.7;
  font-size: 1.03rem;
  text-align: center;
}

.home-about-detail {
  color: #3f4650;
}

.home-about-cta {
  margin-top: 2.5rem;
  text-align: center;
}

.home-about-focus-heading {
  margin: 2rem 0 1rem;
  color: #111;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.home-focus-line-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.home-focus-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #1f2933;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

.home-focus-item i {
  font-size: 1.65rem;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}



/* ===================================================================
   HOME FAQ
   =================================================================== */
.home-faq {
  padding: 6rem 0;
  background: #f7f7f7;
}

.faq-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3rem;
  text-align: center;
}

.faq-minimal {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.faq-item:hover {
  border-color: rgba(245, 130, 23, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item[open] {
  border-color: transparent;
}

.faq-item[open]:hover {
  border-color: rgba(245, 130, 23, 0.35);
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  width: 18px;
  height: 18px;
  color: #f58217;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  margin: 0;
  padding: 0 1.5rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.faq-answer p {
  margin: 0 0 0.8rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-categories {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.faq-category {
  border-radius: 1.4rem;
}

.faq-category > summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  user-select: none;
  transition: all 0.35s ease;
}

.faq-category > summary::-webkit-details-marker {
  display: none;
}

.faq-category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  line-height: 1.35;
}

.faq-category:hover > summary {
  border-color: rgba(245, 130, 23, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(245, 130, 23, 0.15);
}

.faq-category[open] {
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.faq-category[open] > summary {
  border-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  transform: none;
  box-shadow: none;
}

.faq-category[open] > summary .faq-arrow {
  transform: rotate(180deg);
}

.faq-category-panel {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 2rem;
  box-shadow: none;
}

.faq-category-panel .faq-minimal {
  max-width: none;
  margin: 0;
  gap: 1rem;
}

.faq-category-panel .faq-item {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.faq-category-panel .faq-item summary {
  padding: 1.25rem 1.75rem;
}

.faq-category-panel .faq-answer {
  padding: 0 1.75rem 1.5rem;
}

/* FAQ page — category tabs */
.faq-tabs {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.faq-tabs__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: stretch;
  background: var(--primary);
}

.faq-tabs__tab {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding: 1.1rem 2.4rem;
  border: none;
  border-radius: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--primary);
  color: #fff;
  font-family: var(--body-font);
  font-weight: 600;
  font-size: clamp(0.8rem, 1.4vw, 1.15rem);
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-tabs__tab:last-child {
  border-right: none;
}

.faq-tabs__tab:hover {
  filter: brightness(1.05);
}

.faq-tabs__tab.is-active,
.faq-tabs__tab[aria-selected='true'] {
  background: #fff;
  color: var(--primary);
  border-right-color: rgba(0, 0, 0, 0.06);
  
}

.faq-tabs__panels {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem;
}

.faq-tabs__panel {
  display: none;
}

.faq-tabs__panel.is-active {
  display: block;
}

.faq-minimal--tabbed {
  max-width: none;
  margin: 0;
  gap: 1rem;
}

.faq-minimal--tabbed .faq-item summary {
  padding: 1.25rem 1.75rem;
}

.faq-minimal--tabbed .faq-answer {
  padding: 0 1.75rem 1.5rem;
}

/* ===================================================================
   CTA / CONTACT
   =================================================================== */
.cta {
  padding: 6rem 0;
  background: #fff;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.cta p {
  color: #555;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.cta-actions-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.direct-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #000;
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: #25D366;
  border: 2px solid #25D366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 480px) {
  .direct-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-secondary,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }
}

/* ===================================================================
   CONTACT MODAL
   =================================================================== */
.modal {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(12px);
  animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 90%;
  max-width: 480px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  transform: scale(0.9);
  animation: popUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f58217 #f0f0f0;
}

.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #f58217;
  border-radius: 3px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1;
}

.close-btn:hover {
  background: #e0e0e0;
  color: #000;
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  to { transform: scale(1); }
}

/* Modal title & subtitle */
.modal-title {
  margin-bottom: 8px;
  color: #111;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  text-align: center;
}

.modal-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* CF7 form (modal + inline contact section) */
.gtp-cf7-form .wpcf7-form p,
.modal-content .wpcf7-form p {
  margin: 0 0 12px;
}

.gtp-cf7-form .wpcf7-form label,
.modal-content .wpcf7-form label {
  display: block;
  font-size: 0;
  line-height: 0;
}

.gtp-cf7-form .wpcf7-form-control-wrap,
.modal-content .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}

.gtp-cf7-form .wpcf7-form-control-wrap::before,
.modal-content .wpcf7-form-control-wrap::before {
  font-family: 'boxicons' !important;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 1.1rem;
  font-weight: 200;
  transition: 0.3s;
  pointer-events: none;
  z-index: 1;
}

.gtp-cf7-form .wpcf7-form-control-wrap[data-name="your-name"]::before,
.modal-content .wpcf7-form-control-wrap[data-name="your-name"]::before { content: '\ec63'; }
.gtp-cf7-form .wpcf7-form-control-wrap[data-name="your-company"]::before,
.modal-content .wpcf7-form-control-wrap[data-name="your-company"]::before { content: '\ea0c'; }
.gtp-cf7-form .wpcf7-form-control-wrap[data-name="your-email"]::before,
.modal-content .wpcf7-form-control-wrap[data-name="your-email"]::before { content: '\eac1'; }
.gtp-cf7-form .wpcf7-form-control-wrap[data-name="your-phone"]::before,
.modal-content .wpcf7-form-control-wrap[data-name="your-phone"]::before { content: '\ebb2'; }
.gtp-cf7-form .wpcf7-form-control-wrap[data-name="your-subject"]::before,
.modal-content .wpcf7-form-control-wrap[data-name="your-subject"]::before { content: '\ec3c'; }
.gtp-cf7-form .wpcf7-form-control-wrap[data-name="your-message"]::before,
.modal-content .wpcf7-form-control-wrap[data-name="your-message"]::before { content: '\eb6f'; top: 20px; transform: none; }

.gtp-cf7-form .wpcf7-form input[type="text"],
.gtp-cf7-form .wpcf7-form input[type="email"],
.gtp-cf7-form .wpcf7-form input[type="tel"],
.gtp-cf7-form .wpcf7-form textarea,
.modal-content .wpcf7-form input[type="text"],
.modal-content .wpcf7-form input[type="email"],
.modal-content .wpcf7-form input[type="tel"],
.modal-content .wpcf7-form textarea {
  width: 100%;
  padding: 14px 14px 14px 45px;
  border: 2px solid transparent;
  background-color: #f3f4f6;
  border-radius: 12px;
  font-family: var(--body-font);
  font-size: 0.95rem;
  color: #333;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.gtp-cf7-form .wpcf7-form input::placeholder,
.gtp-cf7-form .wpcf7-form textarea::placeholder,
.modal-content .wpcf7-form input::placeholder,
.modal-content .wpcf7-form textarea::placeholder {
  color: #aaa;
  font-weight: 300;
}

.gtp-cf7-form .wpcf7-form input:focus,
.gtp-cf7-form .wpcf7-form textarea:focus,
.modal-content .wpcf7-form input:focus,
.modal-content .wpcf7-form textarea:focus {
  background-color: #fff;
  border-color: #f58217;
  box-shadow: 0 0 0 4px rgba(245, 130, 23, 0.1);
  outline: none;
}

.gtp-cf7-form .wpcf7-form-control-wrap:focus-within::before,
.modal-content .wpcf7-form-control-wrap:focus-within::before {
  color: #f58217;
}

.gtp-cf7-form .wpcf7-form textarea,
.modal-content .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.gtp-cf7-form .wpcf7-form input[type="submit"],
.modal-content .wpcf7-form input[type="submit"] {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #f58217, #e07a15);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--body-font);
}

.gtp-cf7-form .wpcf7-form input[type="submit"]:hover,
.modal-content .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 130, 23, 0.3);
}

.gtp-cf7-form .wpcf7-form .wpcf7-response-output,
.modal-content .wpcf7-form .wpcf7-response-output {
  font-weight: 600;
  text-align: center;
  margin: 15px 0 0;
  font-size: 0.9rem;
  border: none !important;
  padding: 10px !important;
}

.gtp-cf7-form .wpcf7-form .wpcf7-not-valid-tip,
.modal-content .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 4px;
}

/* Phone modal */
.phone-modal-content {
  text-align: center;
  max-width: 480px;
}

.modal-icon {
  width: 60px;
  height: 60px;
  background: rgba(245, 130, 23, 0.1);
  color: #f58217;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 15px;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.phone-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  padding: 15px;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  border: 1px solid #eee;
  transition: 0.2s;
}

.phone-item:hover {
  border-color: #f58217;
  transform: translateX(5px);
}

.phone-item strong {
  color: #111;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
    border-radius: 18px;
  }
}

/* ===================================================================
   NEWS & BLOG
   =================================================================== */
.news-blog {
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
  color: #eee;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.news-blog h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.news-blog h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.news-subtitle {
  max-width: 720px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.news-card {
  background: #1a1a1a;
  border-radius: 1.4rem;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
}

.news-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(245, 130, 23, 0.2);
}

.news-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 130, 23, 0.12) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.news-card:hover::before {
  opacity: 1;
}

.news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.news-card:hover .news-img-wrapper img {
  transform: scale(1.1);
}

.news-content {
  padding: 1.5rem 1.2rem;
  text-align: left;
}

.news-date {
  display: block;
  font-size: 0.85rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-content h3 {
  font-size: 1.25rem;
  margin: 0 0 0.6rem;
  color: #fff;
  line-height: 1.3;
}

.news-content p {
  font-size: 0.95rem;
  color: #ccc;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.news-readmore {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.news-readmore:hover {
  color: #fff;
}

.news-cta-wrapper {
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .news-blog {
    padding: 4rem 0;
  }

  .news-img-wrapper {
    height: 220px;
  }

  .news-content {
    padding: 1.2rem 1rem;
  }
}

/* ===================================================================
   SERVICES
   =================================================================== */
.services {
  padding: 7rem 0;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
}

.services-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.services .service-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
    padding: 0 2rem;
}

.services-grid {
  padding: 2rem 0;
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2rem;
  justify-items: space-between;
}

#services .services-grid {
    padding: 3rem 0;
}

.services-grid .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  width: 100%;
  max-width: 360px;
  padding: 1.6rem 1.6rem;
}

.services-grid .service-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: #fff;
  font-weight: 600;
}

.service-price {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.9;
  margin-top: 0.35rem;
}

.service-link {
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-card {
  background: #1a1a1a;
  padding: 1.2rem 1.6rem;
  border-radius: 1.2rem;
  text-align: center;
  width: 100%;
  max-width: 360px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-18px);
  box-shadow: 0 20px 40px rgba(245, 130, 23, 0.25);
  border: 2px solid var(--primary);
  background: #1f1f1f;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 130, 23, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card i {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #fff;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  color: #ddd;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services {
    padding: 6rem 0;
  }

  .services .service-container {
    padding: 0 1rem;
  }

  .services-grid .service-card {
    min-height: 240px;
    padding: 2rem 1.5rem;
  }
}

/* ===================================================================
   WHY GEORGIA (geo-benefits)
   =================================================================== */
.geo-benefits-section {
  padding: 6rem 0;
  background: #f7f7f7;
  color: #111;
  text-align: center;
}

.geo-benefits-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.geo-benefits-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #111;
  margin: 0 0 1.1rem;
  font-weight: 700;
}

.geo-benefits-lead {
  max-width: 860px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

.geo-benefits-subtitle {
  margin: 1.25rem auto 0;
  color: #111;
  font-size: 1.3rem;
  font-weight: 700;
}

.geo-benefits-grid {
  margin-top: 2.3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.geo-benefits-grid .service-card {
  flex: 0 1 320px;
  max-width: 320px;
  min-height: 190px;
  padding: 2rem 1.3rem;
  cursor: default;
  background: #1a1a1a;
  border-radius: 1.2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.geo-benefits-grid .service-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 130, 23, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.geo-benefits-grid .service-card:hover {
  transform: none;
  box-shadow: 0 20px 40px rgba(245, 130, 23, 0.25);
  border-color: var(--primary);
  background: #1f1f1f;
}

.geo-benefits-grid .service-card:hover::before {
  opacity: 1;
}

.geo-benefits-grid .service-card i {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.geo-benefits-grid .service-card h3 {
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.geo-benefits-note {
  margin: 2rem auto 0;
  max-width: 860px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
}

.geo-benefits-cta {
  margin-top: 2.5rem;
}

.geo-benefits-cta .btn-primary {
  text-decoration: none;
}

.geo-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.geo-explore-btn__icon {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  animation: geo-pointer-tap 1.1s ease-in-out infinite;
}

@keyframes geo-pointer-tap {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  35% {
    transform: translate(2px, 2px) scale(1.08);
  }
  70% {
    transform: translate(0, 0) scale(1);
  }
}

@media (max-width: 768px) {
  .geo-benefits-grid .service-card {
    padding: 2rem 1.5rem;
  }
}

/* ===================================================================
   STATS + PROCESS (shared dark background)
   =================================================================== */
.stats-process-bg {
  color: #fff;
  background-size: cover;
  background-position: center;
}

.stats-bar {
  padding: 5rem 0 6.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item h3,
.stat-item__value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-item__value {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.15rem;
  flex-wrap: wrap;
}

.stat-item .counter {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: 1;
  margin: 0;
}

.stat-item .stat-suffix {
  font-size: 0.65em;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-item .counter.animate {
  animation: gtp-stat-count-up 0.6s ease-out forwards;
}

@keyframes gtp-stat-count-up {
  from {
    opacity: 0.6;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
  color: #fff;
  margin-top: 0;
}

/* Process section */
.progress-section {
  padding: 3rem 0 6rem;
  background: transparent;
  color: #eee;
  text-align: center;
}

.progress-section .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.progress-section .section-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.progress-container {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.progress-bar {
  position: relative;
  height: 3rem;
  background: #1a1a1a;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #f58217, #ff9a3d);
  border-radius: 2rem;
  transition: width 0.6s ease;
  box-shadow: 0 0 25px rgba(245, 130, 23, 0.6);
}

.progress-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #aaa;
  flex-wrap: wrap;
}

.progress-steps .step {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  position: relative;
  transition: color 0.4s ease;
}

.progress-steps .step::before {
  content: "";
  position: absolute;
  top: -1.22rem;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.progress-steps .step.active {
  color: #f58217;
  font-weight: 600;
}

.progress-steps .step.active::before {
  background: #f58217;
  box-shadow: 0 0 20px rgba(245, 130, 23, 0.7);
  transform: translateX(-50%) scale(1.3);
}

/* Stats + Process responsive */
@media (max-width: 768px) {
  .stat-item h3 {
    font-size: 2.2rem;
  }

  .progress-steps {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .progress-steps .step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    padding: 0;
  }

  .progress-steps .step::before {
    position: static;
    transform: none;
    flex-shrink: 0;
  }
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  padding: 1.5rem 2rem;
  text-align: center;
  background: #f7f7f7;
  margin-top: auto;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 160px;
  width: auto;
  display: block;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer__icon {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__icon i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.footer__icon:hover {
  transform: translateY(-3px);
}

.footer__icon:hover i {
  transform: scale(1.2);
}

.footer__icon.facebook:hover { color: #1877F2; }
.footer__icon.instagram:hover { color: #E1306C; }
.footer__icon.youtube:hover { color: #f50606; }
.footer__icon.linkedin:hover { color: #018afa; }

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 1rem;
  color: var(--text);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
  border-bottom: 1px dashed transparent;
}

.footer-link:hover {
  opacity: 1;
  color: #f58217;
  border-bottom-color: #f58217;
}

.separator {
  opacity: 0.5;
}

@media (max-width: 768px) {
  .footer-logo-img {
    height: 130px;
  }
}

/* Mobile */
@media (max-width: 980px) {
  .header {
    position: relative;
    top: auto;
  }

  html body.admin-bar .header {
    top: auto !important;
  }

  .container {
    padding: 0 1rem;
  }

  .header .nav {
    padding: 0 1rem;
  }

  .gtp-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 6px;
  }

  .gtp-burger span {
    width: 22px;
    height: 2px;
    background: #111;
    display: block;
  }

  .gtp-nav-shell {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
  }

  .nav__list > li {
    width: 100%;
  }

  .nav__list > li.menu-item-has-children::before {
    display: none;
  }

  .nav__list .sub-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 1rem;
    margin: 0.35rem 0 0.5rem;
    min-width: 0;
    display: flex;
    width: 100%;
  }

  .nav__list .sub-menu a {
    padding: 0.45rem 0;
  }

  .gtp-nav-toggle:checked ~ .gtp-nav-shell {
    display: flex;
  }

  .theme-logo,
  .header .nav__logo img {
    height: 80px !important;
    max-height: 80px !important;
  }

  .lang-switch--desktop {
    margin-top: 0.5rem;
  }

  .hero-watch {
    margin-top: 0;
  }

  .tm-hero {
    padding-top: 2rem;
  }

  .article-section {
    padding-top: 3rem;
  }

  .na-hero {
    padding-top: 2rem;
  }

  .gtp-page-hero {
    padding: calc(var(--header-height) + 0.65rem) 0 1.75rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 3rem);
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    padding: 0 15px;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0 20px;
    line-height: 1.5;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-member img {
    width: 180px;
    height: 180px;
  }

  /* Why Us stats — single column */
  .stats-grid {
    grid-template-columns: 1fr !important;
  }

  /* Progress steps — centered */
  .progress-steps {
    align-items: center;
  }

  .progress-steps .step {
    justify-content: center;
  }

  /* Services — single column, centered */
  .services-grid {
    flex-direction: column !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  .services-grid .service-card {
    max-width: 400px !important;
    width: 100% !important;
  }

  /* News — single column, full width */
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   SINGLE TEAM MEMBER
   =================================================================== */
.tm-single-page {
  padding-top: 0;
}

/* Hero profile */
.tm-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
  gap: 1.8rem;
}

.tm-back-btn-centered {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  margin-bottom: 2rem;
  background: #fff;
  color: var(--text);
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: border-color 0.4s ease, background 0.4s ease;
}

.tm-back-btn-centered i {
  font-size: 1.1rem;
  color: var(--primary);
}

.tm-back-btn-centered:hover {
  border-color: var(--primary);
  background: rgba(245, 130, 23, 0.1);
}

.tm-photo-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 1.4rem;
  overflow: hidden;
  border: 7px solid #fff;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  transition: all 0.4s ease;
}

.tm-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tm-photo-wrapper:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 60px rgba(245, 130, 23, 0.25);
}

.tm-name {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.tm-role {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0;
  opacity: 0.9;
}

.tm-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.tm-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all 0.4s ease;
  text-decoration: none;
}

.tm-icon:hover {
  background: var(--primary);
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 12px 25px rgba(245, 130, 23, 0.3);
}

/* About section */
.tm-about {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.tm-about h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.tm-about-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.tm-about-text p {
  margin-bottom: 1rem;
}

/* Contact section */
.tm-contact {
  text-align: center;
  padding: 4rem 1.5rem;
}

.tm-contact h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tm-contact-sub {
  color: #666;
  margin-bottom: 2rem;
}

.tm-email-btn {
  display: inline-block;
  width: 280px;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .tm-photo-wrapper {
    width: 200px;
    height: 200px;
  }

  .tm-name {
    font-size: 2rem;
  }

  .tm-role {
    font-size: 1.1rem;
  }

}

/* ===================================================================
   SERVICE CATEGORY PAGE
   =================================================================== */
.sc-page {
  padding-top: 0;
}

.sc-hero {
  background: linear-gradient(135deg, #f58217, #e07a15);
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.sc-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 1.5rem;
}

.sc-back-btn i {
  font-size: 1.1rem;
  color: var(--primary);
}

.sc-back-btn:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.sc-hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  margin: 0;
}

.sc-hero-price {
  display: block;
  margin: 1rem 0 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  opacity: 0.95;
}

.sc-services-list {
  padding: 0 0 4rem;
  background: var(--background);
  position: relative;
  z-index: 2;
}

.sc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
}

.sc-grid .sc-card {
  flex: 0 1 calc(50% - 1rem);
  max-width: 480px;
  min-width: min(100%, 300px);
}

.sc-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.sc-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(245, 130, 23, 0.2);
}

.sc-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}

.sc-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.sc-card-desc ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0;
}

.sc-card-desc li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.sc-card-optional,
.sc-card-time {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.sc-card-optional strong,
.sc-card-time strong,
.sc-card-price strong {
  color: var(--primary);
}

.sc-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  padding-top: 0.8rem;
}

.sc-card-price-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 0.3rem;
}

@media (max-width: 768px) {
  .sc-grid .sc-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .sc-grid {
    margin-top: 2rem;
    padding-top: 0;
  }

  .sc-hero {
    padding: 2.5rem 0 2rem;
  }

  .faq-tabs__nav {
    flex-direction: column;
    align-items: stretch;
  }

  .faq-tabs__tab {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .faq-tabs__tab:last-child {
    border-bottom: none;
  }

  .faq-tabs__tab.is-active,
  .faq-tabs__tab[aria-selected='true'] {
    border-bottom-color: rgba(0, 0, 0, 0.06);
  }

  .faq-tabs__panels {
    padding: 1.25rem;
  }
}

/* ===================================================================
   SINGLE NEWS ARTICLE
   =================================================================== */
.news-single-page {
  padding-top: 0;
}

.article-section {
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  min-height: 60vh;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-date {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.article-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.article-img-box {
  width: 100%;
  max-height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  text-align: left;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2,
.article-content h3 {
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.article-content ul,
.article-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.article-content li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1rem 0;
}

.article-content strong {
  color: var(--text);
}

.article-content a {
    text-decoration: underline;
}

@media (max-width: 768px) {
  .article-img-box {
    max-height: 300px;
  }
}

/* ==========================================================================
   NEWS ARCHIVE PAGE
   ========================================================================== */

.na-page {
  background: var(--bg, #f4f4f6);
}

.na-hero {
  height: 45vh;
  min-height: 400px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.na-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(30,30,30,0.8), #000);
  z-index: 1;
}

.na-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  text-align: center;
}

.na-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a1a;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 1.5rem;
}
.na-back-btn i {
  font-size: 1.1rem;
  color: var(--primary, #f58217);
}
.na-back-btn:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.na-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: -1px;
}

.na-hero-sub {
  font-size: 1.1rem;
  color: var(--primary, #f58217);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Cards */
.na-list {
  padding: 5rem 0;
  background: var(--bg, #f4f4f6);
  min-height: 60vh;
}

.na-card {
  margin-bottom: 3rem;
}

.na-link {
  display: grid;
  grid-template-columns: 350px 1fr;
  background: var(--card-bg, #fff);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-height: 320px;
  border: 1px solid rgba(0,0,0,0.03);
}

.na-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.na-img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
}

.na-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.na-link:hover .na-img-wrap img {
  transform: scale(1.08);
}

.na-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.na-date {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary, #f58217);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: inline-block;
  background: rgba(245, 130, 23, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  width: fit-content;
}

.na-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text, #1a1a1a);
  font-weight: 800;
  transition: color 0.3s ease;
}

.na-link:hover h2 {
  color: var(--primary, #f58217);
}

.na-excerpt {
  font-size: 1rem;
  color: var(--text-light, #555);
  margin-bottom: 2rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.na-read-btn {
  align-self: flex-start;
  padding: 0.8rem 1.8rem;
  font-size: 0.9rem;
  background: var(--text, #1a1a1a);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: auto;
  display: inline-block;
}

.na-link:hover .na-read-btn {
  background: var(--primary, #f58217);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(245, 130, 23, 0.4);
}

/* Pagination */
.na-pagination {
  text-align: center;
  margin-top: 3rem;
}
.na-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text, #1a1a1a);
  font-weight: 600;
  transition: 0.3s;
}
.na-pagination .page-numbers.current,
.na-pagination .page-numbers:hover {
  background: var(--primary, #f58217);
  color: #fff;
}

/* Mobile */
@media (max-width: 900px) {
  .na-link {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
    height: auto;
  }
  .na-img-wrap {
    height: 100%;
  }
  .na-content {
    padding: 2rem;
  }
  .na-content h2 {
    font-size: 1.4rem;
  }
  .na-hero-title {
    font-size: 2.5rem;
  }
  .na-back-btn {
    margin-bottom: 1rem;
  }
}

/* ==========================================================================
   INNER PAGES (multi-page layout)
   ========================================================================== */

.gtp-page-hero {
  background: linear-gradient(135deg, #f58217, #e07a15);
  padding: calc(var(--header-height) + 2rem) 0 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.gtp-page-hero-inner {
  width: 100%;
  padding: 0;
}

.gtp-page-hero-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.gtp-page-hero-sub {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  opacity: 0.95;
}

.gtp-page-content {
  padding: 6rem 0;
  background: var(--bg, #f4f4f6);
}

.gtp-page-content--flush {
  padding-bottom: 1rem;
}

.gtp-page-content--compact {
  padding: 1.5rem 0 0;
}

.gtp-page-content .entry-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

.gtp-page-content .entry-content > *:first-child {
  margin-top: 0;
}

.gtp-page-faq {
  padding: 4rem 0 5rem;
  background: var(--bg, #f4f4f6);
}

.gtp-page-faq + .contact-section {
  padding-top: 4rem;
}

.gtp-page-intro-head {
  max-width: 900px;
  margin: 0 auto 0;
  text-align: center;
}

.gtp-page-faq .gtp-page-intro-head {
    margin: 0 auto 2.5rem;
}

.gtp-page-intro-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #111;
  margin: 0 0 0;
  font-weight: 700;
}

.gtp-page-intro-lead {
  max-width: 860px;
  margin: 1.5rem auto 0;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

.gtp-page-editor {
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.gtp-page-content--blog-intro {
  padding: 6rem 0 1.5rem;
  background: var(--bg, #f4f4f6);
}

.gtp-page-content--blog-intro + .gtp-page-blog-list {
  padding-top: 2rem;
}

.gtp-page-services {
  padding: 0;
  background: var(--bg, #f4f4f6);
}

.gtp-page-services .service-container {
    padding: 0;
}

.gtp-page-blog-list {
  padding: 6rem 0;
  background: var(--bg, #f4f4f6);
}

.gtp-page-blog-list.na-list {
  min-height: 0;
}

/* Blog category filter */
.blog-cat-filter {
  margin-bottom: 2.5rem;
}

.blog-cat-filter__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  align-items: center;
  justify-content: center;
}

.blog-cat-filter__btn {
  font-family: inherit;
  font-weight: 600;
  font-size: 1.2rem;
  color: #111;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.blog-cat-filter__btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.blog-cat-filter__btn:hover,
.blog-cat-filter__btn.is-active {
  color: var(--primary);
}

.blog-cat-filter__btn:hover::after,
.blog-cat-filter__btn.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.blog-posts-empty {
  text-align: center;
  padding: 4rem 0;
  opacity: 0.6;
  margin: 0;
}

@media (max-width: 768px) {
  .blog-cat-filter__list {
    gap: 1.25rem 1.75rem;
  }

  .blog-cat-filter__btn {
    font-size: 0.95rem;
  }
  
  .gtp-page-hero {
      padding: 2.5rem 0 2rem ;
  }
  
  .article-section {
    padding: 2.5rem 0 4rem;
}
}

/* ==========================================================================
   ABOUT US PAGE
   ========================================================================== */

.about-mission {
  padding: 6rem 0;
  background: #fff;
}

.about-mission-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.about-mission-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-mission-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mission-icon .bx {
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
}

.about-mission-head .about-section-title {
  margin: 0;
  text-align: left;
}

.about-story {
  padding: 6rem 0;
  background: var(--bg, #f4f4f6);
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 3rem;
  align-items: center;
}

.about-story-visual {
  text-align: center;
}

.about-story-visual-inner {
  aspect-ratio: 3 / 5;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(245, 130, 23, 0.15), rgba(245, 130, 23, 0.05));
  border: 2px dashed rgba(245, 130, 23, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-visual-inner i {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.85;
}

.about-story-visual-inner--image {
  border: none;
  background: #f0f0f0;
  overflow: hidden;
}

.about-story-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-visual-hint {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: #888;
  font-style: italic;
}

.about-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #111;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}

.about-section-title--left {
  text-align: left;
}

.about-prose {
  color: #555;
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-prose--center {
  text-align: center;
}

.about-prose p {
  margin: 0 0 1rem;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-prose ul,
.about-prose ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.about-prose li {
  margin-bottom: 0.35rem;
}

.about-prose strong {
  color: #222;
}

.about-page-team .about-team-text {
  max-width: 920px;
  margin: 2.5rem auto 0;
}

.stats-section-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 3rem;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-visual-inner {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .about-section-title--left {
    text-align: center;
  }

  .about-mission-head {
    flex-direction: column;
    text-align: center;
  }

  .about-mission-head .about-section-title {
    text-align: center;
  }
}

/* ==========================================================================
   CONTACT SECTION (inline layout)
   ========================================================================== */

.contact-section {
  padding: 6rem 0;
  background: #fff;
}

.contact-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #111;
  text-align: center;
  margin: 0 0 0.75rem;
}

.contact-section-subtitle {
  text-align: center;
  color: #555;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.contact-section-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  height: 100%;
}

.contact-form-col {
  display: flex;
  min-width: 0;
  height: 100%;
}

.contact-panel {
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 1.5rem;
}

.contact-panel-heading {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin: 0 0 1.25rem;
}

.contact-channels-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-channel-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 0 0 auto;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-phones-stack,
.contact-messengers-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  align-self: start;
}

.contact-channel-card-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-channel-card-top i {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-channel-card--phone .contact-channel-card-top i {
  color: var(--primary);
}

.contact-channel-card--whatsapp .contact-channel-card-top i {
  color: #25d366;
}

.contact-channel-card--telegram .contact-channel-card-top i {
  color: #0088cc;
}

.contact-channel-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 0.5rem;
  text-transform: none;
  letter-spacing: normal;
}

.contact-channel-card strong {
  font-size: 1rem;
  color: #111;
  font-weight: 400;
  word-break: break-word;
}

.contact-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  background: #111;
  color: #fff;
  transition: 0.3s;
  margin-top: auto;
  align-self: flex-start;
}

.contact-channel-btn:not(.contact-channel-btn--wa):not(.contact-channel-btn--tg):hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.contact-channel-btn--wa {
  background: #25d366;
}

.contact-channel-btn--wa:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

.contact-channel-btn--tg {
  background: #0088cc;
}

.contact-channel-btn--tg:hover {
  background: #0077b3;
  color: #fff;
  transform: translateY(-2px);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-map-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 220px;
  height: 100%;
  background: #e8e8e8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-map-wrap:hover {
  border-color: rgba(245, 130, 23, 0.45);
  box-shadow: 0 8px 24px rgba(245, 130, 23, 0.15);
}

.contact-map-iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
  pointer-events: none;
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.contact-map-link-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.contact-address-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(245, 130, 23, 0.45);
  text-underline-offset: 3px;
}

.contact-address-link:hover {
  color: var(--primary);
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-box {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  flex: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-info-box h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-info-box h4 i {
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-info-box p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form-panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.contact-form-panel .modal-title,
.contact-form-panel .modal-subtitle {
  text-align: center;
  flex-shrink: 0;
}

.contact-form-panel .gtp-cf7-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-form-panel .gtp-cf7-form .wpcf7-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form-panel .gtp-cf7-form .wpcf7-form p:has(textarea) {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.contact-form-panel .gtp-cf7-form .wpcf7-form textarea {
  flex: 1;
  min-height: 140px;
  resize: vertical;
}

.contact-form-panel .gtp-cf7-form .wpcf7-form input[type="submit"] {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .contact-section-grid {
    grid-template-columns: 1fr;
  }

  .contact-section-left,
  .contact-form-col,
  .contact-form-panel {
    height: auto;
  }

  .contact-form-panel .gtp-cf7-form .wpcf7-form textarea {
    min-height: 120px;
    flex: none;
  }
}

@media (max-width: 768px) {
  .contact-channels-split,
  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 6rem 0;
  }
}

/* ==========================================================================
   OUR ADVANTAGES PAGE
   ========================================================================== */

.why-advantages-guarantees {
  padding: 6rem 0;
  background: #fff;
}

.why-advantages-feature-header {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.why-advantages-feature-header .why-section-title {
  margin-bottom: 0.75rem;
}

.why-advantages-feature-header .why-section-subtitle {
  margin-bottom: 0;
}

.why-advantages-feature-body {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

.why-advantages-feature-visual {
  text-align: center;
}

.why-advantages-feature-img,
.why-advantages-feature-placeholder {
  width: 100%;
  
  margin: 0 auto;
  border-radius: 16px;
  aspect-ratio: 1;
  object-fit: cover;
}

.why-advantages-feature-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f4f4f6, #e8e8ec);
  color: #bbb;
  font-size: 2.25rem;
}

.why-advantages-feature-text {
  text-align: left;
}

.why-advantages-feature-hint {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: #888;
}

.why-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
}

.why-section-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
}

.why-section-prose {
  color: #555;
  line-height: 1.75;
  font-size: 1.02rem;
}

.why-section-prose p {
  margin: 0 0 1rem;
}

.why-section-prose p:last-child {
  margin-bottom: 0;
}

.why-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

.why-guarantee-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(245, 130, 23, 0.12);
  transition: all 0.35s ease;
}

.why-guarantee-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 36px rgba(245, 130, 23, 0.15);
  transform: translateY(-4px);
}

.why-guarantee-card > i {
  display: block;
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin: 0 auto 1.25rem;
}

.why-guarantee-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text);
  line-height: 1.35;
}

.why-guarantee-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #666;
}

.why-advantages-list {
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.why-advantages-list-inner {
  max-width: 960px;
}

.why-advantages-list-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-advantages-list-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.why-advantages-list-sub {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.9;
  line-height: 1.5;
}

.why-advantages-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.why-advantage-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.6rem 2rem;
  background: #fff;
  border-radius: 1.4rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  color: var(--text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-advantage-row:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.why-advantage-row-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-advantage-row-icon .bx {
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.why-advantage-row-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #111;
  line-height: 1.35;
}

.why-advantage-row-content p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #555;
}

/* Orange booking CTA */
.gtp-booking-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f58217, #e07a15);
  color: #fff;
  text-align: center;
}

.gtp-booking-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.gtp-booking-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.gtp-booking-cta-sub {
  font-size: 1.15rem;
  margin: 0 0 2rem;
  opacity: 0.95;
  line-height: 1.5;
}

.gtp-booking-cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #ff9a3d;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gtp-booking-cta-btn:hover {
  transform: translateY(-3px);
  background: #ffb366;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: #fff;
}

@media (max-width: 992px) {
  .why-guarantees-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .why-advantages-feature-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-advantages-feature-visual {
    max-width: 200px;
    margin: 0 auto;
  }

  .why-advantages-feature-text {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .why-advantage-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .why-advantage-row-icon {
    margin: 0 auto;
  }
}



/* Impressum / Legal Notice */
.gtp-impressum-page {
  background: #f8fafc;
  padding-top: calc(var(--header-height) + 2rem);
}

html body.admin-bar .gtp-impressum-page {
  padding-top: calc(var(--header-height) + 32px + 2rem);
}

@media (max-width: 782px) {
  html body.admin-bar .gtp-impressum-page {
    padding-top: calc(var(--header-height) + 46px + 2rem);
  }
}

.gtp-impressum {
  padding: 0 0 5rem;
}

.gtp-impressum__container {
  max-width: 700px;
}

.gtp-impressum-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 3.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  color: #334155;
}

.gtp-impressum-card__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.5px;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.gtp-impressum-card__lead {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

.gtp-impressum-card__company {
  margin-bottom: 0.25rem;
}

.gtp-impressum-card__company-name {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

.gtp-impressum-card__address {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.gtp-impressum-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 2.5rem 0 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  line-height: 1.3;
}

.gtp-impressum-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
  opacity: 0.85;
}

.gtp-impressum-card__text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.gtp-impressum-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

.gtp-impressum-contact-row:last-of-type {
  margin-bottom: 0;
}

.gtp-impressum-contact-row i {
  font-size: 1.2rem;
  color: #64748b;
  opacity: 0.75;
  flex-shrink: 0;
}

.gtp-impressum-contact-row a {
  color: inherit;
  text-decoration: none;
}

.gtp-impressum-contact-row a:hover {
  color: var(--primary);
}

.gtp-impressum-card__tax {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.gtp-impressum-card__tax strong {
  font-weight: 700;
  color: #1e293b;
}

@media (max-width: 600px) {
  .gtp-impressum {
    padding: 2rem 0 3.5rem;
  }

  .gtp-impressum-card {
    padding: 1.875rem;
  }

  .gtp-impressum-card__title {
    font-size: 1.8rem;
  }
}