/**
 * Lakson SPK Theme - Main Stylesheet
 *
 * @package LaksonSPK
 */

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --primary-gold: #cfa009;
    --primary-gold-rgb: 207, 160, 9;
    --accent-gold: #2596be;
    --accent-gold-light: #5cb8d2;
    --accent-gold-pale: #b4dce8;
    --dark-bg: #1e1e1d;
    --dark-bg-alt: #2a2a29;
    --cream-bg: #f8f3e3;
    --light-gray-bg: #ebecec;
    --text-dark: #1e1e1d;
    --text-muted: #767676;
    --text-white: #ffffff;
    --border-gray: #c4c4c4;
    --font-primary: 'Roboto', Arial, Helvetica, sans-serif;
    --container-max: 1240px;
    --header-height: auto;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    --bs-primary: #cfa009;
    --bs-primary-rgb: 207, 160, 9;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prevent content jump when header becomes sticky */
body.has-sticky-header {
    padding-top: 0;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-gold);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--text-dark);
}

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

/* ============================================================
   LAYOUT CONTAINER
   ============================================================ */
#wrapper.laksonspk {
    overflow-x: hidden;
}

.site-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.site-container-fluid {
    width: 100%;
}

/* ============================================================
   HEADER
   ============================================================ */
#website-header {
    position: relative;
    z-index: 100;
    background: var(--dark-bg);
}

#header.navbar {
    padding: 0;
    border: none;
    background: transparent !important;
    min-height: auto;
}

/* Sticky Header */
#website-header.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

#website-header.sticky-header .site-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 15px;
}

#website-header.sticky-header .top-country-menu {
    display: none;
}

#website-header.sticky-header .h-logo .navbar-brand img,
#website-header.sticky-header .h-logo .custom-logo,
#website-header.sticky-header .h-logo .wp-custom-logo img {
    max-height: 50px;
}

#website-header.sticky-header #mainNavigation {
    margin-top: 0;
}

#website-header.sticky-header .navbar-header-row {
    width: 100%;
}

#website-header.sticky-header #mainNavigation .navbar-nav {
    width: 100%;
}

/* Logo */
.h-logo {
    position: relative;
    z-index: 101;
}

.h-logo .navbar-brand {
    display: block;
    position: relative;
    z-index: 101;
    padding: 5px 0;
}

.h-logo .navbar-brand img,
.h-logo .custom-logo {
    max-height: 65px;
    width: auto;
}

/* Navbar Header Row */
.navbar-header-row {
    position: relative;
    z-index: 102;
}

.site-title-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.h-logo .wp-custom-logo img {
    max-height: 65px;
    width: auto;
}

/* Navbar Toggler */
.navbar-toggler {
    display: none;
    background-color: transparent;
    border: 1px solid hsla(0, 0%, 100%, 0.1);
    border-radius: 0.25rem;
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.25rem 0.75rem;
    outline: none !important;
    color: #fff;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* Top Country Menu */
.top-country-menu {
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    gap: 25px;
}

.conries_drop-down,
.contries_drop-down {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    z-index: 8;
}

.top-country-box {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 101;
}

.call-location-box {
    width: auto;
}

.top-country-box a {
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: static;
    z-index: 2;
    white-space: nowrap;
    cursor: pointer;
}

.top-country-box .top-country-arrow {
    border: 5px solid transparent;
    border-top-color: #fff;
    display: inline-block;
    width: 0;
    height: 0;
    font-size: 0;
    margin-left: 4px;
    vertical-align: middle;
    transition: transform 0.2s;
}

.conries_drop-down:hover .top-country-arrow,
.contries_drop-down:hover .top-country-arrow {
    transform: rotate(180deg);
}

/* Country Dropdown Lists */
.country-hidden-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e1e1d !important;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    z-index: 200;
    padding: 0;
    padding-left: 10px;
    list-style: none;
    margin: 0;
    overflow: hidden;
}

.country-hidden-list.active,
.conries_drop-down:hover .country-hidden-list,
.contries_drop-down:hover .country-hidden-list {
    display: block;
}

.country-hidden-list ul {
    padding: 8px 0;
    margin: 0;
}

.country-hidden-list ul li {
    margin: 0 !important;
    padding: 0;
    list-style: none;
}

.country-hidden-list ul li a {
    font-size: 13px;
    color: #fff !important;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #c4c4c4;
    font-weight: 700;
}

.country-hidden-list ul li a:hover {
    color: #cfa009 !important;
    padding-left: 5px;
}

/* Phone list has different styling */
.country-phone-list {
    background: #1e1e1d !important;
    border: none;
    margin: 0;
    padding: 0;
    padding-left: 10px;
    width: 320px;
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-radius: 6px;
    z-index: 200;
    overflow: hidden;
}

.country-phone-list ul {
    padding: 8px 0;
    margin: 0;
}

.country-phone-list ul li {
    margin: 0 !important;
    padding: 0;
}

.country-phone-list ul li a {
    font-size: 0.9375rem;
    color: #fff !important;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #c4c4c4;
    font-weight: 700;
}

.country-phone-list ul li:last-child a {
    border-bottom: none;
}

.country-phone-list ul li a:hover {
    color: #cfa009 !important;
    padding-left: 5px;
}

.cities_f_name {
    display: block;
    font-weight: 600;
    color: #fff;
    font-size: 13px;
}

.cities_f_number {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 13px;
    white-space: nowrap;
}

.cities_f_name:hover {
    color: #cfa009 !important;
}

.cities_f_name:hover {
    color: #cfa009 !important;
}

/* ============================================================
   NAVIGATION MENU (Bootstrap 5 Based)
   ============================================================ */
.row .forMobileNav {
    padding: 0;
}


#mainNavigation .navbar-nav {
    gap: 0;
}

#mainNavigation .nav-link,
#mainNavigation .navbar-nav > li > a {
    color: #fff !important;
    font-size: 1.0625rem;
    font-weight: 400;
    padding: 0 10px !important;
    height: 45px;
    line-height: 45px;
    transition: all 0.3s ease;
    text-transform: none;
    white-space: nowrap;
    border-bottom: 4px solid transparent;
}

#mainNavigation .nav-link:hover,
#mainNavigation .navbar-nav > li > a:hover,
#mainNavigation .nav-item.active .nav-link {
    color: #fff !important;
    background: none !important;
    border-bottom-color: #cfa009;
}

/* Dropdown */
#mainNavigation .dropdown-menu {
    background: #1e1e1d;
    border: none;
    border-radius: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-top: 0;
    min-width: 180px;
}

#mainNavigation .dropdown-menu[data-bs-popper] {
    left: auto;
    right: auto;
}

#mainNavigation .mega-dropdown.show {
    display: block;
    left: 0 !important;
}

#mainNavigation .dropdown-item {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff !important;
    transition: all 0.3s ease;
}

#mainNavigation .dropdown-item:hover {
    background: transparent;
    color: #cfa009 !important;
    padding-left: 24px;
}

/* Mega Menu */
.nav-item.dropdown {
    position: static;
}

.mega-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 30px 0 !important;
    border: none;
    border-radius: 0;
    border-top: 1px solid #c4c4c4;
    background: #1e1e1d !important;
    transform: none !important;
    z-index: 1050;
}

.mega-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 15px;
}

.mega-row {
    display: flex;
    gap: 40px;
}

.mega-col {
    flex: 1;
    min-width: 0;
}

.mega-col-desc {
    flex: 1.2;
}

.mega-col-desc p {
    font-size: 14px;
    color: var(--bs-primary);
    line-height: 1.7;
    margin: 0;
}

.mega-heading {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--bs-primary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c4c4c4;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 0;
}

.mega-list li a {
    font-size: 0.9375rem;
    color: #fff !important;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #c4c4c4;
    font-weight: 700;
}

.mega-list li a:hover {
    color: #cfa009 !important;
    padding-left: 5px;
}

/* ============================================================
   HERO SLIDER (Swiper)
   ============================================================ */
.home-hero-slider {
    position: relative;
    width: 100%;
    background: var(--dark-bg);
}

.home-hero-slider .swiper {
    width: 100%;
    height: 500px;
}

.home-hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(32, 32, 30, 0.75) 0%,
        rgba(32, 32, 30, 0.4) 50%,
        rgba(32, 32, 30, 0.1) 100%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    padding: 0 60px;
}

.slide-category {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.swiper-slide-active .slide-category {
    opacity: 1;
}

.slide-title {
    color: var(--text-white);
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0;
    transition: opacity 0.6s ease 0.15s;
}

.swiper-slide-active .slide-title {
    opacity: 1;
}

.slide-btn {
    display: inline-block;
    background: rgba(217, 183, 73, 0.75);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    padding: 12px 40px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background var(--transition-fast);
    opacity: 0;
    text-decoration: none;
    text-decoration: none;
}

.swiper-slide-active .slide-btn {
    opacity: 1;
}

.slide-btn:hover {
    background: var(--accent-gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Slider Decorative Border */
.slide-border-accent {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 350px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--accent-gold) 20%,
        var(--accent-gold) 80%,
        transparent
    );
    z-index: 2;
}

/* Slider Bullets */
.home-hero-slider .swiper-pagination {
    position: absolute;
    bottom: 30px;
    right: 60px;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    width: auto;
}

.home-hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(125, 125, 125, 0.5);
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    padding: 0;
    opacity: 1;
}

.home-hero-slider .swiper-pagination-bullet-active,
.home-hero-slider .swiper-pagination-bullet:hover {
    background: rgba(125, 125, 125, 1);
    transform: scale(1.1);
}

/* ============================================================
   INTRO SECTION
   ============================================================ */
.intro-section {
    background: var(--light-gray-bg);
    padding: 60px 0;
}

.intro-section .row {
    display: flex;
    gap: 40px;
}

.intro-left {
    flex: 1.2;
}

.intro-left h1 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-left p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-right {
    flex: 0.8;
}

/* Accordion */
.site-accordion {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-item-custom {
    border-bottom: 1px solid #ddd;
}

.accordion-item-custom:last-child {
    border-bottom: none;
}

.accordion-header-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-gold);
    transition: background var(--transition-fast);
    user-select: none;
}

.accordion-header-custom:hover {
    background: #f9f9f9;
}

.accordion-header-custom .accordion-icon {
    font-size: 12px;
    transition: transform var(--transition-fast);
    color: var(--primary-gold);
}

.accordion-item-custom.active .accordion-header-custom .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body-custom {
    display: none;
    padding: 0 20px 16px;
    background: #fff;
}

.accordion-item-custom.active .accordion-body-custom {
    display: block;
}

.accordion-body-custom ul {
    list-style: disc;
    padding-left: 20px;
}

.accordion-body-custom ul li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.accordion-body-custom ul li a {
    color: var(--text-muted);
    text-decoration: none;
}

.accordion-body-custom ul li a:hover {
    color: var(--primary-gold);
}

/* ============================================================
   NEWS / TESTIMONIALS SECTION
   ============================================================ */
.news-testimonials-section {
    padding: 60px 0;
}

.section-header {
    border-top: 2px solid var(--text-dark);
    padding-top: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.news-column,
.testimonials-column {
    padding: 0 15px;
    position: relative;
}

/* News Cards (Swiper) */
.newsSwiper {
    overflow: hidden;
}

.newsSwiper .swiper-slide {
    height: auto;
}

.news-card {
    display: flex;
    gap: 20px;
    padding-bottom: 0;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.news-card-thumb {
    flex: 0 0 120px;
    height: 90px;
    overflow: hidden;
    border-radius: 4px;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-body {
    flex: 1;
}

.news-card-body h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-body h4 a {
    color: var(--primary-gold);
    text-decoration: none;
}

.news-card-body h4 a:hover {
    text-decoration: underline;
}

.news-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.btn-read-more {
    display: inline-block;
    background: var(--primary-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.btn-read-more:hover {
    background: var(--accent-gold);
    color: #fff;
    text-decoration: none;
}

/* Testimonials (Swiper) */
.testimonialSwiper {
    overflow: hidden;
}

.testimonialSwiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    padding: 25px;
    background: #f9f9f9;
    border-left: 3px solid var(--primary-gold);
    border-radius: 0 4px 4px 0;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 15px 0;
    position: relative;
    padding-left: 0;
}

.testimonial-card .testimonial-source {
    font-size: 13px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 3px;
}

.testimonial-card .testimonial-author {
    font-size: 13px;
    color: var(--text-muted);
}

/* Swiper Pagination Dots */
.news-pagination,
.testimonial-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 18px;
    text-align: left;
}

/* ============================================================
   WHY CHOOSE US SECTION
   ============================================================ */
.why-choose-section {
    padding: 60px 0;
    background: #fff;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-choose-header p {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.why-choose-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   CTA / CONTACT SECTION
   ============================================================ */
.cta-section {
    padding: 60px 0;
    background: var(--light-gray-bg);
    color: var(--text-dark);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0;
}

.cta-contact-info {
    text-align: right;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.btn-cta:hover {
    background: #e0b20a;
    transform: translateY(-2px);
}

.cta-detail {
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.cta-detail i {
    color: var(--primary-gold);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.cta-detail a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.cta-detail a:hover {
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .cta-contact-info {
        text-align: left;
        margin-top: 25px;
    }
    .btn-cta {
        margin-bottom: 15px;
    }
}

/* ============================================================
   CLIENT LOGOS SECTION
   ============================================================ */
.client-logos-section {
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
}

.client-logos-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    align-items: center;
    justify-items: center;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 10px;
}

.client-logo-item:hover {
    opacity: 1;
}

.client-logo-item img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 991px) {
    .client-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .client-logo-item img {
        max-width: 100px;
        max-height: 45px;
    }
}

.swiper-pagination[class*="news-pagination"] .swiper-pagination-bullet,
.swiper-pagination[class*="testimonial-pagination"] .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-gold);
    opacity: 0.3;
    transition: opacity var(--transition-fast);
}

.swiper-pagination[class*="news-pagination"] .swiper-pagination-bullet-active,
.swiper-pagination[class*="testimonial-pagination"] .swiper-pagination-bullet-active {
    opacity: 1;
}

.btn-view-all {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 2px;
    transition: all var(--transition-fast);
}

.btn-view-all:hover {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    padding-left: 3px;
}

/* ============================================================
   RECOGNITION / SEARCH SECTION
   ============================================================ */
.recognition-section {
    padding: 60px 0;
    background: var(--light-gray-bg);
}

.recognition-section .row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.recognition-left {
    flex: 1;
}

.recognition-left h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.recognition-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.recognition-badge {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.recognition-badge img {
    max-height: 80px;
    width: auto;
}

.recognition-right {
    flex: 0.8;
}

.recognition-right h3 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
}

.search-form-custom {
    display: flex;
    gap: 0;
}

.search-form-custom input[type="search"] {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
    font-family: var(--font-primary);
    outline: none;
    transition: border-color var(--transition-fast);
}

.search-form-custom input[type="search"]:focus {
    border-color: var(--primary-gold);
}

.search-form-custom button {
    padding: 14px 28px;
    background: var(--primary-gold);
    color: #fff;
    border: 2px solid var(--primary-gold);
    border-radius: 0 4px 4px 0;
    font-size: 15px;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.search-form-custom button:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ============================================================
   TEAM SECTION (Team Grid)
   ============================================================ */
.team-section {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: row;
    min-height: 180px;
}

.team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.team-card-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-card-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.team-card-name a:hover {
    color: var(--primary-gold);
}

.team-card-phone {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.team-card-phone i {
    color: var(--primary-gold);
    margin-right: 4px;
    font-size: 11px;
}

.team-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: all var(--transition-fast);
    background: #fff;
}

.team-card-btn:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

.team-card-btn i {
    font-size: 11px;
}

.team-card-image {
    width: 180px;
    min-width: 180px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--dark-bg);
    clear: both;
    padding: 40px 0 1.25rem;
    width: 100%;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
}

.footer-nav ul {
    margin: 0;
    padding: 0;
    padding-bottom: 20px;
}

.footer-nav ul li {
    line-height: 1.1875rem;
}

.footer-menu-head {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 5px;
    padding: 0;
    text-transform: none;
    letter-spacing: 0;
}

.footer-nav ul li a,
.footer-menu-list li a {
    color: #cfa009;
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
    transition: all 0.2s;
    text-decoration: none;
    line-height: 1.6;
}

.footer-nav ul li a:hover,
.footer-menu-list li a:hover {
    color: #cfa009;
    padding-left: 3px;
    transition: all 0.1s ease-in-out;
}

/* Footer Social Icons */
.footer_social_icons {
    float: left;
    margin: 20px 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer_social_icons li {
    float: left;
    list-style: none;
    background: #fff;
    border-radius: 50%;
}

.footer_social_icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer_social_icons li a:hover {
    opacity: 0.8;
    padding-left: 0;
}

.footer-phone-number {
    display: block;
    clear: both;
    font-size: 13px;
    color: #cfa009;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.2s;
}

.footer-phone-number:hover {
    color: #cfa009;
    padding-left: 3px;
}

/* Footer Bottom / Copyright */
.footer-bottom {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.copy-right-section {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 2.5rem;
}

.copy-right-section p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.copy-right-section a {
    color: #fff;
    text-decoration: underline;
    margin-left: 10px;
}

.copy-right-section a:hover {
    color: #cfa009;
    padding-left: 3px;
}

/* Footer Phone Dropdown */
.footer-call-dropdown {
    margin-top: 2.5rem;
}

.contries_drop-footer {
    display: inherit;
    margin-top: 40px;
}

.contries_drop-footer .call-location-box {
    width: 120px;
}

.contries_drop-footer .top-country-box {
    width: 120px;
}

.contries_drop-footer .top-country-box a {
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
}

.contries_drop-footer .country-hidden-list {
    float: right;
    margin-bottom: 8px;
    position: relative;
}

.footer-phone-numbers {
    margin-top: 0;
}

.footer-phone-numbers ul li a {
    color: var(--text-dark) !important;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 5px;
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.goTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-gold);
    color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 999;
    font-size: 18px;
}

.goTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.goTop:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookies-box {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(32, 32, 30, 0.95);
    color: rgba(255, 255, 255, 0.8);
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9998;
    backdrop-filter: blur(10px);
}

.cookies-box p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}

.cookies-box a {
    color: var(--primary-gold);
    text-decoration: underline;
}

.cookies-close-btn {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 8px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: background var(--transition-fast);
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.cookies-close-btn:hover {
    background: var(--accent-gold);
    color: #fff;
}

/* ============================================================
   PAGE TEMPLATES
   ============================================================ */
.page-header-banner {
    background: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
}

.page-header-banner h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.entry-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.entry-content h2,
.entry-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
}

.entry-content p {
    margin-bottom: 15px;
}

/* ============================================================
   TEAM FILTERS
   ============================================================ */
.team-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.team-filter-btn {
    padding: 8px 24px;
    border: 2px solid #ddd;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
    transition: all var(--transition-fast);
    font-family: var(--font-primary);
}

.team-filter-btn:hover,
.team-filter-btn.active {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

.team-card.hidden {
    display: none;
}

.team-placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ebecec, #d0d0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.team-placeholder-img i {
    font-size: 50px;
    color: #aaa;
}

.team-placeholder-img.large {
    min-height: 400px;
}

.team-placeholder-img.large i {
    font-size: 100px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page-section {
    padding: 60px 0;
}

.about-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-content h2 {
    color: var(--text-dark);
    font-size: 28px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.about-sidebar-card {
    background: var(--light-gray-bg);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.about-sidebar-card h3 {
    font-size: 18px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.key-facts-list,
.awards-list {
    list-style: none;
    padding: 0;
}

.key-facts-list li,
.awards-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: var(--text-muted);
}

.key-facts-list li:last-child,
.awards-list li:last-child {
    border-bottom: none;
}

.key-facts-list li strong {
    color: var(--text-dark);
}

/* ============================================================
   EXPERTISE PAGE
   ============================================================ */
.expertise-page-section {
    padding: 60px 0;
}

.expertise-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.expertise-block-heading {
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-gold);
}

.expertise-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.expertise-item:last-child {
    border-bottom: none;
}

.expertise-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.expertise-item h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.expertise-item h3 a:hover {
    color: var(--primary-gold);
}

.expertise-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
    padding: 50px 0;
    background: #ebecec;
}

/* Page subtitle */
.page-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Contact Info Row */
.contact-info-row {
    margin-bottom: 40px;
}

.contact-info-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 25px;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-box > p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-location-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.contact-location-list li {
    padding: 6px 0;
}

.contact-location-list li a {
    color: var(--primary-gold);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.contact-location-list li a:hover {
    text-decoration: underline;
}

.contact-detail-divider {
    width: 50px;
    height: 2px;
    background: var(--primary-gold);
    margin-bottom: 15px;
}

.contact-detail-item {
    margin-bottom: 12px;
}

.contact-detail-item:last-child {
    margin-bottom: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
}

.contact-detail-item p a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail-item p a:hover {
    text-decoration: underline;
}

/* Map + Form Row */
.contact-map-form-row {
    margin-bottom: 50px;
}

.contact-map-wrapper {
    border-radius: 6px;
    overflow: hidden;
}

.appointment-form-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 25px;
    height: 100%;
}

/* ============================================================
   CONTACT SIDEBAR OFFICES (compact cards)
   ============================================================ */
.contact-sidebar-offices {
    padding: 0;
}

.contact-sidebar-offices .contact-office-card {
    background: #fff;
    border: 1px solid #e0d6e2;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.contact-sidebar-offices .contact-office-card:last-child {
    margin-bottom: 0;
}

.contact-sidebar-offices .contact-office-card-header {
    background: var(--primary-gold);
    color: #fff;
    padding: 10px 16px;
}

.contact-sidebar-offices .contact-office-card-header h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.contact-sidebar-offices .contact-office-card-body {
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.6;
}

/* ============================================================
   CF7 APPOINTMENT FORM (matching RIA reference)
   ============================================================ */
.appointment-form-wrapper {
    font-family: var(--font-primary);
}

.appointment-heading {
    color: #cfa009;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.appointment-separator {
    border-bottom: 2px solid #c8c8c8;
    margin-bottom: 15px;
    width: 100%;
}

.form-field-row {
    margin-bottom: 16px;
}

.form-field-row:last-child {
    margin-bottom: 0;
}

.form-field-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-field-row .required {
    color: #e74c3c;
}

.form-field-row .form-input,
.form-field-row .form-select,
.form-field-row .form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #949494;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.form-field-row .form-input:focus,
.form-field-row .form-select:focus,
.form-field-row .form-textarea:focus {
    border-color: #cfa009;
    box-shadow: 0 0 0 3px rgba(161, 93, 171, 0.1);
}

.form-field-row .form-select {
    appearance: auto;
    -webkit-appearance: auto;
}

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

.form-field-row .form-submit {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-primary);
    transition: background 0.2s;
    width: 100%;
}

.form-field-row .form-submit:hover {
    background: var(--accent-gold);
}

.form-legal-notice {
    margin-bottom: 16px;
}

.form-legal-notice p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.form-legal-notice a {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* CF7 validation errors */
.wpcf7-response-output {
    font-size: 13px;
    border: none;
    padding: 10px 14px;
    margin: 10px 0 0;
    border-radius: 4px;
}

.wpcf7-not-valid-tip {
    font-size: 12px;
    color: #e74c3c;
    margin-top: 4px;
}

div.wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    word-wrap: normal !important;
}

.contact-form-placeholder {
    color: var(--text-muted);
    font-size: 14px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px dashed #ccc;
}

/* Office Details Section */
.contact-offices-row {
    margin-bottom: 40px;
}

.contact-office-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
}

.contact-office-card-header {
    background: var(--primary-gold);
    padding: 14px 20px;
}

.contact-office-card-header h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}

.contact-office-card-body {
    padding: 20px;
}

.contact-office-detail {
    margin-bottom: 14px;
}

.contact-office-detail:last-child {
    margin-bottom: 0;
}

.contact-office-detail strong {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-office-detail p {
    font-size: 14px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.contact-office-detail p a {
    color: var(--primary-gold);
    text-decoration: none;
}

.contact-office-detail p a:hover {
    text-decoration: underline;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-primary);
    transition: border-color var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(88, 50, 94, 0.1);
}

.btn-submit-form {
    background: var(--primary-gold);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
    font-family: var(--font-primary);
}

.btn-submit-form:hover {
    background: var(--accent-gold);
}

/* ============================================================
   SINGLE TEAM MEMBER PROFILE
   ============================================================ */
.single-profile-section {
    padding: 60px 0;
}

.profile-photo img {
    width: 100%;
    border-radius: 4px;
}

.profile-name {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.profile-position {
    font-size: 18px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-section {
    margin-bottom: 28px;
}

.profile-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-gold);
    display: inline-block;
}

.profile-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-list li {
    padding: 6px 0;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.profile-list li:last-child {
    border-bottom: none;
}

.profile-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
}

.profile-content p {
    margin-bottom: 10px;
}

.profile-content ul,
.profile-content ol {
    padding-left: 20px;
    margin-bottom: 10px;
}

.profile-content li {
    margin-bottom: 6px;
}

.profile-practices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-practice-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-gold);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.profile-practice-tag:hover {
    background: var(--accent-gold);
}

/* Profile Contact Card (sidebar) */
.profile-contact-card {
    background: var(--light-gray-bg);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 25px;
}

.profile-contact-card-header {
    background: var(--primary-gold);
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
}

.profile-contact-card-body {
    padding: 20px;
}

.profile-contact-card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.profile-contact-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.profile-contact-card-body p i {
    color: var(--primary-gold);
    margin-right: 4px;
    width: 14px;
}

.profile-contact-card-actions {
    margin-top: 14px;
    display: flex;
    gap: 8px;
}

.profile-contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary-gold);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 3px;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.profile-contact-action-btn:hover {
    background: var(--accent-gold);
    color: #fff;
}

.btn-back-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-back-list:hover {
    color: var(--primary-gold);
    padding-left: 3px;
}

/* ============================================================
   SINGLE EXPERTISE (Practice Area / Industry)
   ============================================================ */
.single-expertise-section {
    padding: 60px 0;
}

.single-expertise-content {
    background: #fff;
}

.single-expertise-summary {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    line-height: 1.7;
}

.single-expertise-body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.single-expertise-body p {
    margin-bottom: 18px;
}

.single-expertise-body h2,
.single-expertise-body h3 {
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 14px;
}

.single-expertise-body ul {
    padding-left: 20px;
    margin-bottom: 18px;
}

.single-expertise-body li {
    margin-bottom: 6px;
}

/* Sidebar */
.expertise-sidebar {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #eee;
}

.expertise-sidebar-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expertise-sidebar-member {
    display: flex;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.expertise-sidebar-member:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.expertise-sidebar-member-photo {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
}

.expertise-sidebar-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-sidebar-member-info {
    flex: 1;
    min-width: 0;
}

.expertise-sidebar-member-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}

.expertise-sidebar-member-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.expertise-sidebar-member-info h4 a:hover {
    color: var(--primary-gold);
}

.expertise-sidebar-member-position {
    display: block;
    font-size: 12px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 4px;
}

.expertise-sidebar-member-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.expertise-sidebar-member-info p i {
    margin-right: 4px;
}

.expertise-sidebar-member-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.expertise-sidebar-member-actions .team-card-btn {
    padding: 4px 12px;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.expertise-sidebar-member-actions .team-card-btn:hover {
    background: var(--primary-gold);
    color: #fff;
}

/* Learn more button */
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.btn-learn-more:hover {
    color: var(--primary-gold);
    padding-left: 3px;
}

.btn-learn-more i {
    font-size: 12px;
    transition: transform var(--transition-fast);
}

.btn-learn-more:hover i {
    transform: translateX(3px);
}

/* ============================================================
   NEWS ARCHIVE & SINGLE
   ============================================================ */
.news-archive-section {
    padding: 60px 0;
}

.news-archive-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow var(--transition-normal);
    height: 100%;
}

.news-archive-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.news-archive-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-archive-body {
    padding: 20px;
}

.news-archive-meta {
    margin-bottom: 10px;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
}

.news-date i {
    margin-right: 4px;
}

.news-archive-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-archive-body h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.news-archive-body h3 a:hover {
    color: var(--primary-gold);
}

.news-archive-body p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.pagination-custom {
    margin-top: 40px;
    text-align: center;
}

.pagination-custom .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.pagination-custom .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.pagination-custom .page-numbers.current,
.pagination-custom .page-numbers:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #fff;
}

/* Single News */
.single-news-section {
    padding: 60px 0;
}

.single-news-article {
    background: #fff;
}

.single-news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.single-news-meta i {
    margin-right: 5px;
}

.single-news-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.single-news-thumb {
    margin-bottom: 25px;
}

.single-news-thumb img {
    width: 100%;
    border-radius: 4px;
}

.single-news-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.single-news-content p {
    margin-bottom: 15px;
}

.single-news-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    gap: 20px;
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.post-nav-link:hover {
    color: var(--primary-gold);
    padding-left: 3px;
}

.post-nav-next {
    margin-left: auto;
    text-align: right;
}

/* Sidebar */
.sidebar-widget {
    background: var(--light-gray-bg);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-gold);
}

.sidebar-news-item {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.sidebar-news-item:last-child {
    border-bottom: none;
}

.sidebar-news-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.sidebar-news-item h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.sidebar-news-item h4 a:hover {
    color: var(--primary-gold);
}

.sidebar-news-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* Generic Archive Cards */
.archive-page-section {
    padding: 60px 0;
}

.archive-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 25px;
    height: 100%;
    transition: box-shadow var(--transition-normal);
}

.archive-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.archive-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.archive-card h3 a {
    color: var(--text-dark);
    text-decoration: none;
}

.archive-card h3 a:hover {
    color: var(--primary-gold);
}

.archive-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Full Width Page */
.full-width-page-section {
    padding: 60px 0;
}

.full-width-content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
}

.full-width-content h2,
.full-width-content h3 {
    color: var(--text-dark);
    margin-top: 30px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1199px) {
    .slide-title {
        font-size: 38px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .slide-title {
        font-size: 32px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slide-border-accent {
        display: none;
    }

    .intro-section .row {
        flex-direction: column;
    }

    .recognition-section .row {
        flex-direction: column;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card {
        flex-direction: column;
    }

    .team-card-image {
        width: 100%;
        min-width: 100%;
        height: 250px;
    }

    .recognition-badges {
        grid-template-columns: repeat(2, 1fr);
    }

    .recognition-left h3,
    .recognition-right h3 {
        font-size: 28px;
    }

    #mainNavigation {
        background: var(--dark-bg);
        padding: 10px 0;
        width: 100%;
    }

    #mainNavigation .navbar-nav {
        width: 100%;
        flex-direction: column;
    }

    #mainNavigation .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #mainNavigation .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    #mainNavigation .nav-link {
        padding: 10px 15px;
        font-size: 15px;
    }

    #mainNavigation .mega-dropdown {
        position: static;
        width: 100%;
        margin-left: 0;
        border: none;
    }

    #mainNavigation .mega-dropdown .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        padding: 10px 15px;
    }

    #mainNavigation .mega-content {
        max-width: 100%;
        padding: 10px 0;
    }

    #mainNavigation .mega-row {
        flex-direction: column;
        gap: 20px;
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        margin-left: 0;
    }

    .mega-content {
        max-width: 100%;
    }

    .mega-row {
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav {
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .home-hero-slider .swiper {
        height: 400px;
    }

    .slide-title {
        font-size: 26px;
    }

    .slide-content {
        padding: 0 20px;
    }

    .top-country-menu {
        display: none;
    }

    #website-header.sticky-header .site-container {
        padding: 6px 0;
    }

    #website-header.sticky-header .navbar-header-row {
        padding: 0 10px;
    }

    #website-header.sticky-header .site-container {
        flex-direction: column;
        max-width: 100%;
    }

    .mega-dropdown {
        padding: 0px !important;
    }

    .navbar-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        padding: 6px 10px;
        font-size: 1.2rem;
        line-height: 1;
        color: #fff;
        cursor: pointer;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }

    .navbar-header-row {
        width: 100%;
        padding-bottom: 10px;
    }

    #mainNavigation {
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0;
    }

    #mainNavigation .navbar-nav {
        width: 100%;
        flex-direction: column;
    }

    #mainNavigation .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    #mainNavigation .nav-link {
        padding: 12px 15px;
        font-size: 15px;
    }

    #mainNavigation .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        display: none;
        box-shadow: none;
    }

    #mainNavigation .dropdown-menu.show {
        display: block;
    }

    #mainNavigation .dropdown-menu .dropdown-item {
        padding: 10px 30px;
        color: #ccc;
        font-size: 14px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    #mainNavigation .dropdown-menu .dropdown-item:hover,
    #mainNavigation .dropdown-menu .dropdown-item:focus {
        background: rgba(255, 255, 255, 0.1);
        color: #cfa009;
    }

    #mainNavigation .mega-dropdown .dropdown-menu {
        padding: 10px 0;
        max-height: 300px;
        overflow-y: auto;
    }

    #mainNavigation .mega-content {
        padding: 10px 0;
    }

    .mega-row {
        height: 300px;
        overflow-y: auto;
        padding: 15px;
        flex-direction: column;
        gap: 20px;
    }

    .footer-nav .col-md-3,
    .footer-nav .col-md-2,
    .footer-nav .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .copy-right-section {
        margin-top: 1.5rem;
    }

    .footer-call-dropdown {
        margin-top: 1rem;
        text-align: center;
    }

    .conries_drop-footer {
        display: inline-block;
    }

    .news-card {
        flex-direction: column;
    }

    .news-card-thumb {
        flex: 0 0 auto;
        height: 180px;
    }

    .search-form-custom {
        flex-direction: column;
    }

    .search-form-custom input[type="search"] {
        border-right: 2px solid #ddd;
        border-radius: 4px;
    }

    .search-form-custom button {
        border-radius: 4px;
    }

    .cookies-box {
        flex-direction: column;
        text-align: center;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .recognition-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .home-hero-slider .swiper {
        height: 350px;
    }

    .slide-title {
        font-size: 22px;
    }

    .slide-category {
        font-size: 13px;
    }

    .slide-btn {
        font-size: 14px;
        padding: 10px 30px;
    }
}
