@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.mouse {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 30px;
    height: 60px;
    border: 2px solid #333;
    border-radius: 60px;
}

.mouse::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
}

@keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

@-webkit-keyframes wheel {
    to {
        opacity: 0;
        top: 30px;
    }
}

.cursor-pointer {
    cursor: pointer;
}


/* ===========================
   NAVIGATION HEADER STYLES
   =========================== */

/* Main Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 35px 0 50px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
    transition: all 0.3s ease;
    /* overflow: hidden; */
}

/* Blur effect with gradient fade - fades from top to bottom */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Scrolled state blur with gradient fade */
.main-header.scrolled::before {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Scrolled state text colors */
.main-header.scrolled .nav-link {
    color: #333;
}

.main-header.scrolled .nav-link::after {
    background: #333;
}

.main-header.scrolled .lang-btn {
    color: rgba(0, 0, 0, 0.6);
}

.main-header.scrolled .lang-btn:hover,
.main-header.scrolled .lang-btn.active {
    color: #000;
}

.main-header.scrolled .lang-divider {
    color: rgba(0, 0, 0, 0.3);
}

.main-header.scrolled .hamburger-line {
    background: #333;
}

/* Dropdown menu scrolled state */
.main-header.scrolled .dropdown-menu {
    background: rgba(250, 250, 250, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .dropdown-link {
    color: rgba(50, 50, 50, 0.8);
}

.main-header.scrolled .dropdown-link:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

/* Mega menu scrolled state */
.main-header.scrolled .mega-menu {
    background: rgba(250, 250, 250, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .mega-column h4 {
    color: #333;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.main-header.scrolled .mega-column a {
    color: rgba(50, 50, 50, 0.7);
}

.main-header.scrolled .mega-column a:hover {
    color: #333;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* Header Logo */
.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo:hover img {
    transform: scale(1.05);
}

.header-logo a .header-logo-text {
    color: #077437;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Header Navigation */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 8px 0;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    background: rgba(40, 40, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 2000;
    margin-top: 0;
    pointer-events: none;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    display: block;
}

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

.dropdown-list li {
    margin: 0;
}

.dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 25px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding-left: 35px;
}

.mobile-submenu .dropdown-link {
    color: #75391c;
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(40, 40, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 2000;
    margin-top: 10px;
    min-width: 700px;
    max-width: 900px;
    width: 100vw;
    left: 50%;
    right: auto;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    display: block;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 30px;
}

.mega-column h4 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

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

.mega-column ul li {
    margin: 0;
}

.mega-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
}

.mega-column a:hover {
    color: #fff;
    padding-left: 10px;
}

.mega-column a::before {
    content: '›';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    display: none;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: #fff;
    font-weight: 600;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transition: right 0.4s ease;
    padding-top: 100px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

button.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    color: #75391c;
    border: none;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 998;
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.mobile-nav-link {
    display: block;
    color: #75391c;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 20px 30px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #75391c;
    padding-left: 40px;
}

/* Mobile Submenu */
.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 500px;
}

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

.mobile-submenu .mobile-nav-link {
    padding: 15px 30px 15px 50px;
    font-size: 14px;
}

.mobile-submenu .mobile-nav-link:hover {
    padding-left: 60px;
}

.toggle-submenu::after {
    content: '›';
    position: absolute;
    right: 30px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.toggle-submenu.active::after {
    transform: rotate(90deg);
}

/* Body Lock when Menu Open */
body.menu-open {
    overflow: hidden;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .header-nav {
        display: none;
    }

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

    .header-logo img {
        height: 40px;
    }

    /* Mega menu responsive */
    .mega-menu {
        min-width: 90vw;
        max-width: none;
        left: 50%;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 20px 0 35px 0;
    }

    .main-header.scrolled {
        padding: 12px 0 15px 0;
    }

    .header-logo img {
        height: 35px;
    }

    .language-switcher {
        gap: 5px;
    }

    .lang-btn {
        padding: 3px 5px;
        font-size: 13px;
    }

    .mobile-menu {
        width: 90%;
    }
}

/* ===========================
   SLIDER STYLES
   =========================== */

.main-hero {
    width: 100%;
    height: 610px;
}

.main-hero .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-hero .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-hero .swiper-pagination-bullet {
    width: 10px;
    height: 40px;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    margin: 0 5px !important;
    transition: height 0.3s ease;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
}

.main-hero .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background: #fff;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.main-hero .swiper-pagination-bullet-active {
    height: 60px;
    background: transparent;
}

.main-hero .swiper-pagination-bullet-active::after {
    opacity: 1;
}

/* Custom Navigation Arrows */
.main-hero .swiper-button-next,
.main-hero .swiper-button-prev {
    width: 80px;
    height: 80px;
    background-image: url('../images/arrow-right.png');
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.45;
}

.main-hero .swiper-button-next::after,
.main-hero .swiper-button-prev::after {
    display: none !important;
    content: none !important;
}

.main-hero .swiper-button-next svg,
.main-hero .swiper-button-prev svg {
    display: none !important;
}

.main-hero .swiper-button-next *,
.main-hero .swiper-button-prev * {
    display: none !important;
}

.main-hero .swiper-button-prev {
    transform: rotate(180deg);
}

.main-hero .swiper-button-next:hover {
    transform: scale(1.2);
    opacity: 1;
}

.main-hero .swiper-button-prev:hover {
    transform: rotate(180deg) scale(1.2);
    opacity: 1;
}

.groups {
    padding: 25px 0 30px 0;
}

.groups .group-item {
    text-align: center;
}

.groups .group-item img {
    margin: 0 auto;
    display: block;
}



.particle-logo-container {
    position: relative;
    display: inline-block;
}

/* Hero Slide Content */
.main-hero .swiper-slide {
    position: relative;
}

.slide-content {
    position: absolute;
    top: 60%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    text-align: left;
    max-width: 800px;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    font-family: 'Montserrat', sans-serif;
}

.slide-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.slide-btn {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease-out 0.2s;
    font-family: 'Montserrat', sans-serif;
    background-color: transparent;
    border: 1px solid #fff;
}

.slide-btn:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
}

/* Animation on Active Slide */
.swiper-slide-active .slide-title,
.swiper-slide-active .slide-text,
.swiper-slide-active .slide-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-text {
        font-size: 1rem;
    }
}

.numbers {
    padding: 90px 0;
    background-color: #efeef1;
}

.big-number-item .number-item-image {
    text-align: center;
    width: 100%;
    border-top: 4px solid #915233;
    border-bottom: 4px solid #915233;
    padding: 20px;
    background-color: #fff;
}

.big-number-item .number-item-content {
    text-align: center;
    width: 100%;
    border: 4px solid #75391c;
    padding: 20px;
    background-color: #283442;
    color: #fff;
    position: relative;
}

.big-number-item .number-item-content::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #75391c;
}

.big-number-item .number-item-content h2 {
    font-size: 5rem;
    font-weight: 700;
}

.big-number-item .number-item-content p {
    font-size: 2.1rem;
    font-weight: 500;
}

.big-number-item.item-2 .number-item-image {
    border-top: 4px solid #93d500;
    border-bottom: 4px solid #93d500;
}

.big-number-item.item-2 .number-item-content {
    border: 4px solid #277439;
    background-color: #283442;
}

.big-number-item.item-2 .number-item-content::after {
    border-top: 15px solid #277439;
}

.big-number-item.item-3 .number-item-image {
    border-top: 4px solid #0883c1;
    border-bottom: 4px solid #0883c1;
}

.big-number-item.item-3 .number-item-content {
    border: 4px solid #056290;
    background-color: #283442;
}

.big-number-item.item-3 .number-item-content::after {
    border-top: 15px solid #056290;
}

.big-number-item.item-4 .number-item-image {
    border-top: 4px solid #f5ae12;
    border-bottom: 4px solid #f5ae12;
}

.big-number-item.item-4 .number-item-content {
    border: 4px solid #a57715;
    background-color: #283442;
}

.big-number-item.item-4 .number-item-content::after {
    border-top: 15px solid #a57715;
}

.small-number-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    border-bottom: 4px solid #283442;
    background-color: #fff;
    padding: 10px;
}

.small-number-item img {
    width: 70px;
    height: 70px;
}

.small-number-item .number-content {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}


.numbers3 {
    padding-bottom: 30px;
}

.numbers3 .numbers3-item {
    border-right: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 0;
}

.numbers3 .row .col-3:last-child .numbers3-item {
    border-right: none;
}

.numbers3 .numbers3-item .number-item-image img {
    max-width: 120px;
    width: 100%;
    padding: 40px 0 20px 0;
}

.numbers3 .numbers3-item .number-item-content {
    text-align: center;
}

.numbers3 .numbers3-item .number-item-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    color: #565656;
    background: linear-gradient(135deg, #fff, #565656);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.numbers3 .numbers3-item .number-item-content p {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    color: #565656;
}

.numbers3 .sub-items {
    background-color: #f1f1f3;
    border-radius: 12px;
    padding: 15px 25px;
    margin-top: 30px;
}

.numbers3 .sub-items .sub-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.numbers3 .sub-items .sub-item img {
    max-width: 64px;
}

.numbers3 .sub-items .sub-item .number-content {
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 21px;
}

/* ===========================
   INNER PAGE STYLES
   =========================== */

/* Inner page header - always white */
.inner-page .main-header {
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.inner-page .main-header::before {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}


.inner-page .nav-link {
    color: #333;
}

.inner-page .nav-link::after {
    background: #333;
}

.inner-page .lang-btn {
    color: rgba(0, 0, 0, 0.6);
}

.inner-page .lang-btn:hover,
.inner-page .lang-btn.active {
    color: #000;
}

.inner-page .lang-divider {
    color: rgba(0, 0, 0, 0.3);
}

.inner-page .hamburger-line {
    background: #333;
}

/* Inner Page Banner */
.inner-banner {
    width: 100%;
    height: 450px;
    position: relative;
    margin-top: 85px;
    overflow: hidden;
}

.page-id-19 .inner-banner {
    height: 540px;
}

.page-id-212 .inner-banner {
    height: 540px;
}

.page-id-2 .inner-banner {
    height: 600px;
}

.page-id-3 .inner-banner {
    height: 640px;
}

.page-id-29 .inner-banner {
    height: 580px;
}

.inner-banner .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-banner-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.inner-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.page-id-212 .inner-banner-title,
.page-id-20 .inner-banner-title,
.page-id-22 .inner-banner-title,
.page-id-23 .inner-banner-title,
.page-id-2 .inner-banner-title,
.page-id-25 .inner-banner-title,
.page-id-26 .inner-banner-title,
.page-id-3 .inner-banner-title,
.page-id-32 .inner-banner-title,
.page-id-29 .inner-banner-title,
.page-id-19 .inner-banner-title,
.page-id-21 .inner-banner-title,
.page-id-219 .inner-banner-title {
    opacity: 0;
}

.inner-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Page Navigation Menu */
.page-nav {
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 0;
    position: sticky;
    top: 85px;
    z-index: 100;
}

.page-nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.page-nav-item {
    margin: 0;
}

.page-nav-link {
    display: block;
    padding: 18px 25px;
    color: #555;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.page-nav-link:hover,
.page-nav-link.active {
    color: #283442;
    background: rgba(0, 0, 0, 0.03);
    border-bottom-color: #283442;
}

/* Mobile Responsive - Horizontal Scroll */
@media (max-width: 768px) {
    .page-nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        scrollbar-width: thin;
    }

    .page-nav-menu::-webkit-scrollbar {
        height: 4px;
    }

    .page-nav-menu::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .page-nav-menu::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }

    .page-nav-item {
        flex-shrink: 0;
    }

    .page-nav-link {
        padding: 15px 18px;
        font-size: 13px;
        white-space: nowrap;
    }
}

/* Page Content */
.page-content {
    padding: 60px 0;
    background: #fff;
}

.page-content-inner {
    max-width: 1030px;
    margin: 0 auto;
}

/* CKEditor Content Styles */
.editor-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.editor-content h1,
.editor-content h2,
.editor-content h3,
.editor-content h4,
.editor-content h5,
.editor-content h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #283442;
}

.editor-content h1 {
    font-size: 2.5rem;
}

.editor-content h2 {
    font-size: 2rem;
}

.editor-content h3 {
    font-size: 1.5rem;
}

.editor-content p {
    margin-bottom: 20px;
}

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

.editor-content li {
    margin-bottom: 10px;
}

.editor-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
}

.editor-content blockquote {
    border-left: 4px solid #283442;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.editor-content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.editor-content table th,
.editor-content table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.editor-content table th {
    background: #f8f9fa;
    font-weight: 600;
}

/* Responsive Inner Page */
@media (max-width: 992px) {
    .inner-banner {
        height: 350px;
        margin-top: 70px;
    }

    .inner-banner-title {
        font-size: 2.5rem;
    }

    .page-nav {
        top: 70px;
    }

    .page-nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .page-nav-item {
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .inner-banner {
        height: 200px !important;
        margin-top: 60px;
    }

    .inner-banner-title {
        font-size: 1.8rem;
    }

    .page-nav {
        top: 60px;
    }

    .page-nav-link {
        padding: 15px 18px;
        font-size: 13px;
    }

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

    .editor-content h1 {
        font-size: 1.8rem;
    }

    .editor-content h2 {
        font-size: 1.5rem;
    }

    .editor-content h3 {
        font-size: 1.3rem;
    }
}

/* ===========================
   COMPANY PAGE STYLES
   =========================== */

/* Company Page Header with Parent Link */
.company-page .header-wrapper {
    position: relative;
}

/* Parent Company Link - Top Bar */
.parent-company-bar {
    background: #077437;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 888;
    transition: all 0.4s ease;
}

.parent-company-bar .company-special-area {
    min-height: 38px;
    display: flex;
    gap: 10px;
}

.parent-company-bar .company-special-area .button {
    color: #077437;
    text-decoration: none;
    padding: 4px 12px;
    border-radius: 22px;
    /* border: 1px solid #FFF; */
    background-color: #fff;
    font-weight: 500;
    line-height: 28px;
}

.parent-company-bar.scrolled .company-special-area .button {
    display: none;
}

.parent-company-bar.scrolled .company-special-area {
    min-height: initial;
}


.company-id-3 .parent-company-bar {
    background: #602d14;
}

/* Scrolled State - Move to bottom-left corner */
.parent-company-bar.scrolled {
    top: auto;
    bottom: 20px;
    left: 20px;
    right: auto;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    max-width: 80px;
}

.parent-company-bar.scrolled .container {
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

.parent-company-bar.scrolled .parent-link {
    flex-direction: column;
    gap: 4px;
    font-size: 9px;
    text-align: center;
}

/* .parent-company-bar.scrolled .parent-link span {
    display: none;
} */

.parent-company-bar.scrolled .parent-link svg {
    width: 18px;
    height: 18px;
}

.parent-company-bar.scrolled .parent-link img {
    height: 24px;
}

/* Company Switcher 2 Scrolled State */
.parent-company-bar.scrolled .company-switcher2 {
    flex-direction: column;
    gap: 8px;
}

.parent-company-bar.scrolled .company-switcher2-item {
    padding: 4px;
}

.parent-company-bar.scrolled .company-switcher2-item img {
    height: 22px;
}

.parent-company-bar.scrolled .company-switcher2-item.active::after {
    bottom: auto;
    left: auto;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 16px;
}

.parent-company-bar.scrolled .company-switcher2-divider {
    width: 24px;
    height: 1px;
}

.parent-company-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parent-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.parent-link:hover {
    color: #fff;
}

.parent-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.parent-link:hover svg {
    transform: translateX(-3px);
}

.parent-link img {
    height: 20px;
    width: auto;
}

/* Company Switcher */
.company-switcher {
    position: relative;
}

.company-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 5px 12px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.company-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.company-switcher-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.company-switcher.active .company-switcher-btn svg {
    transform: rotate(180deg);
}

.company-switcher-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.company-switcher.active .company-switcher-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.company-switcher-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

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

.company-switcher-item:hover {
    background: #f8f9fa;
    color: #283442;
}

.company-switcher-item.active {
    background: #283442;
    color: #fff;
}

.company-switcher-item img {
    height: 24px;
    width: auto;
}

/* Adjust main header position for company pages */
.company-page .main-header {
    top: 55px;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 0 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: top 0.4s ease, padding 0.3s ease;
}

/* When parent bar is scrolled, header moves to top */
.company-page .main-header.bar-scrolled {
    top: 0;
    padding: 6px 0 6px 0;
}


.company-page .header-logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.company-page .main-header.bar-scrolled .header-logo img {
    height: 54px;
}

.company-page .main-header::before {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.company-page .nav-link {
    color: #333;
}

.company-page .nav-link::after {
    background: #333;
}

.company-page .lang-btn {
    color: rgba(0, 0, 0, 0.6);
}

.company-page .lang-btn:hover,
.company-page .lang-btn.active {
    color: #000;
}

.company-page .lang-divider {
    color: rgba(0, 0, 0, 0.3);
}

.company-page .hamburger-line {
    background: #333;
}

/* Adjust banner position */
.company-page .inner-banner {
    margin-top: 121px;
    transition: margin-top 0.4s ease;
}

.company-page.bar-scrolled .inner-banner {
    margin-top: 66px;
}

.company-page .page-nav {
    top: 121px;
    transition: top 0.4s ease;
}

.company-page.bar-scrolled .page-nav {
    top: 66px;
}

/* Responsive Company Page */
@media (max-width: 992px) {
    .parent-company-bar {
        padding: 0px 0;
    }

    .parent-company-bar.scrolled .container {
        padding: 0;
        gap: 0;
    }

    .parent-company-bar.scrolled {
        bottom: 15px;
        left: 15px;
        max-width: 70px;
        padding: 10px;
    }

    .parent-link {
        font-size: 11px;
    }

    .company-switcher-btn {
        font-size: 11px;
        padding: 4px 10px;
    }

    .company-page .main-header {
        top: 32px;
    }

    .company-page .main-header.bar-scrolled {
        top: 0;
    }

    .company-page .inner-banner {
        margin-top: 102px;
    }

    .company-page.bar-scrolled .inner-banner {
        margin-top: 70px;
    }

    .company-page .page-nav {
        top: 102px;
    }

    .company-page.bar-scrolled .page-nav {
        top: 70px;
    }
}

@media (max-width: 576px) {
    .parent-company-bar .container {
        flex-wrap: wrap;
        gap: 0;
    }

    .parent-company-bar.scrolled {
        bottom: 10px;
        left: 10px;
        max-width: 60px;
        padding: 8px;
    }

    .parent-company-bar.scrolled .parent-link img {
        height: 18px;
    }

    .parent-company-bar.scrolled .company-switcher2-item img {
        height: 18px;
    }

    .parent-link span {
        display: none;
    }

    .company-page .main-header {
        top: 32px;
    }

    .company-page .main-header.bar-scrolled {
        top: 0;
    }

    .company-page .inner-banner {
        margin-top: 92px;
    }

    .company-page.bar-scrolled .inner-banner {
        margin-top: 60px;
    }

    .company-page .page-nav {
        top: 92px;
    }

    .company-page.bar-scrolled .page-nav {
        top: 60px;
    }
}

/* ===========================
   COMPANY SWITCHER 2 - Inline Style
   =========================== */

.company-switcher2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.company-switcher2-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.5;
}

.company-switcher2-item:hover {
    opacity: 0.8;
}

.company-switcher2-item.active {
    opacity: 1;
}

.company-switcher2-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

.company-switcher2-item img {
    height: 28px;
    width: auto;
    transition: all 0.3s ease;
}

.company-switcher2-item:hover img {
    transform: scale(1.05);
}

/* Divider between logos */
.company-switcher2-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
}

/* Alternative active style - circle indicator */
.company-switcher2.style-dot .company-switcher2-item.active::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    bottom: -8px;
}

/* Alternative active style - background glow */
.company-switcher2.style-glow .company-switcher2-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.company-switcher2.style-glow .company-switcher2-item.active::after {
    display: none;
}

/* Responsive */
@media (max-width: 576px) {
    .company-switcher2 {
        gap: 12px;
    }

    .company-switcher2-item {
        padding: 4px 8px;
    }

    .company-switcher2-item img {
        height: 22px;
    }

    .company-switcher2-divider {
        height: 18px;
    }
}

/* ===========================
   COMPANY CONTENT SECTION
   =========================== */

.company-content-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, rgba(96, 45, 20, 0.05) 0%, rgba(139, 69, 19, 0.03) 100%); */
    position: relative;
    overflow: hidden;
}

.company-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 45, 20, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.company-content-text h2 {
    font-size: 33px;
    font-weight: 700;
    color: #077437;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.company-id-3 .company-content-text h2 {
    color: #602d14;
}

.company-content-text h3 {
    font-size: 22px;
    font-weight: 500;
    color: #077437;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.company-id-3 .company-content-text h3 {
    color: #8b4513;
}

.company-content-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.company-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 10px 0;
    padding: 30px 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    color: #077437;
    flex-shrink: 0;
}

.company-id-3 .highlight-item svg {
    color: #8b4513;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.btn-primary.btn-lg {
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    background: #077437;
    border: none;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary.btn-lg:hover {
    background: #08612e;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 45, 20, 0.2);
}

.company-id-3 .btn-primary.btn-lg {
    background: #602d14;
}

.company-id-3 .btn-primary.btn-lg:hover {
    background: #8b4513;
}

.company-content-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.company-content-image:hover img {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    .company-content-section {
        padding: 60px 0;
    }

    .company-content-text h2 {
        font-size: 36px;
    }

    .company-content-text h3 {
        font-size: 18px;
    }

    .company-id-2 .company-highlights {
        grid-template-columns: 1fr;
    }

    .company-content-image {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .company-content-section {
        padding: 40px 0;
    }

    .company-content-text h2 {
        font-size: 28px;
        text-align: center;
    }

    .company-content-text h3 {
        font-size: 16px;
    }

    .company-content-text p {
        font-size: 14px;
    }

    .company-highlights {
        gap: 15px;
    }

    .company-id-3 .highlight-item {}

    .company-id-3 .company-content-text {
        text-align: center;
    }
}

/* ===========================
   OPERATIONS SECTION
   =========================== */

.operations-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f6f3 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.operations-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(96, 45, 20, 0.05) 0%, transparent 50%);
    transform: rotate(-15deg);
    pointer-events: none;
}

.operations-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #077437, #1b914e);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.section-header p {
    font-size: 16px;
    color: #666;
    max-width: 660px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #602d14, #8b4513);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    background: #fff;
    border-color: rgba(96, 45, 20, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 45, 20, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(96, 45, 20, 0.08), rgba(139, 69, 19, 0.04));
    border-color: rgba(139, 69, 19, 0.2);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #602d14, #8b4513);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-emoji {
    font-size: 48px;
    margin: 0 auto 20px;
    display: block;
    transition: all 0.4s ease;
}

.service-card:hover .service-emoji {
    transform: scale(1.2) rotate(10deg);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(96, 45, 20, 0.2), rgba(139, 69, 19, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 22px;
    color: #602d14;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #8b4513;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #602d14, #8b4513);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card:hover .service-icon svg {
    color: #fff;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #602d14, #8b4513);
    transform: scale(1.1);
}

.service-card:hover .service-icon svg {
    color: #fff;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
    font-weight: 500;
}

.service-subtitle {
    font-size: 13px;
    line-height: 1.5;
    color: #888;
    margin-bottom: 16px;
    font-style: italic;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b4513;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #d4a574;
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    background: linear-gradient(135deg, rgba(96, 45, 20, 0.15), rgba(139, 69, 19, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, #565656);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
}

/* ===========================
   NEWS SECTION
   =========================== */

.news-section {
    padding: 100px 0;
    background: #f8f6f3;
    position: relative;
}

/* News Tabs */
.news-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.news-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #e0d6cc;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #602d14;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-tab-btn i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.news-tab-btn:hover {
    border-color: #602d14;
    background: rgba(96, 45, 20, 0.05);
}

.news-tab-btn.active {
    background: linear-gradient(135deg, #602d14, #8b4513);
    border-color: #602d14;
    color: #fff;
}

.news-tab-btn.active i {
    color: #fff;
}

/* Tab Contents */
.news-tab-contents {
    position: relative;
}

.news-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.news-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Card Specific */
.video-card .news-image {
    position: relative;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(96, 45, 20, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-btn i {
    margin-left: 4px;
}

.video-card:hover .video-play-btn {
    background: #602d14;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(96, 45, 20, 0.4);
}

/* Videos Swiper */
.videos-swiper,
.announcements-swiper {
    padding: 20px 10px 60px;
    position: relative;
}

.videos-swiper-navigation,
.announcements-swiper-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: calc(100% + 100px);
    left: -50px;
    pointer-events: none;
    z-index: 10;
}

.videos-swiper-prev,
.videos-swiper-next,
.announcements-swiper-prev,
.announcements-swiper-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #602d14;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.videos-swiper-prev:hover,
.videos-swiper-next:hover,
.announcements-swiper-prev:hover,
.announcements-swiper-next:hover {
    background: #602d14;
    color: #fff;
}

.videos-swiper-pagination,
.announcements-swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.videos-swiper-pagination .swiper-pagination-bullet,
.announcements-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d4c4b5;
    opacity: 1;
    transition: all 0.3s ease;
}

.videos-swiper-pagination .swiper-pagination-bullet-active,
.announcements-swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background: #602d14;
}

.news-swiper {
    padding: 20px 10px 60px;
    position: relative;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    height: 92%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(96, 45, 20, 0.15);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #077437, #178a49);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 25px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 13px;
    margin-bottom: 12px;
}

.news-date i {
    color: #077437;
}

.news-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 54px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #077437;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.news-link:hover {
    color: #077437;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* News Swiper Navigation */
.news-swiper-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.news-swiper-prev,
.news-swiper-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #077437;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-swiper-prev i,
.news-swiper-next i {
    color: #077437;
    font-size: 18px;
    transition: all 0.3s ease;
}

.news-swiper-prev:hover,
.news-swiper-next:hover {
    background: linear-gradient(135deg, #077437, #0f7c3e);
    border-color: #077437;
}

.news-swiper-prev:hover i,
.news-swiper-next:hover i {
    color: #fff;
}

/* News Swiper Pagination */
.news-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.news-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
    background: #077437;
    width: 30px;
    border-radius: 5px;
}

/* News All Link */
.news-all-link {
    text-align: center;
    margin-top: 40px;
}

.news-all-link .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border: 2px solid #077437;
    color: #077437;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.news-all-link .btn:hover {
    background: linear-gradient(135deg, #077437, #13793f);
    border-color: #077437;
    color: #fff;
}

.news-all-link .btn:hover img {
    filter: brightness(0) invert(1);
}

.news-all-link .btn i {
    transition: transform 0.3s ease;
}

.news-all-link .btn:hover i {
    transform: translateX(5px);
}

.newspaper-card .news-image {
    height: 400px;
}

.newspaper-card {
    height: auto;
}

.newspaper-card .news-content h3 {
    margin: 5px 0 5px 0;
}

/* ===========================
   REGION CONTENT SECTION
   =========================== */

.region-content-section {
    position: relative;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.region-content-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.region-content-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.region-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #077436d7 0%, rgba(30, 30, 30, 0.88) 100%);
}

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

/* Region Stats Row */
.region-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.region-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.region-stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.region-stat-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.region-stat-icon i {
    font-size: 24px;
    color: #fff;
}

.region-stat-info {
    display: flex;
    flex-direction: column;
}

.region-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.region-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
}

/* Region Main Card */
.region-main-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.region-card-header {
    margin-bottom: 25px;
}

.region-badge {
    display: inline-block;
    background: linear-gradient(135deg, #077437, #15974d);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.region-card-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.region-card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.region-card-body p:last-child {
    margin-bottom: 0;
}

.region-card-footer {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.region-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.region-btn-primary {
    background: linear-gradient(135deg, #077437, #108542);
    color: #fff;
}

.region-btn-primary:hover {
    background: linear-gradient(135deg, #108542, #077437);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 45, 20, 0.3);
    color: #fff;
}

.region-btn-outline {
    background: transparent;
    color: #077437;
    border: 2px solid #077437;
}

.region-btn-outline:hover {
    background: #077437;
    color: #fff;
}

/* Region Features */
.region-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.region-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 20px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.region-feature-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.region-feature-tag i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Region Content Responsive */
@media (max-width: 1200px) {
    .region-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .region-content-section {
        padding: 60px 0 !important;
        min-height: auto;
    }

    .region-stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .region-stat-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .region-stat-number {
        font-size: 24px;
    }

    .region-main-card {
        padding: 25px;
    }

    .region-card-header h2 {
        font-size: 24px;
    }

    .region-card-body p {
        font-size: 15px;
    }

    .region-card-footer {
        flex-direction: column;
    }

    .region-btn {
        justify-content: center;
    }

    .region-features {
        gap: 10px;
    }

    .region-feature-tag {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* News Section Responsive */
@media (max-width: 992px) {
    .news-tabs {
        gap: 8px;
    }

    .news-tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .videos-swiper-navigation,
    .announcements-swiper-navigation {
        width: 100%;
        left: 0;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 70px 0;
    }

    .news-tabs {
        gap: 6px;
    }

    .news-tab-btn {
        padding: 10px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .news-tab-btn i {
        font-size: 14px;
    }

    .news-tab-btn span {
        display: none;
    }

    .news-tab-btn i {
        display: block;
    }

    .video-play-btn {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-title {
        font-size: 16px;
        min-height: 48px;
    }

    .news-content {
        padding: 10px;
    }

    .videos-swiper-prev,
    .videos-swiper-next,
    .announcements-swiper-prev,
    .announcements-swiper-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .news-tabs {
        width: 100%;
    }

    .news-tab-btn {
        flex: 1;
        justify-content: center;
        padding: 12px 10px;
        border-radius: 10px;
    }

    .news-tab-btn span {
        display: block;
        font-size: 12px;
    }

    .news-tab-btn i {
        display: none;
    }

    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Responsive Section 2 */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (max-width: 992px) {
    .operations-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 30px;
        padding: 30px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 45%;
    }

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

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .stats-bar {
        padding: 25px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .operations-section {
        padding: 50px 0;
    }

    .section-badge {
        font-size: 10px;
        padding: 6px 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .stat-item {
        flex: 0 0 100%;
    }
}

/* ===========================
   FOOTER STYLES
   =========================== */

.main-footer {
    background: #1a1a1a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

/* Footer Top - Hierarchy Section */
.footer-hierarchy {
    background: linear-gradient(135deg, #602d14 0%, #8b4513 50%, #602d14 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-hierarchy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    pointer-events: none;
}

.hierarchy-title {
    text-align: center;
    margin-bottom: 50px;
}

.hierarchy-title h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.hierarchy-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

/* Hierarchy Tree */
.hierarchy-tree {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Parent Company */
.hierarchy-parent {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.hierarchy-parent::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.parent-logo-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.parent-logo-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.parent-logo-box img {
    height: 50px;
    width: auto;
}

.parent-logo-box span {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
}

/* Connection Line */
.hierarchy-connector {
    position: relative;
    width: 400px;
    height: 30px;
    margin-bottom: 20px;
}

.hierarchy-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
}

.hierarchy-connector::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

/* Children Companies */
.hierarchy-children {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.hierarchy-child {
    position: relative;
    text-align: center;
}

.hierarchy-child::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.child-logo-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 25px 35px;
    min-width: 200px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.child-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.child-logo-box img {
    height: 45px;
    width: auto;
}

.child-company-name {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.child-tagline {
    font-size: 10px;
    color: #888;
    margin-top: 4px;
}

/* Child Menu Links */
.child-menu {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.child-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
}

.child-menu a {
    font-size: 11px;
    color: #565656;
    text-decoration: none;
    transition: color 0.3s ease;
}

.child-menu a:hover {
    color: #fff;
}

/* Footer Main Content */
.footer-main {
    padding: 20px 0;
    background: #F2F2F2;
}

.footer-brand {
    margin-bottom: 25px;
    text-align: end;
}

.footer-brand img {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: #565656;
    max-width: 300px;
}

.footer-column {
    margin-top: 35px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #565656;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: #565656;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #313131;
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: #8b4513;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 13px;
    color: #565656;
    line-height: 1.5;
}

.footer-contact-item a {
    color: #565656;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #313131;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #8b4513;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: #565656;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .hierarchy-connector {
        width: 300px;
    }

    .hierarchy-children {
        gap: 40px;
    }

    .child-logo-box {
        min-width: 160px;
        padding: 20px 25px;
    }

    .child-logo-box img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .footer-hierarchy {
        padding: 40px 0 30px;
    }

    .hierarchy-title h2 {
        font-size: 22px;
    }

    .hierarchy-connector {
        width: 200px;
    }

    .hierarchy-children {
        flex-direction: column;
        gap: 30px;
    }

    .hierarchy-child::before {
        display: none;
    }

    .hierarchy-connector::after {
        display: none;
    }

    .hierarchy-connector::before {
        height: 30px;
    }

    .hierarchy-connector {
        height: 30px;
    }

    .child-logo-box {
        min-width: 220px;
    }

    .child-menu ul {
        flex-direction: column;
        gap: 8px;
    }

    .footer-main .row>div {
        margin-bottom: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .parent-logo-box {
        padding: 20px 30px;
    }

    .parent-logo-box img {
        height: 35px;
    }
}

.footer-links a {
    font-size: 13px;
    color: #565656;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1f1f1f;
    transform: translateX(5px);
}

/* Contact Info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: #8b4513;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 13px;
    color: #565656;
    line-height: 1.5;
}

.footer-contact-item a {
    color: #565656;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #1d1d1d;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #8b4513;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    color: #565656;
}

.footer-social a:hover svg {
    color: #fff;
}

.support-line a{
    font-size: 22px;
    color: #753a1e;
    font-weight: bold;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .hierarchy-connector {
        width: 300px;
    }

    .hierarchy-children {
        gap: 40px;
    }

    .child-logo-box {
        min-width: 160px;
        padding: 20px 25px;
    }

    .child-logo-box img {
        height: 35px;
    }
}

@media (max-width: 768px) {
    .footer-hierarchy {
        padding: 40px 0 30px;
    }

    .hierarchy-title h2 {
        font-size: 22px;
    }

    .hierarchy-connector {
        width: 200px;
    }

    .hierarchy-children {
        flex-direction: column;
        gap: 30px;
    }

    .hierarchy-child::before {
        display: none;
    }

    .hierarchy-connector::after {
        display: none;
    }

    .hierarchy-connector::before {
        height: 30px;
    }

    .hierarchy-connector {
        height: 30px;
    }

    .child-logo-box {
        min-width: 220px;
    }

    .child-menu ul {
        flex-direction: column;
        gap: 8px;
    }

    .footer-main .row>div {
        margin-bottom: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .parent-logo-box {
        padding: 20px 30px;
    }

    .parent-logo-box img {
        height: 35px;
    }

    .hierarchy-children {
        width: 100%;
        padding: 0 20px;
    }

    .child-logo-box {
        width: 100%;
        min-width: auto;
    }
}

/* ===========================
   HOVER SHINE EFFECT
   =========================== */
.hover-shine {
    position: relative;
    display: block;
    overflow: hidden;
}

.hover-shine::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
}

.hover-shine:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}


/* Bölüm Başlığı */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #602d14;
    margin-bottom: 30px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Grid Yapısı */
.sectors2 {
    padding: 45px 0;
}

/* Kart Tasarımı */
.sector-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

/* Kart Başlık Alanı */
.sectors2 .card-header {
    padding: 25px;
    display: flex;
    align-items: center;
    background-color: #fdfdfd;
    border-bottom: 1px solid #eee;
    justify-content: center;
}

.sectors2 .card-icon {
    font-size: 1.5rem;
    margin-right: 20px;
    /* İkonlar için yer tutucu renk - aşağıda özelleştirilecek */
    color: #555;
}

.sectors2 .card-title h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #737374;
}

/* Kart İçerik Listesi */
.sectors2 .card-body {
    padding: 25px;
    min-height: 158px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sectors2 .card-body ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sectors2 .card-body li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.sectors2 .card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #602d14;
    font-weight: bold;
}

.sectors2 .sector-card {
    /* border-top-color: #602d14; */
    margin-bottom: 8px;
}

.sectors2 .sector-card .card-icon {
    color: #602d14;
}


/* Responsive Ayar */
@media (max-width: 768px) {
    .sectors2 {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.logo-animation {
    opacity: 0;
    transform: translateY(-30px) scale(1.05);
    filter: blur(6px);
    transition:
        opacity 2s ease-out,
        transform 2s ease-out,
        filter 2s ease-out;
}

.logo-animation.delay {
    transition-delay: 1s;
    /* ikinci logo biraz sonra gelsin */
}


.logo-animation.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* ===========================
   HISTORY TIMELINE STYLES
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #283442;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233 0%, #75391c 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: 25px;
}

.history-timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.history-swiper {
    padding: 40px 0 100px 0;
    overflow: visible;
}

.history-swiper .swiper-slide {
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.history-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.timeline-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.timeline-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.timeline-card:hover .timeline-image img {
    transform: scale(1.1);
}

.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}

.timeline-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-icon {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.3);
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-icon {
    transform: rotate(360deg) scale(1.1);
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.timeline-year {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #915233;
    margin: 20px 0 10px 0;
    line-height: 1;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #283442;
    margin-bottom: 15px;
}

.timeline-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

/* Custom Year-based Pagination */
.history-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding: 0 20px;
}

.pagination-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #915233 20%, #915233 80%, transparent 100%);
    z-index: 0;
}

.history-swiper .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.history-swiper .swiper-pagination-bullet {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    padding: 10px 2px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-swiper .swiper-pagination-bullet::before {
    content: attr(data-year);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.0rem;
    font-weight: 400;
    color: #6c757d;
    transition: all 0.3s ease;
}

.history-swiper .swiper-pagination-bullet::after {
    content: '';
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #6c757d;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: -1;
}

.history-swiper .swiper-pagination-bullet:hover::before {
    color: #915233;
    transform: scale(1.1);
}

.history-swiper .swiper-pagination-bullet:hover::after {
    border-color: #915233;
    transform: translate(-50%, -50%) scale(1.2);
}

.history-swiper .swiper-pagination-bullet-active::before {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.history-swiper .swiper-pagination-bullet-active::after {
    top: 50%;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.4);
}

/* Navigation Arrows */
.history-next,
.history-prev {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.history-next svg,
.history-prev svg {
    display: none;
}

.history-next::after,
.history-prev::after {
    content: '';
    width: 45px;
    height: 45px;
    /* transform: rotate(45deg); */
    background-image: url(../images/arrow-right.png);
    background-size: 100%;
    background-repeat: no-repeat;
}

.history-prev::after {
    transform: rotate(-180deg);
}

.history-next {
    right: -30px;
}

.history-prev {
    left: -30px;
}

.history-next:hover,
.history-prev:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(145, 82, 51, 0.5);
}

.history-next.swiper-button-disabled,
.history-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .history-next {
        right: 10px;
    }

    .history-prev {
        left: 10px;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .timeline-image {
        height: 300px;
    }

    .timeline-content {
        padding: 30px;
    }

    .timeline-year {
        font-size: 2.5rem;
    }

    .history-swiper .swiper-pagination {
        gap: 20px;
    }

    .history-swiper .swiper-pagination-bullet::before {
        font-size: 1rem;
    }

    .history-swiper .swiper-pagination-bullet-active::before {
        font-size: 1.2rem;
    }

    .history-swiper .swiper-pagination-bullet-active::after {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .history-timeline-section {
        padding: 60px 0 0 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .timeline-image {
        height: 250px;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
        top: -25px;
        left: 25px;
    }

    .timeline-icon i {
        font-size: 1.2rem;
    }

    .timeline-year {
        font-size: 2rem;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    .timeline-text {
        font-size: 0.95rem;
    }

    .history-pagination {
        margin-top: 40px;
        display: none;
    }

    .history-swiper .swiper-pagination {
        gap: 15px;
        flex-wrap: wrap;
    }

    .history-swiper .swiper-pagination-bullet::before {
        font-size: 0.9rem;
    }

    .history-swiper .swiper-pagination-bullet-active::before {
        font-size: 1rem;
    }

    .history-swiper .swiper-pagination-bullet-active::after {
        width: 35px;
        height: 35px;
    }

    .history-next,
    .history-prev {
        width: 50px;
        height: 50px;
        top: 24% !important;
    }

    .history-next::after,
    .history-prev::after {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 576px) {
    .history-swiper {
        padding: 20px 0 0 0;
    }

    .timeline-card {
        border-radius: 15px;
    }

    .timeline-image {
        height: 200px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-year {
        font-size: 1.8rem;
    }

    .timeline-title {
        font-size: 1.2rem;
    }

    .pagination-line {
        width: 90%;
    }

    .history-swiper .swiper-pagination {
        gap: 10px;
    }

    .history-swiper .swiper-pagination-bullet {
        padding: 8px 12px;
    }

    .history-next {
        right: 5px;
    }

    .history-prev {
        left: 5px;
    }
}

/* ===========================
   FILES SECTION STYLES
   =========================== */

.files-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #283442;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233, #75391c);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    font-weight: 400;
}

.files-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-radius: 20px;
    border: 1px solid rgba(145, 82, 51, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Glassmorphism effect */
.file-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(145, 82, 51, 0.05), transparent);
    transition: left 0.6s ease;
}

.file-item:hover::before {
    left: 100%;
}

.file-item:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 60px rgba(145, 82, 51, 0.15);
    border-color: rgba(145, 82, 51, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 252, 250, 1) 100%);
}

/* File Icon */
.file-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(145, 82, 51, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.file-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.file-item:hover .file-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(145, 82, 51, 0.4);
}

.file-item:hover .file-icon::before {
    opacity: 1;
}

.file-icon i {
    font-size: 2.2rem;
    color: #fff;
    transition: transform 0.4s ease;
}

.file-item:hover .file-icon i {
    transform: scale(1.1);
}

/* File Info */
.file-info {
    flex: 1;
    min-width: 0;
}

.file-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #283442;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.file-item:hover .file-title {
    color: #915233;
}

.file-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.file-size,
.file-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.file-size i,
.file-date i {
    color: #915233;
    font-size: 0.9rem;
}

.file-item:hover .file-size,
.file-item:hover .file-date {
    color: #333;
}

/* Download Button */
.file-download {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(145, 82, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.file-download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.file-download:hover::before {
    width: 300px;
    height: 300px;
}

.file-download i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.file-download span {
    position: relative;
    z-index: 1;
}

.file-download:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(145, 82, 51, 0.4);
    background: linear-gradient(135deg, #a05d3a 0%, #8a4523 100%);
    color: #fff !important;
}

.file-download:hover i {
    transform: translateY(3px);
    animation: downloadBounce 0.6s ease infinite;
    color: #fff !important;
}

.file-download:hover span {
    color: #fff !important;
}

@keyframes downloadBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }

    .file-item {
        padding: 25px 30px;
        gap: 20px;
    }

    .file-icon {
        width: 60px;
        height: 60px;
    }

    .file-icon i {
        font-size: 1.8rem;
    }

    .file-title {
        font-size: 1.2rem;
    }

    .file-download {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .files-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .file-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
        gap: 20px;
    }

    .file-icon {
        width: 55px;
        height: 55px;
    }

    .file-icon i {
        font-size: 1.6rem;
    }

    .file-title {
        font-size: 1.1rem;
    }

    .file-meta {
        gap: 15px;
    }

    .file-size,
    .file-date {
        font-size: 0.9rem;
    }

    .file-download {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .files-list {
        gap: 15px;
    }

    .file-item {
        padding: 20px;
        border-radius: 15px;
    }

    .file-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .file-icon i {
        font-size: 1.5rem;
    }

    .file-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .file-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .file-size,
    .file-date {
        font-size: 0.85rem;
    }

    .file-download {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}

/* ===========================
   DIRECTORS SECTION STYLES
   =========================== */

.directors-section {
    padding: 20px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #283442;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233, #75391c);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
    font-weight: 400;
}

.director-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    max-width: 250px;
    margin: 0 auto;
}

.director-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.director-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%;
    /* 4:5 aspect ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #283442 0%, #3d4f63 100%);
}

.director-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 32px;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.director-card:hover .director-image {
    transform: scale(1.08);
}

.director-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.1) 50%,
            rgba(40, 52, 66, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.director-card:hover .director-overlay {
    opacity: 1;
}

.director-info {
    padding: 20px 15px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.director-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #283442;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.director-card:hover .director-name {
    color: #915233;
}

.director-title {
    font-family: 'Montserrat', sans-serif;
    font-size: .8rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.director-card:hover .director-title {
    color: #75391c;
}

/* Decorative element */
.director-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #915233, #75391c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.director-card:hover::before {
    transform: scaleX(1);
}

.item-size-5 .director-name {
    font-size: 1rem;
}

.item-size-5 .director-info {
    padding: 20px 8px;
}

.item-size-5 .director-image {
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    /* Bootstrap handles the layout automatically */
}

@media (max-width: 768px) {
    .directors-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 20px;
    }

    .director-info {
        padding: 25px 20px;
    }

    .director-name {
        font-size: 1.2rem;
    }

    .director-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .directors-section {
        padding: 20px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .director-card {
        border-radius: 15px;
    }

    .director-info {
        padding: 20px 18px;
    }

    .director-name {
        font-size: 1.3rem;
    }

    .director-title {
        font-size: 0.9rem;
    }
}

/* ===========================
   ICON LIST SECTION STYLES
   =========================== */

.icon-list-section {
    padding: 20px 0;
}

.icon-list-section .features-top-wrapper {
    padding: 26px 0;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #e1e1e1;
}

.icon-list-section .features-explain-icon {
    justify-content: center;
    width: 150px;
    border-right: 1px solid #e1e1e1;
    padding-top: 27px;
    padding-bottom: 27px;
    text-align: center;
    padding-right: 25px;
    display: flex;
    align-items: center;
}

.icon-list-section .features-explain-wrapper {
    margin-left: 24px;
    padding-top: 11px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ===========================
   FAQ ACCORDION STYLES
   =========================== */

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.accordion-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(145, 82, 51, 0.1);
    position: relative;
}

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #915233 0%, #75391c 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px 0 0 16px;
}

.accordion-item:hover {
    box-shadow: 0 8px 30px rgba(145, 82, 51, 0.15);
    transform: translateY(-2px);
}

.accordion-item:hover::before {
    height: 100%;
}

.accordion-item.active {
    box-shadow: 0 8px 30px rgba(145, 82, 51, 0.2);
}

.accordion-item.active::before {
    height: 100%;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: linear-gradient(90deg, rgba(145, 82, 51, 0.03) 0%, transparent 100%);
}

.accordion-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 14px;
    color: #ffffff;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(145, 82, 51, 0.25);
}

.accordion-item:hover .accordion-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 16px rgba(145, 82, 51, 0.35);
}

.accordion-item.active .accordion-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, #75391c 0%, #915233 100%);
}

.accordion-title {
    flex: 1;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #283442;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.accordion-item:hover .accordion-title {
    color: #915233;
}

.accordion-toggle {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(145, 82, 51, 0.08);
    border-radius: 10px;
    color: #915233;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-toggle {
    background: rgba(145, 82, 51, 0.15);
    transform: rotate(180deg);
}

.accordion-toggle i {
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 32px 32px 108px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    animation: fadeInContent 0.5s ease-out;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accordion-body p {
    margin: 0 0 16px 0;
    color: #555;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
}

.accordion-body ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 28px;
    color: #555;
}

.accordion-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 50%;
    transform: translateY(-50%);
}

.accordion-body ul li strong {
    color: #283442;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .faq-accordion {
        padding: 20px 0;
    }

    .accordion-item {
        margin-bottom: 16px;
        border-radius: 12px;
    }

    .accordion-header {
        padding: 20px 20px;
        gap: 16px;
    }

    .accordion-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .accordion-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .accordion-body {
        padding: 0 20px 24px 20px;
        font-size: 0.95rem;
    }

    .accordion-body ul li {
        padding-left: 24px;
    }
}

@media (max-width: 480px) {
    .accordion-header {
        padding: 16px 16px;
        gap: 12px;
    }

    .accordion-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 10px;
    }

    .accordion-title {
        font-size: 0.95rem;
    }

    .accordion-toggle {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .accordion-body {
        padding: 0 16px 20px 16px;
        font-size: 0.9rem;
    }
}

/* ===========================
   CONTENT BLOCKS STYLES
   =========================== */

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

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.content-block:nth-child(1) {
    animation-delay: 0.1s;
}

.content-block:nth-child(2) {
    animation-delay: 0.2s;
}

.content-block:nth-child(3) {
    animation-delay: 0.3s;
}

.content-block:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Left Layout */
.content-block.image-left .block-image {
    order: 1;
}

.content-block.image-left .block-content {
    order: 2;
}

/* Image Right Layout */
.content-block.image-right .block-image {
    order: 2;
}

.content-block.image-right .block-content {
    order: 1;
}

/* Block Image */
.block-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.block-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.block-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.block-image:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(145, 82, 51, 0.3) 0%,
            rgba(117, 57, 28, 0.5) 100%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.block-image:hover .image-overlay {
    opacity: 0.8;
}

/* Block Content */
.block-content {
    padding: 20px;
    position: relative;
}

.block-number {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(145, 82, 51, 0.1);
    line-height: 1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, rgba(145, 82, 51, 0.15) 0%, rgba(117, 57, 28, 0.08) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 0;
}

.block-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #283442;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.block-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233 0%, #75391c 100%);
    border-radius: 2px;
}

.block-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: justify;
}

.block-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.block-features li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
    transition: all 0.3s ease;
}

.block-features li:hover {
    transform: translateX(5px);
    color: #915233;
}

.block-features li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #915233;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.block-features li:hover i {
    transform: scale(1.2);
    color: #75391c;
}

.block-btn {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.block-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #75391c 0%, #915233 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.block-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(145, 82, 51, 0.4);
    color: #fff;
}

.block-btn:hover::before {
    left: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .content-block {
        gap: 40px;
        margin-bottom: 80px;
    }

    .block-title {
        font-size: 2.2rem;
    }

    .block-image img {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .content-block {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 70px;
    }

    .content-block.image-left .block-image,
    .content-block.image-right .block-image {
        order: 1;
    }

    .content-block.image-left .block-content,
    .content-block.image-right .block-content {
        order: 2;
    }

    .block-image img {
        height: 400px;
    }

    .block-title {
        font-size: 2rem;
    }

    .block-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .content-blocks {
        padding: 40px 0;
    }

    .content-block {
        margin-bottom: 60px;
        gap: 30px;
    }

    .block-image img {
        height: 350px;
    }

    .block-title {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }

    .block-title::after {
        width: 60px;
        height: 3px;
    }

    .block-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .block-number {
        font-size: 3.5rem;
    }

    .block-features li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .block-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .content-blocks {
        padding: 30px 0;
    }

    .content-block {
        margin-bottom: 50px;
        gap: 25px;
    }

    .block-image {
        border-radius: 15px;
    }

    .block-image img {
        height: 280px;
    }

    .block-content {
        padding: 10px;
    }

    .block-number {
        font-size: 3rem;
    }

    .block-title {
        font-size: 1.5rem;
        padding-bottom: 12px;
    }

    .block-title::after {
        width: 50px;
    }

    .block-text {
        font-size: 0.95rem;
        text-align: left;
    }

    .block-features li {
        font-size: 0.9rem;
        padding-left: 30px;
    }

    .block-features li i {
        font-size: 1rem;
    }

    .block-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        border-radius: 40px;
    }
}

/* ===========================
   END TO END PROCESS STYLES
   =========================== */

.endtoend-page-section {
    padding: 60px 0 80px 0;
}

.endtoend-page-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.endtoend-page-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #283442;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.endtoend-page-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233, #75391c);
    border-radius: 2px;
}

.endtoend-page-section .section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 25px;
}

/* Step Container */
.endtoend-step {
    margin-bottom: 50px;
    position: relative;
}

/* Step Number and Title */
.step-number {
    text-align: center;
    margin-bottom: 30px;
}

.step-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, #915233, #75391c);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(145, 82, 51, 0.3);
    margin-bottom: 10px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 15px;
}

/* Step Cards Container */
.step-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Company Card */
.company-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 175px;
    position: relative;
    border: 2px solid #2a9d8f;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(42, 157, 143, 0.25);
    border-color: #915233;
}

.card-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

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

.company-card:hover .card-image img {
    transform: scale(1.1);
}

.card-logo {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    padding: 8px;
    z-index: 10;
}

.card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #283442;
    text-align: center;
    padding: 35px 15px 20px 15px;
    margin: 0;
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* big Company Card */
.company-card.medium {
    width: 220px;
}

.company-card.medium .card-image {
    height: 140px;
}

/* big Company Card */
.company-card.big {
    width: 320px;
}

.company-card.big .card-image {
    height: 180px;
}



/* Step Connector */
.step-connector {
    width: 100%;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.step-connector::before {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #2a9d8f, #75391c);
}

.step-connector::after {
    /* content: '▼'; */
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #75391c;
    font-size: 1.5rem;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Final Step - Consumer */
.final-step .step-connector {
    display: none;
}

.final-consumer {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.consumer-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

.consumer-logo {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: #077437;
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.consumer-logo img {
    height: 60px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .company-card {
        width: 160px;
    }

    .card-image {
        height: 100px;
    }

    .step-cards {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .endtoend-page-section .section-title {
        font-size: 2.5rem;
    }

    .company-card {
        width: 150px;
    }

    .card-title {
        font-size: 0.9rem;
        padding: 30px 10px 15px 10px;
    }

    .step-num {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .step-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .endtoend-page-section .section-title {
        font-size: 2rem;
    }

    .endtoend-page-section .section-description {
        font-size: 1rem;
    }

    .company-card {
        width: 140px;
    }

    .card-image {
        height: 90px;
    }

    .card-logo {
        width: 70px;
        height: 70px;
        bottom: 45px;
    }

    .card-title {
        font-size: 0.85rem;
        min-height: 65px;
    }

    .step-cards {
        gap: 15px;
    }

    .final-consumer {
        max-width: 100%;
    }

    .consumer-image {
        height: 250px;
    }

    .consumer-logo {
        padding: 15px 30px;
    }

    .consumer-logo img {
        height: 45px;
    }
}

@media (max-width: 576px) {
    .endtoend-page-section {
        padding: 70px 0 0px 0;
    }

    .endtoend-page-section .section-header {
        margin-bottom: 40px;
    }

    .endtoend-page-section .section-title {
        font-size: 1.8rem;
    }

    .company-card {
        width: calc(50% - 10px);
        max-width: 150px;
    }

    .step-cards {
        gap: 12px;
    }

    .step-num {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
    }

    .step-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .step-connector {
        height: 40px;
    }

    .consumer-image {
        height: 200px;
    }

    .consumer-logo {
        padding: 12px 25px;
    }

    .consumer-logo img {
        height: 35px;
    }
}

.scroll-prompt {
    position: absolute;
    z-index: 998;
    bottom: -80px;
    left: 50%;
    margin-left: -80px;
    width: 160px;
    height: 160px;
}

.scroll-prompt .scroll-prompt-arrow-container {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -18px;
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.scroll-prompt .scroll-prompt-arrow {
    -webkit-animation-name: opacity;
    animation-name: opacity;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.scroll-prompt .scroll-prompt-arrow:last-child {
    animation-direction: reverse;
    margin-top: -6px;
}

.scroll-prompt .scroll-prompt-arrow>div {
    width: 36px;
    height: 36px;
    border-right: 8px solid #86492a;
    border-bottom: 8px solid #86492a;
    transform: rotate(45deg) translateZ(1px);
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    20% {
        opacity: 0.2;
    }

    30% {
        opacity: 0.3;
    }

    40% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.5;
    }

    60% {
        opacity: 0.6;
    }

    70% {
        opacity: 0.7;
    }

    80% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(3px);
    }

    20% {
        transform: translateY(6px);
    }

    30% {
        transform: translateY(9px);
    }

    40% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(18px);
    }

    70% {
        transform: translateY(21px);
    }

    80% {
        transform: translateY(24px);
    }

    90% {
        transform: translateY(27px);
    }

    100% {
        transform: translateY(30px);
    }
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(3px);
    }

    20% {
        transform: translateY(6px);
    }

    30% {
        transform: translateY(9px);
    }

    40% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(18px);
    }

    70% {
        transform: translateY(21px);
    }

    80% {
        transform: translateY(24px);
    }

    90% {
        transform: translateY(27px);
    }

    100% {
        transform: translateY(30px);
    }
}

/* ===========================
   NEWS DETAIL PAGE STYLES
   =========================== */

/* News Detail Section */
.news-detail-section {
    padding: 40px 0 80px 0;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-family: 'Montserrat', sans-serif;
}

.breadcrumb-item {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '/';
    padding: 0 10px;
    color: #999;
}

.breadcrumb-item a {
    color: #915233;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #75391c;
}

.breadcrumb-item a i {
    margin-right: 5px;
}

.breadcrumb-item.active {
    color: #999;
}

/* Back Button */
.back-button-wrapper {
    margin-bottom: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #915233, #75391c);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(145, 82, 51, 0.2);
}

.back-button:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(145, 82, 51, 0.3);
    color: #fff;
}

.back-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-3px);
}

/* News Detail Content */
.news-detail-content {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

/* News Header */
.news-detail-header {
    padding: 40px 50px 30px 50px;
    border-bottom: 1px solid #f0f0f0;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.news-category-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #915233, #75391c);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.news-date-info,
.news-author {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.news-date-info i,
.news-author i {
    color: #915233;
    font-size: 1rem;
}

.news-detail-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #283442;
    line-height: 1.3;
    margin: 0;
}

/* Featured Image */
.news-detail-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-detail-image .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* blur image */
    filter: blur(8px);
}

.news-detail-image .real-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    transition: transform 0.5s ease;
}

.news-detail-content:hover .news-detail-image img {
    /* transform: scale(1.05); */
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-caption i {
    font-size: 1rem;
}

/* News Body */
.news-detail-body {
    padding: 50px;
}

/* News Summary */
.news-summary {
    padding: 30px;
    background: linear-gradient(135deg, rgba(145, 82, 51, 0.05), rgba(117, 57, 28, 0.05));
    border-left: 4px solid #915233;
    border-radius: 10px;
    margin-bottom: 40px;
}

.news-summary p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    font-weight: 500;
}

/* News Content */
.news-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #283442;
    margin: 40px 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #915233;
}

.news-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #283442;
    margin: 30px 0 15px 0;
}

.news-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Blockquote */
.news-quote {
    position: relative;
    padding: 40px 50px;
    margin: 40px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 5px solid #915233;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.news-quote i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    color: rgba(145, 82, 51, 0.2);
}

.news-quote p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    color: #333;
    margin: 0 0 15px 0;
    padding-left: 40px;
}

.news-quote footer {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #915233;
    padding-left: 40px;
}

/* Share Buttons */
.news-share {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.news-share h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #283442;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.email {
    background: #ea4335;
}

/* Related News Section */
.related-news-section {
    margin-top: 80px;
}

.related-news-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-news-section .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #283442;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.related-news-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233, #75391c);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .news-detail-title {
        font-size: 2.2rem;
    }

    .news-detail-image {
        height: 450px;
    }

    .news-detail-body {
        padding: 40px;
    }
}

@media (max-width: 992px) {
    .news-detail-header {
        padding: 30px 40px 25px 40px;
    }

    .news-detail-title {
        font-size: 2rem;
    }

    .news-detail-image {
        height: 400px;
    }

    .news-detail-body {
        padding: 35px;
    }

    .news-content h2 {
        font-size: 1.8rem;
    }

    .news-content h3 {
        font-size: 1.3rem;
    }

    .news-quote {
        padding: 30px 40px;
    }

    .news-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .news-detail-section {
        padding: 30px 0 60px 0;
    }

    .breadcrumb-nav {
        margin-bottom: 20px;
    }

    .breadcrumb-item {
        font-size: 0.85rem;
    }

    .back-button-wrapper {
        margin-bottom: 25px;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .news-detail-header {
        padding: 25px 30px 20px 30px;
    }

    .news-meta {
        gap: 15px;
    }

    .news-category-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .news-date-info,
    .news-author {
        font-size: 0.85rem;
    }

    .news-detail-title {
        font-size: 1.8rem;
    }

    .news-detail-image {
        height: 300px;
    }

    .image-caption {
        padding: 15px 20px;
        font-size: 0.85rem;
    }

    .news-detail-body {
        padding: 30px 25px;
    }

    .news-summary {
        padding: 20px;
        margin-bottom: 30px;
    }

    .news-summary p {
        font-size: 1.05rem;
    }

    .news-content h2 {
        font-size: 1.6rem;
        margin: 30px 0 15px 0;
    }

    .news-content h3 {
        font-size: 1.2rem;
        margin: 25px 0 12px 0;
    }

    .news-content p {
        font-size: 1rem;
    }

    .news-quote {
        padding: 25px 30px;
        margin: 30px 0;
    }

    .news-quote i {
        font-size: 2.5rem;
        top: 15px;
        left: 15px;
    }

    .news-quote p {
        font-size: 1.05rem;
        padding-left: 30px;
    }

    .news-quote footer {
        font-size: 0.95rem;
        padding-left: 30px;
    }

    .news-share {
        margin-top: 40px;
        padding-top: 30px;
    }

    .news-share h4 {
        font-size: 1.1rem;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .related-news-section {
        margin-top: 60px;
    }

    .related-news-section .section-header {
        margin-bottom: 40px;
    }

    .related-news-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .news-detail-section {
        padding: 20px 0 50px 0;
    }

    .breadcrumb {
        font-size: 0.8rem;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 5px;
    }

    .back-button {
        padding: 8px 18px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .news-detail-content {
        border-radius: 15px;
        margin-bottom: 50px;
    }

    .news-detail-header {
        padding: 20px 20px 15px 20px;
    }

    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .news-category-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .news-date-info,
    .news-author {
        font-size: 0.8rem;
    }

    .news-detail-title {
        font-size: 1.5rem;
    }

    .news-detail-image {
        height: 250px;
    }

    .image-caption {
        padding: 12px 15px;
        font-size: 0.8rem;
    }

    .news-detail-body {
        padding: 25px 20px;
    }

    .news-summary {
        padding: 15px;
        margin-bottom: 25px;
    }

    .news-summary p {
        font-size: 1rem;
    }

    .news-content h2 {
        font-size: 1.4rem;
        margin: 25px 0 12px 0;
        padding-bottom: 12px;
        border-bottom-width: 2px;
    }

    .news-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px 0;
    }

    .news-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .news-quote {
        padding: 20px;
        margin: 25px 0;
    }

    .news-quote i {
        font-size: 2rem;
        top: 12px;
        left: 12px;
    }

    .news-quote p {
        font-size: 1rem;
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .news-quote footer {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .news-share {
        margin-top: 30px;
        padding-top: 25px;
    }

    .news-share h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .share-buttons {
        gap: 10px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .related-news-section {
        margin-top: 50px;
    }

    .related-news-section .section-header {
        margin-bottom: 30px;
    }

    .related-news-section .section-title {
        font-size: 1.8rem;
        padding-bottom: 12px;
    }

    .related-news-section .section-title::after {
        width: 60px;
        height: 3px;
    }
}

/** Announcements - Modern Card Design **/

.announcement-list-wrapper {
    margin-top: 30px;
}

.announcement-list-wrapper ul {
    display: grid;
    gap: 20px;
}

.announcement-list-wrapper ul li:first-child {
    border-top: none;
}

.announcement-list-wrapper ul li {
    display: flex;
    padding: 0;
    border: none;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.announcement-list-wrapper ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #f59c17 0%, #ff8c00 100%);
    transform: scaleY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-list-wrapper ul li:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(245, 156, 23, 0.15);
    transform: translateY(-4px);
}

.announcement-list-wrapper ul li:hover::before {
    transform: scaleY(1);
}

.announcement-list-wrapper ul li .announcement-go-details a i {
    transition: all 0.3s ease;
}

.announcement-list-wrapper ul li:hover .announcement-go-details a i {
    color: #ffffff;
    background: linear-gradient(135deg, #602d14 0%, #602d14 100%);
}

.announcement-date {
    min-width: 120px;
    width: 120px;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right: none;
    position: relative;
}

.announcement-date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent 0%, #dee2e6 50%, transparent 100%);
}

.announcement-date h2 {
    font-size: 48px;
    line-height: 1;
    font-weight: 700;
    color: #602d14;
    margin: 0;
}

.announcement-date h5 {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 8px 0 2px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.announcement-date h6 {
    font-family: inherit;
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
    margin: 0;
}

.annoucement-description-wrapper {
    margin-left: 0;
    padding: 25px 20px;
    margin-right: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.annoucement-description-wrapper p {
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: -0.2px;
    color: #212529;
    margin: 0 0 12px 0;
    transition: color 0.3s ease;
}

.announcement-list-wrapper ul li:hover .annoucement-description-wrapper p {
    color: #602d14;
}

.announcement-go-details {
    align-self: center;
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-go-details a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-go-details a i {
    color: #adb5bd;
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-features {
    margin-top: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announce-type {
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-align: left;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59c17 0%, #ff8c00 100%);
    border-radius: 20px;
    text-transform: uppercase;
}

.announce-status {
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.5px;
    text-align: left;
    color: #ffffff;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 20px;
    text-transform: uppercase;
}

.announce-status i {
    margin-right: 6px;
    font-size: 14px;
}

.announce-type i {
    margin-right: 6px;
    font-size: 14px;
}

.announce-status.ended {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
}


.announcement-heading {
    font-family: inherit;
    font-size: 25px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: -0.5px;
    text-align: left;
    color: #222a33;
}

.announcement-info {
    padding: 19px 19px;
    margin-top: 39px;
    border-bottom: 3px solid #eeeeee;
    border-top: 3px solid #eeeeee;
}

.announcement-info>ul {
    display: flex;
    align-items: center;
}

.announcement-info>ul>li {
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    border-right: 1px solid #eeeeee;
}

.announcement-info>ul>li:last-child {
    border: none;
    flex: 1;
}

.announce-info-date {
    width: 20%;
    color: #a4a4a4;
}

.announce-info-category {
    width: 30%;
    color: #f59c17;
}

.announce-info-type {
    width: 35%;
}

.announce-info-active {
    color: #077437;
}

.announce-info-passive {
    color: #f51717;
}

.announce-browser-options {
    font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    display: flex;
    color: #a4a4a4;
    justify-content: flex-end;
    align-items: center;
}

.announce-browser-options li {
    margin-left: 15px;
    cursor: pointer;
}

.announcement-details {
    margin-top: 38px;
    word-break: break-word;
}

.announcement-details ul li,
.announcement-details ol li {
    font-family: inherit;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222a33;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.announcement-details {
    font-family: inherit;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    margin-bottom: 33px;
    color: #222a33;
}

.announcement-details p {
    font-family: inherit;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222a33;
    margin-bottom: 1rem;
}

.attachment-description {
    font-family: inherit;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222a33;
    word-break: break-word;
}

.attachment-description strong {
    font-family: inherit;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222a33;
    word-break: break-word;
}

.announcement-details strong {
    font-family: inherit;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #222a33;
    margin-bottom: 38px;
}

/* Responsive Design for Announcements */
@media (max-width: 768px) {
    .announcement-list-wrapper ul li {
        flex-direction: column;
    }

    .announcement-date {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        padding: 20px 15px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }

    .announcement-date::after {
        display: none;
    }

    .announcement-date h2 {
        font-size: 40px;
    }

    .announcement-date h5,
    .announcement-date h6 {
        font-size: 14px;
    }

    .annoucement-description-wrapper {
        padding: 20px 15px 15px 15px;
    }

    .annoucement-description-wrapper p {
        font-size: 16px;
    }

    .announcement-go-details {
        position: absolute;
        top: 20px;
        right: 15px;
        margin: 0;
    }

    .announcement-go-details a i {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .announcement-list-wrapper ul {
        gap: 15px;
    }

    .announcement-list-wrapper ul li {
        border-radius: 12px;
    }

    .announce-type,
    .announce-status {
        font-size: 11px;
        padding: 6px 12px;
    }
}

/** NUMBERS STAT CARDS **/
.stats-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card.featured {
    background: linear-gradient(145deg, #2e7d32, #388e3c);
    border: none;
}

.stat-card.featured .stat-number,
.stat-card.featured .stat-label {
    color: #fff;
}

.stat-card.featured::before {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2e7d32;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 5px;
}

.stat-card.featured .stat-unit {
    color: rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

    .stats-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 576px) {

    .stats-grid-4,
    .stats-grid-3 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

/* ===========================
   GROUP COMPANIES PAGE STYLES
   =========================== */

.group-companies-header {
    text-align: center;
    margin-bottom: 60px;
}

.group-companies-header .section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.group-companies-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f37321 0%, #1a472a 100%);
    border-radius: 2px;
}

.group-companies-header .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.7;
}

.group-company-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 71, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.group-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f37321 0%, #1a472a 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.group-company-card:hover::before {
    transform: scaleX(1);
}

.group-company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 71, 42, 0.15);
    border-color: rgba(26, 71, 42, 0.15);
}

.group-company-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(26, 71, 42, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.group-company-card:hover .group-company-logo {
    background: rgba(26, 71, 42, 0.06);
    transform: scale(1.05);
}

.group-company-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.group-company-card:hover .group-company-logo img {
    filter: brightness(1);
}

.group-company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a472a;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-company-website {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #f37321;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(243, 115, 33, 0.05);
    transition: all 0.3s ease;
    font-weight: 500;
    margin-top: auto;
}

.group-company-website svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.group-company-website:hover {
    background: rgba(243, 115, 33, 0.1);
    color: #d6621c;
    gap: 12px;
}

.group-company-website:hover svg {
    transform: translateX(3px) translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {}

@media (max-width: 992px) {}


@media (max-width: 576px) {}

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #602d1421 100%);
    padding-bottom: 80px;
}

/* Contact Map Section */
.contact-map-section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map {
    width: 100%;
    height: 100%;
    position: relative;
}

.contact-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.contact-map iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Contact Content Wrapper */
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #915233 0%, #75391c 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin: 0;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #915233 0%, #75391c 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(145, 82, 51, 0.3);
}

.contact-info-card:hover .contact-info-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.5);
}

.contact-info-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.contact-info-content {
    text-align: center;
}

.contact-info-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.8;
    margin: 0;
}

.contact-info-content a {
    color: #915233;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #915233;
    transition: width 0.3s ease;
}

.contact-info-content a:hover {
    color: #75391c;
}

.contact-info-content a:hover::after {
    width: 100%;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    display: block;
}

.form-group .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #2c3e50;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    border-color: #915233;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(145, 82, 51, 0.1);
}

.form-control::placeholder {
    color: #bdc3c7;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23915233' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

/* Checkbox Styling */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    accent-color: #915233;
    margin-top: 3px;
}

.form-checkbox label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
}

.form-checkbox label a {
    color: #915233;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-checkbox label a:hover {
    color: #75391c;
    text-decoration: underline;
}

/* Submit Button */
.form-actions {
    text-align: center;
    margin-top: 35px;
}

.btn-submit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 60px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(145, 82, 51, 0.4);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(145, 82, 51, 0.3);
}

.btn-submit i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-map-section {
        height: 400px;
        margin-bottom: 60px;
    }

    .contact-content-wrapper {
        gap: 50px;
    }

    .contact-form-section {
        padding: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-map-section {
        height: 350px;
        margin-bottom: 50px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .btn-submit {
        padding: 16px 50px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-map-section {
        height: 300px;
        margin-bottom: 40px;
    }

    .contact-page {
        padding-bottom: 60px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .contact-info-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .contact-info-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .contact-info-icon i {
        font-size: 1.5rem;
    }

    .contact-info-content h3 {
        font-size: 1.1rem;
    }

    .contact-info-content p {
        font-size: 0.95rem;
    }

    .contact-form-section {
        padding: 25px 20px;
    }

    .form-control {
        padding: 13px 18px;
        font-size: 0.95rem;
    }

    .btn-submit {
        padding: 14px 40px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* ===========================
   SPLIT CONTACT PAGE STYLES
   =========================== */

/* Split Map Section */
.split-map-section {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    margin-top: -20px;
}

.split-map-container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.map-half {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.map-half iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.4s ease;
}

.map-half:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-company-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #995f42;
    margin: 0;
    font-weight: 400;
}

/* Map Divider */
.map-divider {
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(145, 82, 51, 0.5) 20%,
            rgba(145, 82, 51, 1) 50%,
            rgba(145, 82, 51, 0.5) 80%,
            transparent 100%);
    position: relative;
    z-index: 20;
    box-shadow: 0 0 20px rgba(145, 82, 51, 0.5);
}

/* Split Contact Section */
.split-contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #602d1421 100%);
    padding: 120px 0 80px 0;
}

.split-contact-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
}

/* Company Contact Half */
.company-contact-half {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 20px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(145, 82, 51, 0.1);
    transition: all 0.4s ease;
}

.company-contact-half:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(145, 82, 51, 0.15);
    border-color: rgba(145, 82, 51, 0.3);
}

.company-contact-half.secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(145, 82, 51, 0.15);
    border-color: #07743724;
}

/* Company Contact Header */
.company-contact-header {
    text-align: center;
    margin-bottom: 14px;
    padding-bottom: 30px;
    border-bottom: 2px solid #8043251f;
    position: relative;
}

.secondary .company-contact-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 30px;
    border-bottom: 2px solid #07743717;
    position: relative;
}

.company-contact-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #915233 0%, #75391c 100%);
    border-radius: 2px;
}

.secondary .company-contact-header::after {
    background: linear-gradient(90deg, #2f935b 0%, #077437 100%);
}

.company-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.3);
    transition: all 0.4s ease;
}

.secondary .company-icon {
    background: linear-gradient(135deg, #2f935b 0%, #077437 100%);
}

.company-contact-half:hover .company-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgb(135 73 43 / 50%);
}

.company-contact-half.secondary:hover .company-icon {
    box-shadow: 0 10px 30px rgb(19 125 66 / 41%);
}

.company-icon i {
    font-size: 2.2rem;
    color: #fff;
}

.company-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.company-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #7f8c8d;
    font-weight: 400;
    margin: 0;
}

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

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.contact-info-item:hover {
    padding-left: 10px;
    background: rgba(145, 82, 51, 0.02);
    border-radius: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(145, 82, 51, 0.1) 0%, rgba(117, 57, 28, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.secondary .info-icon {
    background: linear-gradient(135deg, #07743724 0%, #07743724 100%);
}

.contact-info-item:hover .info-icon {
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    transform: scale(1.1);
}

.secondary .contact-info-item:hover .info-icon {
    background: linear-gradient(135deg, #077437 0%, #077437 100%);
}

.info-icon i {
    font-size: 1.3rem;
    color: #915233;
    transition: color 0.3s ease;
}

.secondary .info-icon i {
    color: #077437;
}

.contact-info-item:hover .info-icon i {
    color: #fff;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.info-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.7;
    margin: 0;
}

.info-content a {
    color: #915233;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.secondary .info-content a {
    color: #077437;
}

.info-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #915233 0%, #75391c 100%);
    transition: width 0.3s ease;
}

.info-content a:hover {
    color: #75391c;
}

.info-content a:hover::after {
    width: 100%;
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    height: auto;
    min-height: 500px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(145, 82, 51, 0.3) 20%,
            rgba(145, 82, 51, 0.5) 50%,
            rgba(145, 82, 51, 0.3) 80%,
            transparent 100%);
    position: relative;
}

.vertical-divider::before {
    /* content: ''; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(145, 82, 51, 0.4);
}

.vertical-divider::after {
    /* content: '\f0ec'; */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.2rem;
    z-index: 1;
}

/* Contact Button */
.contact-button-wrapper {
    text-align: center;
    padding-top: 20px;
}

.contact-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #915233 0%, #75391c 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(145, 82, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.secondary .contact-btn {
    background: linear-gradient(135deg, #077437 0%, #077437 100%);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(145, 82, 51, 0.4);
    color: #fff;
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .split-contact-container {
        gap: 40px;
    }

    .company-contact-half {
        padding: 40px 30px;
    }
}

@media (max-width: 992px) {
    .split-map-section {
        height: 400px;
    }

    .map-company-tagline {
        font-size: 1rem;
    }

    .split-contact-section {
        padding: 60px 0;
    }

    .split-contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vertical-divider {
        display: none;
    }

    .company-contact-half {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .split-map-section {
        height: auto;
    }

    .split-map-container {
        flex-direction: column;
    }

    .map-half {
        height: 350px;
    }

    .map-divider {
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg,
                transparent 0%,
                rgba(145, 82, 51, 0.5) 20%,
                rgba(145, 82, 51, 1) 50%,
                rgba(145, 82, 51, 0.5) 80%,
                transparent 100%);
    }

    .map-company-tagline {
        font-size: 0.9rem;
    }

    .split-contact-section {
        padding: 50px 0;
    }

    .split-contact-container {
        gap: 40px;
    }

    .company-contact-half {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .company-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .company-icon i {
        font-size: 2rem;
    }

    .company-title {
        font-size: 1.5rem;
    }

    .company-subtitle {
        font-size: 1rem;
    }

    .contact-info-item {
        gap: 15px;
        padding: 15px 0;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .info-icon i {
        font-size: 1.2rem;
    }

    .info-content h4 {
        font-size: 1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding: 16px 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .map-half {
        height: 300px;
    }

    .map-company-tagline {
        font-size: 0.85rem;
    }

    .split-contact-section {
        padding: 90px 0 40px 0;
    }

    .company-contact-half {
        padding: 30px 20px;
    }

    .company-contact-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .company-icon {
        width: 65px;
        height: 65px;
    }

    .company-icon i {
        font-size: 1.8rem;
    }

    .company-title {
        font-size: 1.3rem;
    }

    .company-subtitle {
        font-size: 0.95rem;
    }

    .contact-info-list {
        margin-bottom: 30px;
    }

    .contact-info-item {
        gap: 12px;
        padding: 12px 0;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .info-icon i {
        font-size: 1.1rem;
    }

    .info-content h4 {
        font-size: 0.95rem;
    }

    .info-content p {
        font-size: 0.85rem;
    }

    .contact-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
        width: 100%;
    }
}

/* ===========================
   HISTORY TIMELINE V2 - SIMPLE VERSION
   =========================== */

.history-timeline-section-v2 {
    padding: 60px 0;
}

.history-timeline-container-v2 {
    position: relative;
    margin-top: 50px;
}

.history-swiper-v2 {
    padding: 40px 0 80px 0;
}

.history-swiper-v2 .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Timeline Card V2 - Simple & Clean */
.timeline-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.timeline-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a472a 0%, #2e7d32 50%, #1a472a 100%);
    border-radius: 20px 20px 0 0;
    transform: scaleX(0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card-v2:hover::before {
    transform: scaleX(1);
}

.timeline-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 71, 42, 0.15);
    border-color: #1a472a;
}

/* Timeline Content V2 */
.timeline-content-v2 {
    text-align: center;
}

.timeline-year-v2 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.timeline-year-v2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #2e7d32 50%, transparent 100%);
}

.timeline-title-v2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a472a;
    margin: 30px 0 20px 0;
    line-height: 1.3;
}

.timeline-text-v2 {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    max-width: 650px;
    margin: 0 auto;
}

/* Pagination V2 - Year Display */
.history-pagination-v2 {
    position: relative;
    margin-top: 50px;
    padding: 0 100px;
}

.pagination-line-v2 {
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ddd 20%, #ddd 80%, transparent 100%);
    transform: translateY(-50%);
}

.history-swiper-v2 .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-swiper-v2 .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background: #e0e0e0;
    opacity: 1;
    position: relative;
    transition: all 0.3s ease;
    margin: 0;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.history-swiper-v2 .swiper-pagination-bullet::before {
    content: attr(data-year);
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #999;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.history-swiper-v2 .swiper-pagination-bullet:hover {
    background: #2e7d32;
    transform: scale(1.3);
}

.history-swiper-v2 .swiper-pagination-bullet:hover::before {
    color: #2e7d32;
    font-size: 15px;
}

.history-swiper-v2 .swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
    transform: scale(1);
    border-color: #fff;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

.history-swiper-v2 .swiper-pagination-bullet-active::before {
    color: #1a472a;
    font-weight: 700;
    font-size: 16px;
    top: 28px;
}

/* Navigation Arrows V2 */
.history-next-v2,
.history-prev-v2 {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #1a472a;
    border-radius: 50%;
    color: #1a472a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.history-next-v2::after,
.history-prev-v2::after {
    font-size: 20px;
    font-weight: 800;
}

.history-next-v2:hover,
.history-prev-v2:hover {
    background: linear-gradient(135deg, #1a472a 0%, #2e7d32 100%);
    color: #ffffff;
    border-color: #1a472a;
    transform: scale(1.1);
}

.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.swiper-button-disabled:hover {
    transform: scale(1);
    background: #ffffff;
    color: #1a472a;
}

.history-prev-v2 .swiper-navigation-icon,
.history-next-v2 .swiper-navigation-icon {
    width: 22px;
    height: 22px;
}

/* Responsive Design V2 */
@media (max-width: 1200px) {
    .timeline-card-v2 {
        padding: 40px 50px;
    }

    .timeline-year-v2 {
        font-size: 64px;
    }

    .timeline-title-v2 {
        font-size: 26px;
    }

    .history-pagination-v2 {
        padding: 0 80px;
    }

    .pagination-line-v2 {
        left: 80px;
        right: 80px;
    }
}

@media (max-width: 992px) {
    .timeline-card-v2 {
        padding: 35px 40px;
    }

    .timeline-year-v2 {
        font-size: 56px;
    }

    .timeline-title-v2 {
        font-size: 24px;
    }

    .timeline-text-v2 {
        font-size: 16px;
    }

    .history-pagination-v2 {
        padding: 0 60px;
    }

    .pagination-line-v2 {
        left: 60px;
        right: 60px;
    }

    .history-next-v2,
    .history-prev-v2 {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .history-timeline-section-v2 {
        padding: 40px 0;
    }

    .timeline-card-v2 {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .timeline-year-v2 {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .timeline-year-v2::after {
        width: 50px;
        bottom: -8px;
    }

    .timeline-title-v2 {
        font-size: 22px;
        margin: 20px 0 15px 0;
    }

    .timeline-text-v2 {
        font-size: 15px;
        line-height: 1.7;
    }

    .history-pagination-v2 {
        padding: 0 40px;
        margin-top: 40px;
    }

    .pagination-line-v2 {
        left: 40px;
        right: 40px;
    }

    .history-swiper-v2 .swiper-pagination-bullet {
        width: 14px;
        height: 14px;
    }

    .history-swiper-v2 .swiper-pagination-bullet::before {
        font-size: 12px;
        top: 25px;
    }

    .history-swiper-v2 .swiper-pagination-bullet-active {
        width: 18px;
        height: 18px;
    }

    .history-swiper-v2 .swiper-pagination-bullet-active::before {
        font-size: 14px;
        top: 24px;
    }

    .history-next-v2,
    .history-prev-v2 {
        width: 40px;
        height: 40px;
    }

    .history-next-v2::after,
    .history-prev-v2::after {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .history-swiper-v2 {
        padding: 30px 0 70px 0;
    }

    .timeline-card-v2 {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .timeline-year-v2 {
        font-size: 42px;
    }

    .timeline-title-v2 {
        font-size: 20px;
    }

    .timeline-text-v2 {
        font-size: 14px;
    }

    .history-pagination-v2 {
        padding: 0 20px;
        margin-top: 30px;
    }

    .pagination-line-v2 {
        left: 20px;
        right: 20px;
    }

    .history-swiper-v2 .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        border: 2px solid #fff;
    }

    .history-swiper-v2 .swiper-pagination-bullet::before {
        font-size: 11px;
        top: 22px;
    }

    .history-swiper-v2 .swiper-pagination-bullet-active {
        width: 16px;
        height: 16px;
    }

    .history-swiper-v2 .swiper-pagination-bullet-active::before {
        font-size: 13px;
        top: 21px;
    }

    .history-next-v2,
    .history-prev-v2 {
        width: 36px;
        height: 36px;
    }

    .history-next-v2::after,
    .history-prev-v2::after {
        font-size: 16px;
    }
}


.info-window-heading {
    font-size: 17px;
    font-weight: 900;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    text-align: left;
    color: #f59c17;
}

.info-window-text-style {
    font-size: 13px;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.62;
    letter-spacing: normal;
    text-align: left;
}

.info-window-text-grey {
    color: #8b8b8b;
}

.info-window-text-green {
    color: #077236;
}

.info-window-text-green-bold {
    font-weight: bold;
    color: #077236;
}

.info-window-d-f {
    display: flex;
    margin-bottom: 5px;
}

.info-window-left-text {
    width: 75px;
    min-width: 75px;
}

.info-window-adress-wrapper {
    margin-top: 13px;
}