:root {
    --brand-900: #082d49;
    --brand-800: #0b3f67;
    --brand-700: #125785;
    --brand-600: #1f6b9b;
    --accent: #d6a552;
    --ink-900: #102133;
    --ink-700: #42586f;
    --ink-500: #687b8e;
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --surface-alt: #eef4f8;
    --line: #d9e5ee;
    --shadow-sm: 0 18px 40px rgba(11, 63, 103, 0.08);
    --shadow-md: 0 24px 60px rgba(11, 63, 103, 0.14);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --content-max: 1180px;
    --content-pad: clamp(16px, 3vw, 28px);
    --section-gap: clamp(2.5rem, 5vw, 4.5rem);
    --body-font: "Poppins", "Segoe UI", Tahoma, sans-serif;
    --heading-font: "Roboto Slab", Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--body-font);
    line-height: 1.72;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top left, rgba(214, 165, 82, 0.14), transparent 24%),
        linear-gradient(180deg, #eef4f8 0%, #ffffff 15rem, #f6f9fc 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--brand-700);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--brand-900);
}

.visually-hidden,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(11, 63, 103, 0.12);
    box-shadow: 0 10px 28px rgba(8, 45, 73, 0.08);
}

.site-header-inner {
    width: min(1410px, calc(100% - 0.85rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.42rem 0;
}

.site-footer-inner {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 0 auto;
}

.site-branding {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-900);
    min-width: 0;
    flex: 0 0 auto;
}

.site-branding:hover,
.site-branding:focus {
    color: var(--brand-900);
}

.site-branding-mark {
    flex: 0 0 auto;
    width: clamp(132px, 16.8vw, 235px);
}

.site-branding-mark img {
    width: 100%;
    height: auto;
}

.site-branding-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.site-branding-text strong {
    font-family: var(--heading-font);
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-branding-text small {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.78rem;
}

.site-navigation {
    flex: 1 1 auto;
    min-width: 0;
}

.nav-menu,
.submenu,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.nav-menu > li,
.submenu > li {
    position: relative;
}

.menu-link-row {
    display: flex;
    align-items: center;
}

.nav-menu a,
.submenu a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-menu > li > .menu-link-row > a {
    color: var(--brand-800);
    padding: 0.48rem 0.46rem;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-menu > li.current-menu-item > .menu-link-row > a,
.nav-menu > li > .menu-link-row > a:hover,
.nav-menu > li > .menu-link-row > a:focus {
    color: var(--brand-900);
    background: rgba(31, 107, 155, 0.11);
}

.submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.95rem;
    height: 1.95rem;
    margin-left: -0.08rem;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--brand-800);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.submenu-toggle::before {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.submenu-toggle:hover,
.submenu-toggle:focus {
    background: rgba(31, 107, 155, 0.11);
}

.menu-item-has-children > .submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.4rem);
    display: none;
    min-width: 230px;
    padding: 0.65rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 63, 103, 0.12);
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.submenu .submenu {
    left: calc(100% + 0.5rem);
    top: -0.5rem;
}

.menu-item-has-children:hover > .submenu,
.menu-item-has-children:focus-within > .submenu,
.menu-item-has-children.open > .submenu {
    display: block;
}

.submenu a {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    color: var(--brand-800);
    font-size: 0.92rem;
}

.submenu li.current-menu-item > .menu-link-row > a,
.submenu a:hover,
.submenu a:focus {
    color: var(--brand-900);
    background: rgba(31, 107, 155, 0.1);
}

.submenu .submenu-toggle {
    width: 2rem;
    height: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex: 0 0 auto;
    border: 1px solid rgba(11, 63, 103, 0.14);
    background: #fff;
    color: var(--brand-800);
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 1200px) {
    .site-header-inner {
        width: min(1320px, calc(100% - 0.75rem));
        gap: 0.45rem;
    }

    .site-branding-mark {
        width: clamp(118px, 15.5vw, 205px);
    }

    .nav-menu > li > .menu-link-row > a {
        padding: 0.46rem 0.38rem;
        font-size: 0.78rem;
    }
}

.site-content {
    padding-bottom: 6rem;
}

.site-content > * {
    width: 100%;
}

.page-section {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 2.2rem auto 0;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.page-header,
.page-content {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 0 auto;
}

.page-header {
    padding: 3rem 0 1rem;
}

.page-header .entry-title {
    margin: 0;
    color: var(--brand-900);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4.5vw, 3rem);
}

.page-content {
    padding: clamp(1.55rem, 3vw, 2.35rem);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.page-content > :first-child {
    margin-top: 0;
}

.page-content p,
.page-content li {
    color: var(--ink-700);
}

.elementor-element {
    box-sizing: border-box;
}

.e-con {
    position: relative;
}

.e-con.e-parent {
    width: 100%;
    padding: clamp(2.15rem, 4.5vw, 4rem) 0;
}

.e-con.e-parent[data-settings*="background_background"] {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(232, 242, 248, 0.86));
}

.e-con.e-child {
    flex: 1 1 320px;
    min-width: min(100%, 280px);
}

.e-con,
.e-con-inner {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.e-con-inner {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 0 auto;
}

.e-grid .e-con-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.e-con.e-child[data-settings*="background_background"] {
    padding: clamp(1.2rem, 2vw, 1.6rem);
    background: linear-gradient(180deg, #ffffff, #f4f9fc);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

[data-settings*='"position":"absolute"'] {
    position: absolute !important;
    inset: auto auto clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3rem);
    max-width: min(38rem, calc(100% - 3rem));
    z-index: 4;
    padding: clamp(1rem, 2.2vw, 1.6rem);
    border-radius: 24px;
    background: rgba(8, 45, 73, 0.72);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

[data-settings*='"position":"absolute"'] .elementor-heading-title,
[data-settings*='"position":"absolute"'] p {
    color: #fff;
}

.elementor-widget {
    width: 100%;
}

.elementor-widget-container {
    width: 100%;
}

.elementor-widget-container p,
.elementor-widget-container li,
.elementor-widget-container td,
.elementor-widget-container th,
.elementor-widget-container label {
    color: var(--ink-700);
    font-size: 0.98rem;
    line-height: 1.72;
}

.elementor-widget-container p {
    margin: 0 0 1.05rem;
}

.elementor-widget-container ul,
.elementor-widget-container ol {
    margin: 0 0 1.15rem 1.3rem;
    padding: 0;
}

.elementor-widget-container li + li {
    margin-top: 0.55rem;
}

.elementor-widget-text-editor strong,
.page-content strong {
    color: var(--brand-900);
}

.elementor-heading-title {
    margin: 0;
    color: var(--brand-900);
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h1.elementor-heading-title {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

h2.elementor-heading-title {
    font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

h3.elementor-heading-title,
.elementor-image-box-title {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

h4.elementor-heading-title,
h5.elementor-heading-title,
h6.elementor-heading-title {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.elementor-button-wrapper {
    display: inline-flex;
}

.elementor-button,
.elementor-button-link,
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 46px;
    padding: 0.82rem 1.22rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1;
    box-shadow: 0 16px 32px rgba(11, 63, 103, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.elementor-button:hover,
.elementor-button:focus,
.elementor-button-link:hover,
.elementor-button-link:focus,
.contact-submit:hover,
.contact-submit:focus {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(11, 63, 103, 0.2);
    filter: saturate(1.05);
}

.elementor-widget-image .elementor-widget-container,
.elementor-widget-google_maps .elementor-widget-container {
    overflow: hidden;
    border-radius: 24px;
}

.elementor-widget-image img,
.elementor-image-box-img img {
    width: 100%;
    height: auto;
}

.elementor-image-box-wrapper {
    display: grid;
    grid-template-columns: minmax(120px, 200px) 1fr;
    gap: 1.3rem;
    align-items: start;
    padding: 1.35rem;
    background: linear-gradient(180deg, #ffffff, #f5f9fc);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.elementor-image-box-img {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
}

.elementor-image-box-img img {
    object-fit: cover;
}

.elementor-image-box-description {
    margin: 0.35rem 0 0;
}

.elementor-shortcode,
.map-embed iframe,
.elementor-custom-embed iframe {
    width: 100%;
}

.elementor-custom-embed iframe {
    min-height: 420px;
    border: 0;
    border-radius: 24px;
}

.selector {
    max-height: 20rem;
    overflow: auto;
    padding-right: 0.55rem;
}

.selector::-webkit-scrollbar {
    width: 10px;
}

.selector::-webkit-scrollbar-thumb {
    background: rgba(11, 63, 103, 0.3);
    border-radius: 999px;
}

.e-n-tabs {
    width: 100%;
    padding: 1.35rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.e-n-tabs-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.e-n-tab-title {
    border: 0;
    border-radius: 999px;
    background: var(--surface-alt);
    color: var(--brand-900);
    padding: 0.78rem 1rem;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.e-n-tab-title[aria-selected="true"] {
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
    color: #fff;
    box-shadow: 0 16px 30px rgba(11, 63, 103, 0.16);
}

.e-n-tab-title:hover,
.e-n-tab-title:focus {
    transform: translateY(-1px);
}

.e-n-tabs-content > [role="tabpanel"] {
    display: none;
    width: 100%;
}

.e-n-tabs-content > .e-active {
    display: block;
}

.htmega-table-style {
    width: 100%;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
}

.htb-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
}

.htb-table th,
.htb-table td {
    padding: 0.95rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    line-height: 1.6;
}

.htb-table th {
    background: #edf5fb;
    color: var(--brand-900);
    font-weight: 700;
}

.htb-table tbody tr:nth-child(even) {
    background: rgba(239, 245, 250, 0.55);
}

.htb-table tbody tr:hover {
    background: rgba(214, 165, 82, 0.08);
}

.htb-table tbody tr:last-child td {
    border-bottom: 0;
}

.htb-table td a {
    font-weight: 500;
}

.elementor-image-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #dce7ef;
    box-shadow: var(--shadow-sm);
}

.elementor-image-carousel {
    display: grid;
    gap: 1rem;
    padding: 0;
}

.elementor-image-carousel-wrapper.multi-slide .elementor-image-carousel {
    grid-template-columns: repeat(var(--slides-visible, 2), minmax(0, 1fr));
    padding: 1rem;
}

.swiper-slide {
    display: none;
    margin: 0;
}

.swiper-slide.is-active {
    display: block;
}

.swiper-slide-inner,
.swiper-slide-inner a {
    display: block;
    width: 100%;
    height: 100%;
}

.swiper-slide-inner img,
.swiper-slide-image {
    width: 100%;
    height: clamp(250px, 32vw, 480px);
    object-fit: cover;
}

.elementor-image-carousel-wrapper.multi-slide .swiper-slide-inner img,
.elementor-image-carousel-wrapper.multi-slide .swiper-slide-image {
    height: clamp(220px, 24vw, 320px);
}

.elementor-image-carousel-wrapper.logo-strip {
    background: rgba(255, 255, 255, 0.92);
}

.elementor-image-carousel-wrapper.logo-strip .elementor-image-carousel {
    align-items: stretch;
}

.elementor-image-carousel-wrapper.logo-strip .swiper-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 0.85rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.elementor-image-carousel-wrapper.logo-strip .swiper-slide-inner img,
.elementor-image-carousel-wrapper.logo-strip .swiper-slide-image {
    height: 72px;
    object-fit: contain;
}

.elementor-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(8, 45, 73, 0.76);
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.elementor-swiper-button:hover,
.elementor-swiper-button:focus {
    background: rgba(8, 45, 73, 0.94);
}

.elementor-swiper-button-prev {
    left: 1rem;
}

.elementor-swiper-button-next {
    right: 1rem;
}

.elementor-swiper-button svg {
    width: 18px;
    height: 18px;
}

.swiper-pagination {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.carousel-dot.is-active {
    background: #fff;
}

[id^="npgallery"] {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
}

#selector {
    max-height: 240px;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 0.35rem;
}

#selector ul {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.75rem;
}

#selector li {
    color: var(--ink-700);
}

#selector a[href="#"] {
    color: var(--ink-700);
    pointer-events: none;
    text-decoration: none;
}

#selector::-webkit-scrollbar {
    width: 12px;
}

#selector::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
}

#selector::-webkit-scrollbar-thumb {
    background: rgba(8, 45, 73, 0.34);
    border-radius: 999px;
}

.htmega-justify-single-image .thumb,
.htmega-justify-single-image .thumb a {
    display: block;
    height: 100%;
}

.htmega-justify-single-image .thumb a {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    background: #fff;
}

.htmega-justify-single-image .thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.htmega-justify-single-image .thumb a:hover img,
.htmega-justify-single-image .thumb a:focus img {
    transform: scale(1.03);
}

.contact-page {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 0;
}

.contact-page-intro {
    max-width: 56rem;
    margin-bottom: 1.5rem;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
    gap: 1.5rem;
}

.contact-panel {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: clamp(1.4rem, 2vw, 2rem);
    box-shadow: var(--shadow-sm);
}

.contact-panel h1,
.contact-panel h2,
.contact-panel h3 {
    margin-top: 0;
    color: var(--brand-900);
    font-family: var(--heading-font);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.45rem;
}

.form-field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brand-900);
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cddae5;
    border-radius: 16px;
    background: #fbfdff;
    font: inherit;
    color: var(--ink-900);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: 0;
    border-color: var(--brand-600);
    box-shadow: 0 0 0 4px rgba(31, 107, 155, 0.12);
}

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

.form-help,
.form-error,
.form-success {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    font-size: 0.94rem;
}

.form-help {
    background: #f2f8ff;
    color: var(--ink-700);
}

.form-success {
    background: #e9f9ef;
    color: #1f6f45;
    border: 1px solid #bfe5ce;
}

.form-error {
    background: #fff1f2;
    color: #a62637;
    border: 1px solid #f3c5cb;
}

.contact-address + .contact-address {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.contact-address p {
    margin: 0.45rem 0;
}

.legacy-gallery-page {
    margin-top: 3rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.legacy-gallery-header {
    max-width: 48rem;
    margin-bottom: 1.5rem;
}

.legacy-gallery-kicker {
    margin: 0 0 0.5rem;
    color: var(--brand-600);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legacy-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.legacy-gallery-card {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.legacy-gallery-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.legacy-gallery-card:hover img,
.legacy-gallery-card:focus img {
    transform: scale(1.03);
}

.legacy-gallery-caption {
    display: block;
    padding: 0.9rem 1rem 1rem;
    color: var(--ink-700);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
}

.ti-widget {
    position: relative;
}

.ti-widget-container {
    position: relative;
}

.ti-review-item {
    display: none;
}

.ti-review-item.is-active {
    display: block;
}

.ti-inner {
    padding: clamp(1.35rem, 2vw, 1.8rem);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
}

.ti-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ti-profile-img img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(31, 107, 155, 0.12);
}

.ti-profile-details {
    display: grid;
    gap: 0.25rem;
}

.ti-name {
    color: var(--brand-900);
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 700;
}

.ti-date,
.ti-date a,
.text-link {
    color: var(--ink-700);
}

.ti-stars {
    display: flex;
    gap: 0.25rem;
    margin: 1rem 0 0.75rem;
}

.ti-star {
    width: 17px;
    height: 17px;
}

.ti-review-content {
    color: var(--ink-700);
    font-size: 1rem;
    line-height: 1.78;
}

.ti-read-more,
.ti-footer,
.ti-footer-filter-text {
    display: none !important;
}

.ti-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
    margin-bottom: 0.9rem;
}

.ti-prev,
.ti-next {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(8, 45, 73, 0.92);
    cursor: pointer;
}

.ti-prev::before,
.ti-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.ti-prev::before {
    transform: translate(-35%, -50%) rotate(135deg);
}

.ti-next::before {
    transform: translate(-65%, -50%) rotate(-45deg);
}

.ti-controls-line {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
}

.ti-controls-line .dot,
.ti-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(8, 45, 73, 0.18);
}

.ti-dot {
    border: 0;
    padding: 0;
    cursor: pointer;
}

.ti-dot.is-active {
    background: var(--brand-700);
}

.site-footer {
    margin-top: 4rem;
    background: linear-gradient(180deg, var(--brand-900), #061f33);
    color: rgba(255, 255, 255, 0.84);
}

.site-footer-inner {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 3rem 0 2rem;
}

.site-footer h2 {
    margin: 0 0 1rem;
    color: #fff;
    font-family: var(--heading-font);
    font-size: 1.05rem;
}

.site-footer p,
.site-footer li {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.72;
}

.site-footer a {
    color: #fff;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1rem;
    color: #fff;
}

.site-footer-logo img {
    width: 80px;
}

.site-footer-logo span {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.site-footer-logo strong {
    font-family: var(--heading-font);
    font-size: 1.05rem;
}

.site-footer-logo small {
    color: rgba(255, 255, 255, 0.72);
}

.footer-links li + li {
    margin-top: 0.55rem;
}

.footer-copy {
    padding: 1rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-copy p {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 0 auto;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
    color: #fff;
    box-shadow: 0 22px 38px rgba(8, 45, 73, 0.26);
}

.floating-contact svg {
    width: 24px;
    height: 24px;
}

.floating-contact:hover,
.floating-contact:focus {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .site-header-inner {
        flex-wrap: wrap;
    }

    .site-navigation {
        flex-basis: 100%;
    }

    .nav-menu {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .site-footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .site-header-inner {
        align-items: center;
        justify-content: space-between;
    }

    .site-branding {
        flex: 1 1 auto;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-navigation {
        width: 100%;
        display: none;
        margin-top: 0.75rem;
    }

    .site-navigation.open {
        display: block;
    }

    .nav-menu,
    .submenu {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu {
        gap: 0.6rem;
    }

    .nav-menu > li > .menu-link-row,
    .submenu > li > .menu-link-row {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 0.45rem;
    }

    .nav-menu > li > .menu-link-row > a,
    .submenu a {
        width: 100%;
        border-radius: 16px;
        background: rgba(31, 107, 155, 0.08);
    }

    .submenu-toggle {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: rgba(31, 107, 155, 0.08);
        margin-left: 0;
    }

    .menu-item-has-children > .submenu,
    .submenu .submenu {
        position: static;
        min-width: 0;
        margin-top: 0.5rem;
        padding: 0.55rem 0 0 1rem;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .menu-item-has-children:not(.open) > .submenu {
        display: none;
    }

    .contact-page-grid,
    .contact-form-row,
    .site-footer-inner {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding-top: 2rem;
    }

    [data-settings*='"position":"absolute"'] {
        position: static !important;
        max-width: none;
        margin: 1rem;
    }

    .elementor-image-box-wrapper {
        grid-template-columns: 1fr;
    }

    .elementor-image-carousel-wrapper.multi-slide .elementor-image-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .site-header-inner {
        width: min(var(--content-max), calc(100% - 1.25rem));
        padding: 0.9rem 0;
    }

    .site-branding {
        align-items: flex-start;
    }

    .site-branding-mark {
        width: 62px;
    }

    .site-branding-text small {
        display: none;
    }

    .e-con-inner,
    .page-header,
    .page-content,
    .page-section,
    .contact-page,
    .site-footer-inner,
    .footer-copy p {
        width: calc(100% - 1.25rem);
    }

    .e-n-tabs,
    .contact-panel,
    .page-section {
        padding: 1.1rem;
    }

    .legacy-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .swiper-slide-inner img,
    .swiper-slide-image {
        height: 240px;
    }

    .floating-contact {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }
}

.structured-page {
    padding: clamp(1.8rem, 3vw, 2.5rem);
}

.structured-page-header {
    margin-bottom: 1.4rem;
}

.structured-page-header .entry-title {
    margin: 0;
    color: var(--brand-900);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
}

.structured-prose {
    color: var(--ink-700);
}

.structured-prose > :first-child {
    margin-top: 0;
}

.structured-prose > :last-child {
    margin-bottom: 0;
}

.structured-actions {
    margin-top: 1.5rem;
}

.structured-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.8rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
    color: #fff;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.structured-button:hover,
.structured-button:focus {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-800), #06253d);
}

.structured-feature-stack {
    display: grid;
    gap: 1.25rem;
}

.structured-feature-card {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
    padding: clamp(1.2rem, 2.5vw, 1.6rem);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f5fafc);
}

.structured-feature-media {
    overflow: hidden;
    border-radius: 20px;
    background: #eff5fa;
}

.structured-feature-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.structured-feature-content h2 {
    margin: 0 0 0.65rem;
    color: var(--brand-900);
    font-family: var(--heading-font);
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.structured-people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.15rem;
}

.structured-person-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f5fafc);
    box-shadow: var(--shadow-sm);
}

.structured-person-media {
    aspect-ratio: 4 / 4.4;
    background: #ecf3f8;
}

.structured-person-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.structured-person-copy {
    padding: 1rem 1rem 1.1rem;
}

.structured-person-copy h2 {
    margin: 0;
    color: var(--brand-900);
    font-family: var(--heading-font);
    font-size: 1.22rem;
    line-height: 1.25;
}

.structured-person-role,
.structured-person-email,
.structured-person-note {
    margin: 0.55rem 0 0;
    color: var(--ink-700);
}

.structured-person-role {
    font-weight: 600;
}

.structured-person-email a {
    color: var(--brand-700);
}

.structured-document-panel {
    padding: clamp(1.1rem, 2.2vw, 1.4rem);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f6fafc);
}

.structured-document-list {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.structured-document-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: start;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(18, 87, 133, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
}

.structured-document-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    min-height: 36px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(214, 165, 82, 0.18);
    color: #7b5712;
    font-size: 0.84rem;
    font-weight: 700;
}

.structured-document-copy {
    min-width: 0;
}

.structured-document-link,
.structured-document-text {
    display: inline-block;
    color: var(--ink-900);
    font-weight: 500;
    line-height: 1.6;
}

.structured-document-link:hover,
.structured-document-link:focus {
    color: var(--brand-700);
}

.structured-document-empty {
    opacity: 0.8;
}

.structured-tabs {
    display: grid;
    gap: 1rem;
}

.structured-tabs .e-n-tabs-heading {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.structured-tabs .e-n-tab-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-900);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.structured-tabs .e-n-tab-title[aria-selected="true"] {
    background: linear-gradient(135deg, var(--brand-700), var(--brand-900));
    color: #fff;
    border-color: transparent;
}

.structured-tab-panel {
    margin-top: 0.25rem;
}

.structured-tab-panel[hidden] {
    display: none;
}

.elementor-image-carousel-wrapper.is-marquee {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--line);
    box-shadow: none;
}

.elementor-image-carousel-wrapper.is-marquee .elementor-image-carousel {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.9rem;
    width: max-content;
    padding: 0.45rem 0.9rem;
    animation: logo-marquee var(--marquee-duration, 80s) linear infinite;
    will-change: transform;
}

.elementor-image-carousel-wrapper.is-marquee:hover .elementor-image-carousel,
.elementor-image-carousel-wrapper.is-marquee:focus-within .elementor-image-carousel {
    animation-play-state: paused;
}

.elementor-image-carousel-wrapper.is-marquee .swiper-slide {
    display: block;
    flex: 0 0 clamp(118px, 9vw, 156px);
    margin: 0;
}

.elementor-image-carousel-wrapper.is-marquee .swiper-slide-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    padding: 0.35rem 0.45rem;
    background: transparent;
    border: 0;
}

.elementor-image-carousel-wrapper.is-marquee .swiper-slide-inner img,
.elementor-image-carousel-wrapper.is-marquee .swiper-slide-image {
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.elementor-image-carousel-wrapper.is-marquee .elementor-swiper-button,
.elementor-image-carousel-wrapper.is-marquee .swiper-pagination {
    display: none !important;
}

@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--marquee-distance, 1200px)));
    }
}

body.page-home,
body.page-home #page,
body.page-home .site-content {
    background: #fff;
    background-image: none !important;
}

.page-home .site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(11, 63, 103, 0.12);
    box-shadow: none;
}

.page-home .site-header-inner {
    padding: 0.42rem 0;
}

.page-home .site-navigation.open {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 63, 103, 0.12);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
}

.page-home .site-content {
    padding-bottom: 0;
    margin-top: 0;
    background: #fff;
}

.page-home .e-con.e-parent[data-settings*="background_background"] {
    background: transparent;
}

.page-home .e-con.e-parent {
    padding-block: clamp(0.55rem, 1.8vw, 1.15rem);
}

.page-home .e-con-inner {
    width: min(var(--content-max), calc(100% - 1.5rem));
    gap: clamp(0.75rem, 1.8vw, 1rem);
}

.page-home .elementor-element-0498c07 {
    padding: 0;
    margin-top: 0;
    overflow: hidden;
}

.page-home .elementor-element-058dcb0 > .elementor-widget-container {
    margin: -11px -11px 0;
}

.page-home .elementor-element-0498c07 .elementor-image-carousel-wrapper {
    border-radius: 0 0 26px 26px;
    background: #082d49;
    box-shadow: none;
}

.page-home .elementor-element-0498c07 .elementor-widget-container,
.page-home .elementor-element-0498c07 .elementor-image-carousel,
.page-home .elementor-element-0498c07 .swiper-slide,
.page-home .elementor-element-0498c07 .swiper-slide-inner {
    margin: 0;
}

.page-home .elementor-element-0498c07 .swiper-slide-image {
    height: clamp(360px, 47vw, 620px);
}

.page-home [data-settings*='"position":"absolute"'] {
    inset: auto auto clamp(1rem, 2vw, 1.6rem) clamp(1rem, 2.4vw, 1.6rem);
    max-width: min(34rem, calc(100% - 2rem));
    padding: clamp(0.9rem, 2vw, 1.15rem);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8, 45, 73, 0.84), rgba(8, 45, 73, 0.72));
    box-shadow: 0 18px 36px rgba(8, 45, 73, 0.18);
}

.page-home .elementor-element-730a238,
.page-home .elementor-element-d4fca5c,
.page-home .elementor-element-063a316,
.page-home .elementor-element-64b2e37,
.page-home .elementor-element-49110fd,
.page-home .elementor-element-bd84e05 {
    margin-top: 0;
}

.home-about-band {
    width: min(var(--content-max), calc(100% - 1.5rem));
    margin: 1rem auto 0.4rem;
}

.home-about-band__inner {
    padding: clamp(1.85rem, 3vw, 2.8rem) clamp(1.35rem, 3vw, 2.5rem);
    border-radius: 26px;
    background: linear-gradient(135deg, var(--brand-800), var(--brand-900));
    box-shadow: 0 24px 48px rgba(8, 45, 73, 0.16);
    text-align: center;
}

.home-about-band__title {
    margin: 0 0 0.7rem;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(1.35rem, 2vw, 1.95rem);
    line-height: 1.15;
}

.home-about-band__text {
    max-width: 62rem;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(0.98rem, 1.2vw, 1.08rem);
    line-height: 1.82;
}

.home-about-band__actions {
    display: flex;
    justify-content: center;
    margin-top: 1.15rem;
}

.home-about-band__actions .elementor-button {
    background: #fff;
    color: var(--brand-900);
    box-shadow: none;
}

.home-about-band__actions .elementor-button:hover,
.home-about-band__actions .elementor-button:focus {
    color: var(--brand-900);
    background: #f3f8fc;
    box-shadow: 0 14px 26px rgba(6, 27, 43, 0.16);
}

.page-home .elementor-element-8c2dcfd .elementor-image-carousel,
.page-home .elementor-element-aba3afd .elementor-image-carousel {
    padding: 0;
    gap: 0.75rem;
}

.page-home .elementor-element-8c2dcfd .swiper-slide-image {
    height: clamp(190px, 22vw, 280px);
}

.page-home .elementor-element-aba3afd .swiper-slide-image {
    height: clamp(220px, 24vw, 300px);
}

.page-home .elementor-element-063a316 .e-con-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
}

.page-home .elementor-element-063a316 .e-con.e-child[data-settings*="background_background"] {
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
}

.page-home .elementor-element-d0c491b,
.page-home .elementor-element-4bd284e {
    min-width: 0;
}

.page-home .elementor-element-d0c491b .elementor-widget-container,
.page-home .elementor-element-d0c491b .elementor-image-carousel-wrapper,
.page-home .elementor-element-d0c491b .elementor-image-carousel,
.page-home .elementor-element-d0c491b .swiper-slide,
.page-home .elementor-element-d0c491b .swiper-slide-inner,
.page-home .elementor-element-d0c491b .swiper-slide-inner a {
    height: 100%;
}

.page-home .elementor-element-d0c491b .elementor-image-carousel-wrapper,
.page-home .elementor-element-4bd284e .elementor-image-carousel-wrapper {
    height: 100%;
    border-radius: 14px;
    box-shadow: none;
}

.page-home .elementor-element-d0c491b .swiper-slide-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 14px;
}

.page-home .elementor-element-4bd284e .elementor-image-carousel-wrapper {
    height: 100%;
}

.page-home .elementor-element-d0c491b .elementor-swiper-button,
.page-home .elementor-element-4bd284e .elementor-swiper-button {
    width: 42px;
    height: 42px;
}

.page-home .elementor-element-64b2e37 {
    padding-bottom: 0.35rem;
}

.page-home .elementor-element-49110fd {
    padding-top: 0.1rem;
}

.page-home .elementor-element-74d2f72.elementor-widget-image-carousel {
    width: 100%;
}

.page-home .elementor-element-bd84e05 {
    padding-top: 1.25rem;
    padding-bottom: 0;
}

.page-home .elementor-element-bd84e05 .e-con-inner {
    gap: 0.85rem;
}

.page-home .elementor-element-74251ec .htmega-gridimage-area {
    width: 100%;
}

.page-home .elementor-element-74251ec .htb-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.page-home .elementor-element-74251ec .htb-col-md-3 {
    min-width: 0;
    grid-column: span 2;
}

.page-home .elementor-element-74251ec .htb-col-md-3:nth-child(4) {
    grid-column: 2 / span 2;
}

.page-home .elementor-element-74251ec .htb-col-md-3:nth-child(5) {
    grid-column: 4 / span 2;
}

.page-home .elementor-element-74251ec .htmega-singleimage-grid {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: none;
}

.page-home .elementor-element-74251ec .thumb,
.page-home .elementor-element-74251ec .thumb a {
    display: block;
    height: 100%;
}

.page-home .elementor-element-74251ec .thumb img {
    width: 100%;
    height: clamp(220px, 18vw, 270px);
    object-fit: cover;
}

.page-home .elementor-element-74251ec .image-grid-content {
    position: absolute;
    inset: auto 0 0;
    padding: 1rem 1rem 0.95rem;
    background: linear-gradient(180deg, transparent, rgba(8, 45, 73, 0.86));
}

.page-home .elementor-element-74251ec .hover-action h2 {
    margin: 0;
    color: #fff;
    font-family: var(--heading-font);
    font-size: clamp(0.95rem, 1.3vw, 1.12rem);
    line-height: 1.25;
}

.page-home .elementor-element-74251ec .read-btn {
    position: absolute;
    inset: 0;
}

.page-home .ti-horizontal-strip .ti-controls,
.page-home .ti-horizontal-strip .ti-controls-line {
    display: none;
}

.page-home .ti-horizontal-strip .ti-reviews-container-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 32%);
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
}

.page-home .ti-horizontal-strip .ti-reviews-container-wrapper::-webkit-scrollbar {
    height: 10px;
}

.page-home .ti-horizontal-strip .ti-reviews-container-wrapper::-webkit-scrollbar-thumb {
    background: rgba(8, 45, 73, 0.18);
    border-radius: 999px;
}

.page-home .ti-horizontal-strip .ti-review-item {
    display: block;
    scroll-snap-align: start;
}

.page-home .ti-horizontal-strip .ti-inner {
    height: 100%;
    padding: 1.15rem 1.2rem;
    border-radius: 18px;
    box-shadow: none;
}

.page-home .ti-horizontal-strip .ti-review-header {
    align-items: center;
    gap: 0.8rem;
}

.page-home .ti-horizontal-strip .ti-profile-img img {
    width: 58px;
    height: 58px;
}

.page-home .ti-horizontal-strip .ti-name {
    font-size: 1rem;
}

.page-home .ti-horizontal-strip .ti-review-content {
    font-size: 0.94rem;
    line-height: 1.65;
}

.page-about-us .site-content,
.page-company-profile .site-content,
.page-vision-mission .site-content,
.page-board-of-directors .site-content,
.page-team-members .site-content,
.page-services .site-content {
    padding-bottom: 3rem;
}

.page-about-us .structured-page,
.page-company-profile .structured-page,
.page-vision-mission .structured-page,
.page-board-of-directors .structured-page,
.page-team-members .structured-page {
    width: min(var(--content-max), calc(100% - 2rem));
    margin: 1.25rem auto 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page-about-us .structured-page-header,
.page-company-profile .structured-page-header,
.page-vision-mission .structured-page-header,
.page-board-of-directors .structured-page-header,
.page-team-members .structured-page-header {
    margin-bottom: 1rem;
}

.page-about-us .structured-page-header .entry-title,
.page-company-profile .structured-page-header .entry-title,
.page-vision-mission .structured-page-header .entry-title,
.page-board-of-directors .structured-page-header .entry-title,
.page-team-members .structured-page-header .entry-title {
    font-size: clamp(1.9rem, 3.2vw, 2.5rem);
    letter-spacing: -0.03em;
}

.page-about-us .structured-prose,
.page-company-profile .structured-prose,
.page-vision-mission .structured-prose {
    max-width: 74rem;
    font-size: 0.99rem;
    line-height: 1.72;
}

.page-about-us .structured-button,
.page-company-profile .structured-button {
    min-height: 42px;
    padding: 0.72rem 1.15rem;
    border-radius: 12px;
    box-shadow: none;
}

.page-vision-mission .structured-feature-stack {
    gap: 1rem;
}

.page-vision-mission .structured-feature-card {
    grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
}

.page-vision-mission .structured-feature-card:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.page-vision-mission .structured-feature-media {
    border-radius: 16px;
    background: #eef3f6;
}

.page-vision-mission .structured-feature-content h2 {
    margin-bottom: 0.45rem;
    font-size: clamp(1.3rem, 2vw, 1.55rem);
}

.page-board-of-directors .structured-people-grid,
.page-team-members .structured-people-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1rem;
}

.page-board-of-directors .structured-person-card,
.page-team-members .structured-person-card {
    border: 1px solid #e2e8ee;
    border-radius: 16px;
    background: #fff;
    box-shadow: none;
}

.page-board-of-directors .structured-person-media,
.page-team-members .structured-person-media {
    aspect-ratio: 4 / 4.6;
    background: #eef3f6;
}

.page-board-of-directors .structured-person-copy,
.page-team-members .structured-person-copy {
    padding: 0.9rem 0.95rem 1rem;
    text-align: center;
}

.page-board-of-directors .structured-person-copy h2,
.page-team-members .structured-person-copy h2 {
    font-size: 1.05rem;
}

.page-board-of-directors .structured-person-role,
.page-team-members .structured-person-role {
    margin-top: 0.4rem;
    color: var(--brand-700);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-board-of-directors .structured-person-note,
.page-team-members .structured-person-note,
.page-team-members .structured-person-email {
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

.page-services .e-con.e-parent {
    padding-top: 0.8rem;
    padding-bottom: 0;
}

.page-services .e-n-tabs {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page-services .e-n-tabs-heading {
    width: min(var(--content-max), calc(100% - 1.5rem));
    margin: 0 auto 1rem;
    gap: 0.6rem;
}

.page-services .e-n-tab-title {
    border-radius: 14px;
    padding: 0.8rem 1.1rem;
    background: #eef4f8;
    box-shadow: none;
}

.page-services .e-n-tab-title[aria-selected="true"] {
    box-shadow: none;
}

.page-services .e-n-tabs-content {
    width: min(var(--content-max), calc(100% - 1.5rem));
    margin: 0 auto;
}

.page-services .e-n-tabs-content > [role="tabpanel"] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.page-services .e-n-tabs-content > .e-active {
    display: grid;
}

.page-services .e-n-tabs-content > [role="tabpanel"] > .elementor-widget,
.page-services .e-n-tabs-content > [role="tabpanel"] > .e-con-full {
    grid-column: 1 / -1;
}

.page-services .e-n-tabs-content > [role="tabpanel"] > .e-con-boxed.e-con.e-child {
    margin: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8fbfd;
    box-shadow: none;
}

.page-services .e-n-tabs-content > [role="tabpanel"] > .e-con-boxed.e-con.e-child .e-con-inner {
    width: 100%;
}

.page-services .elementor-widget-text-editor p,
.page-services .elementor-widget-text-editor li,
.page-services .htb-table td,
.page-services .htb-table th {
    font-size: 0.94rem;
    line-height: 1.58;
}

.page-services .htmega-table-style {
    border-radius: 16px;
    box-shadow: none;
}

.page-services .htb-table th,
.page-services .htb-table td {
    padding: 0.78rem 0.85rem;
}

.page-services .elementor-widget-image img {
    max-width: min(220px, 100%);
    margin: 0 auto;
}

.page-services .elementor-button {
    min-height: 44px;
    border-radius: 12px;
    box-shadow: none;
}

@media (max-width: 900px) {
    .structured-feature-card {
        grid-template-columns: 1fr;
    }

    .page-home .site-header {
        position: sticky;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid rgba(11, 63, 103, 0.12);
        box-shadow: none;
    }

    .page-home .site-header-inner {
        padding: 0.6rem 0;
    }

    .page-home .site-navigation.open {
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 18px;
        box-shadow: var(--shadow-sm);
    }

    .page-home .elementor-element-063a316 .e-con-inner {
        grid-template-columns: 1fr;
    }

    .page-home .elementor-element-74251ec .htb-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .elementor-element-74251ec .htb-col-md-3,
    .page-home .elementor-element-74251ec .htb-col-md-3:nth-child(4),
    .page-home .elementor-element-74251ec .htb-col-md-3:nth-child(5) {
        grid-column: auto;
    }

    .page-services .e-n-tabs-content > [role="tabpanel"] {
        grid-template-columns: 1fr;
    }

    .page-home .elementor-element-0498c07 .elementor-image-carousel-wrapper {
        border-radius: 0 0 18px 18px;
    }

    .page-home .elementor-image-carousel-wrapper.is-marquee .swiper-slide {
        flex-basis: clamp(104px, 28vw, 132px);
    }

    .page-home .ti-horizontal-strip .ti-reviews-container-wrapper {
        grid-auto-columns: minmax(250px, 84vw);
    }
}

@media (max-width: 640px) {
    .page-home .elementor-element-74251ec .htb-row {
        grid-template-columns: 1fr;
    }

    .structured-document-item {
        grid-template-columns: 1fr;
    }
}
