/* Global Typography */
body {
    font-family: 'DM Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Viga', sans-serif;
}

/* Global Container System */
:is(.th-container, .th-section) .th-wrapper:not(.th-full-width) {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.th-wrapper.th-full-width {
    width: 100%;
}

/* Header Navigation Styles */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    color: #222222;
    font-size: 1rem;
    line-height: 1.1875;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #F6821F;
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: #F6821F;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation .current-menu-item > a,
.main-navigation .current-page-item > a {
    color: #073358;
    font-weight: 600;
}

.main-navigation .current-menu-item > a::after,
.main-navigation .current-page-item > a::after {
    width: 100%;
    background-color: #073358;
}

/* Mobile Navigation */
.mobile-navigation {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.mobile-navigation.active {
    max-height: 1000px;
    opacity: 1;
}

.mobile-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-navigation li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-navigation li:last-child {
    border-bottom: none;
}

.mobile-navigation a {
    display: block;
    padding: 1rem 0;
    color: #222222;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-navigation a:hover {
    color: #073358;
    padding-left: 1rem;
    background-color: rgba(7, 51, 88, 0.05);
}

.mobile-navigation .current-menu-item > a,
.mobile-navigation .current-page-item > a {
    color: #073358;
    font-weight: 600;
    border-left: 3px solid #073358;
    padding-left: calc(1rem - 3px);
}

/* Menu Toggle Icon Animation */
.menu-toggle .menu-icon-close {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-open {
    display: none;
}

.menu-toggle[aria-expanded="true"] .menu-icon-close {
    display: block;
}

/* Gallery thumbs – active state */
.gallery-thumbs .swiper-slide-thumb-active {
    box-shadow: 0 0 0 2px #f6821f;
    border-radius: 0.5rem;
}

/* Testimonials – avatar pagination active state */
.testimonial-dot {
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-dot-active {
    width: 3.5rem !important;
    height: 3.5rem !important;
    opacity: 1 !important;
    box-shadow: 0 0 0 2px #f6821f;
}
@media (min-width: 768px) {
    .testimonial-dot-active {
        width:  64px !important;
        height: 64px !important;
    }
}
