:root {
    --brand-dark: #0b4d59;
    --brand-light: #71989f;
    --white: #ffffff;
    --secondary: #16243d;
    --text: #555;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);

      /* 2. Mapper Variables (Used by Components) */
    --theme-color: var(--brand-dark);    
    --highlight-color: var(--brand-light); 
    --accent-color: var(--white); 
    --text-light: #777;  
    --bg-color: #f4f6f7;  
    --border-color: #e9ecef; 
    --secondary-bg: #f8f9fa; 
    --shadow: var(--shadow-soft); 


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    top:0;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    background-color: #fff;
     min-height: auto !important; 
    top: 0px !important;   
    position: static !important;
}
.visible-xs {
    display: none !important;
}

.hidden-xs {
    display: block;
}

a, button {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--brand-dark);
}

.section {
    padding: 40px 0;
    position: relative;
}

.object-fit-cover {
    object-fit: cover;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 700;
}

.title {
    font-size: clamp(18px, 5vw, 20px);
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;


}

.sub_title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #333;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-solid {
    background: var(--brand-dark);
    color: var(--white);
    border: 2px solid var(--brand-dark);
}

.btn-solid::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.btn-solid:hover {
    background: var(--brand-light);
    color: var(--white);
    border-color: var(--brand-light);
}

.btn-solid:hover::before {
    left: 150%;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--brand-dark);
    border-color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--brand-dark);
    border: 2px solid var(--brand-dark);
}

.btn-outline-dark:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.img-hover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.img-hover-wrapper img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-hover-wrapper:hover img {
    transform: scale(1.15);
    filter: brightness(0.8) contrast(1.1);
}

/* --- 5. Header --- */
.top-bar {
    background-color: var(--brand-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 0;
    font-size: 13px;
    z-index:999999;
}

.icon-box {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

.contact-item:hover .icon-box {
    background-color: var(--brand-light);
    border-color: var(--brand-light);
    transform: rotate(360deg);
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-link:hover {
    background-color: var(--brand-light);
    border-color: var(--brand-light);
    transform: translateY(-3px);
}

.main-header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1001;
    padding: 0px;
    transition: padding 0.3s ease;
}

.nav-link-custom {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--secondary);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}



.nav-item-mega, .nav-item-simple {
    position: static;
}

.simple-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-simple {
    position: relative;
}

.nav-item-simple:hover .simple-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.simple-dropdown-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.simple-dropdown-link i {
    margin-right: 10px;
    color: var(--brand-light);
}

.simple-dropdown-link:hover {
    background: rgba(113, 152, 159, 0.1);
    color: var(--brand-dark);
}

.mega-menu-wrapper {
    position: absolute;
    top: 100%;
    left: 10%;
    right: 10%;
    width: 80%;
    background: #fff;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-item-mega:hover .mega-menu-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mega-col {
    padding: 20px;
}

.mega-header {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 10px;
    border-bottom: 2px solid #f2f5f9;
    padding-bottom: 10px;
}

.mega-list {
    list-style: none;
    padding: 0;
}

.mega-link {
    display: flex;
    align-items: center;
    padding: 5px 0px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.mega-link i {
    font-size: 12px;
    margin-right: 12px;
    color: var(--brand-light);
}

.mega-link:hover {
    background: rgba(113, 152, 159, 0.1);
    color: var(--brand-dark);
    padding-left: 2px;
}



/* --- 6. Hero Section --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-color: var(--secondary);
    overflow: hidden;
}

.mySwiper {
    width: 100%;
    height: 85vh;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: var(--secondary);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(22 36 61 / 27%) 0%, rgba(11, 77, 89, 0.6) 100%);
    z-index: 1;
}


.slider-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: left;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    position: relative;
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    text-transform: capitalize;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.04em;
    margin-bottom: 29px;
}

.hero-lead {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #e0e0e0;
}

.hero-section .swiper-pagination {
    right: 40px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-section .swiper-pagination-bullet {
    width: 24px;  
    height: 24px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
    margin: 8px;  
}

.hero-section .swiper-pagination-bullet:focus {
    outline: 2px solid var(--highlight-color); 
}

.hero-section .swiper-pagination-bullet-active {
    background: var(--brand-light) !important;
    height: 40px !important;
    width: 12px !important;
    border-radius: 6px !important;
}

/* --- 7. Visual Showcase --- */
.visual-showcase {
    position: relative;
    height: 500px;
}

.main-image-card {
    position: absolute;
    top: 0;
    right: 20px;
    width: 85%;
    height: 85%;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    transition: var(--transition);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-soft);
}

.main-image-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.main-image-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.main-image-card img, .floating-card img {
    transition: transform 0.7s ease, filter 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 55%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 3;
    border: 4px solid var(--brand-light);
    animation: float 6s ease-in-out infinite;
}

.floating-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.trip-category-section {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.trip-category-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.trip-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trip-nav-btn:hover {
    background: var(--brand-dark);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(11, 77, 89, 0.3);
}

.trip-nav-btn.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.trip-nav-prev {
    left: 0;
}

.trip-nav-next {
    right: 0;
}

.trip-category-swiper .swiper-pagination {
    position: absolute;
    bottom: 0px !important;
    top: auto !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    flex-direction: row;
    width: 100% !important;
    justify-content: center;
    background: transparent;
}

.trip-category-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    opacity: 0.2;
    margin: 0 5px !important;
}

.trip-category-swiper .swiper-pagination-bullet-active {
    background: var(--brand-dark) !important;
    opacity: 1;
    height: 10px !important;
    width: 30px !important;
    border-radius: 5px !important;
}

.trip-category-card {
    background-color: #1e293b;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.1s ease;
    display: flex;
    flex-direction: column;
}

.trip-category-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    z-index: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(113, 152, 159, 0.6), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.trip-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: #0f172a;
    z-index: -1;
    pointer-events: none;
}

.trip-category-card:hover::before {
    opacity: 1;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.6s ease;
    filter: grayscale(30%);
}

.trip-category-card:hover .card-bg-img {
    transform: scale(1.15);
    opacity: 0.2;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.trip-category-card:hover .card-title {
    transform: translateY(-5px);
    color: var(--brand-light);
}

.card-text {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0;
    overflow: hidden;
}

.trip-category-card:hover .card-text {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
    margin-bottom: 25px;
}

.card-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.1s;
}

.trip-category-card:hover .card-action {
    opacity: 1;
    transform: translateY(0);
    z-index: 9999;
}

.expedition-section {
    background-color: #fff;
}

.expedition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expedition-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    border-radius: 12px;
}

.expedition-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.expedition-img {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.expedition-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.expedition-card:hover .expedition-img img {
    transform: scale(1.1);
}

.expedition-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-dark);
    color: #fff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.expedition-body {
    padding: 10px;
}

.expedition-rating {
    color: var(--brand-light);
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 3px;
    align-items: center;
}

.expedition-rating span {
    color: #333;
    margin-left: 5px;
    font-size: 13px;
}

.expedition-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.meta-item i {
    color: var(--brand-light);
}

.expedition-title {
    font-size: 14px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.expedition-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
}

.new-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
}

.old-price {
    font-size: 14px;
    color: #333;
    text-decoration: line-through;
}

.trekking-bg-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 0;
}

.trekking-bg-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--brand-dark);
}


@keyframes borderRotate {
    to {
        background-position: 300% 0;
    }
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px -10px rgba(11, 77, 89, 0.25);
}

.testimonial-card:hover::before {
    opacity: 1;
    animation-play-state: running;
}

.stars {
    margin-bottom: 8px;
    color: var(--brand-light);
    font-size: 19px;
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 2;
}

.quote {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: #2b3f53;
    margin-bottom: 15px;
    flex: 1;
    font-style: italic;
    padding: 18px 20px;
    border-radius: 20px;
    border-left: 5px solid var(--brand-light);
    background: linear-gradient(to right, rgba(113, 152, 159, 0.05), rgba(255, 255, 255, 0.5));
    position: relative;
    z-index: 2;
}

.quote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: 8px;
    top: -10px;
    color: var(--brand-light);
    opacity: 0.3;
    font-style: normal;
}

.client-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 12px;
    position: relative;
    z-index: 2;
}

.client-initials {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--brand-dark), #13273f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: white;
    box-shadow: 0 10px 18px -6px rgba(10, 26, 47, 0.3);
    text-transform: uppercase;
}

.client-meta {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 800;
    font-size: 18px;
    color: var(--brand-dark);
}

.client-role {
    font-size: 14px;
    font-weight: 500;
    color: #5c6977;
}

.client-role i {
    color: var(--brand-light);
    font-size: 12px;
}

.why-choose-section {
    padding: 0;
    background-color: var(--brand-dark);
    position: relative;
    overflow: hidden;
}

.why-choose-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 600px;
}

.why-choose-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 36, 61, 0.7) 0%, rgba(11, 77, 89, 0.5) 100%);
}

.left-content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    right: 40px;
    z-index: 2;
    color: #fff;
}

.experience-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.exp-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.why-choose-right {
    width: 66.6666%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 999;
}

.feature-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;

}

.feature-card-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card-box:hover {
    background: #fff;
    border-color: var(--brand-light);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(11, 77, 89, 0.2);
}

.feature-card-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.feature-card-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
/*partner*/

.partner-section {
    border-top: 1px solid #eee;
}
.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    align-items: center;
}

.partner-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
 
}

.partner-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.partner-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



/* --- Blog Section --- */
.blog-layout-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.featured-blog-large {
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    padding: 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.featured-blog-large:hover {
    transform: scale(1.02);
}

.featured-blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.85));
    border-radius: 20px;
}

.featured-blog-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.featured-blog-category {
    display: inline-block;
    background: var(--brand-light);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-blog-date {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.featured-blog-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.small-blogs-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.small-blog-card {
    background: var(--white);
    border-radius: 16px;
    padding: 25px;
    border-left: 4px solid var(--brand-dark);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
}

.small-blog-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--brand-light);
}

.small-blog-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.small-blog-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    background: rgba(113, 152, 159, 0.1);
    border-radius: 50px;
}

.small-blog-date {
    font-size: 13px;
    color: var(--text);
    opacity: 0.7;
}

.small-blog-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--secondary);
    margin: 0;
}

/* ---  Footer --- */
.site-footer {
    background-color: var(--brand-dark);
    color: rgba(255, 255, 255, 0.9);
}
.footer-cta {
    background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand-dark) 100%);
    padding: 60px 0;
    position: relative;
}

.footer-cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h3 {
    color: var(--white);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 16px;
}

.cta-form {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 480px;
    backdrop-filter: blur(5px);
}

.cta-form input {
    background: transparent;
    border: none;
    outline: none;
    padding: 0 25px;
    color: var(--white);
    width: 100%;
    font-size: 15px;
}

.cta-form input::placeholder { 
    color: rgba(255, 255, 255, 0.7); 
}

.cta-form .btn {
    padding: 12px 30px;
    background: var(--white);
    color: var(--brand-dark);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    transition: var(--transition);
}

.cta-form .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.site-footer {
    background-color: var(--brand-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.footer-main {
    padding: 40px 0 20px;
}

.footer-logo-img {
    max-height: 65px;
    margin-bottom: 25px;
    transition: opacity var(--transition);
}

.footer-logo-img:hover {
    opacity: 0.8;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-modern {
    display: flex;
    gap: 12px;
}

.footer-social-modern a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social-modern a:hover {
    background: var(--brand-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 5px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--brand-light);
    border-radius: 2px;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 12px;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links-modern a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links-modern a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links-modern a:hover i {
    transform: translateX(3px);
    color: var(--brand-light);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: var(--brand-light);
    color: var(--white);
}

.info-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.info-text p, .info-text a {
    color: var(--white);
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--brand-light);
}

.footer-experts-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.experts-bar-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}

.experts-label {
    white-space: nowrap;
    font-weight: 600;
    color: var(--white);
    padding-right: 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.experts-scroll {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 5px;
    width: 100%;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}
.experts-scroll::-webkit-scrollbar { 
    display: none; 
}

.expert-card-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0; 
}

.expert-card-mini:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--brand-light);
    transform: translateY(-2px);
}

.expert-card-mini img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--brand-light);
}

.expert-meta strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.expert-meta span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.expert-card-mini > i {
    margin-left: 5px;
    color: var(--brand-light);
    opacity: 0;
    transition: var(--transition);
}

.expert-card-mini:hover > i {
    opacity: 1;
    margin-left: 10px;
}

.footer-copyright {
    background: var(--secondary);
    padding: 25px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-links a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 25px;
    transition: var(--transition);
}

.copyright-links a:hover {
    color: var(--white);
}

@media (max-width: 991px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-form { 
        max-width: 100%; 
    }
}

@media (max-width: 768px) {
    .footer-main { padding: 50px 0; }
    .experts-label { 
        display: none; 
    }
    
    .footer-widget-title { 
        margin-top: 5px; 
    }
    
    .copyright-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright-links {
        display: flex;
        gap: 15px;
        margin-top: 10px;
    }
    
    .copyright-links a {
        margin-left: 0;
    }

   .experts-scroll {
    display: block;
    }

    .expert-card-mini {
    margin-bottom: 10px;
    }
}



.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; 
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}



/* --- Navbar Actions & Language Toggle --- */
.navbar-actions {
    margin-left: 15px;
}

.lang-toggle {
    background: rgba(11, 77, 89, 0.1);
    color: var(--brand-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.lang-toggle:hover {
    background: var(--brand-dark);
    color: var(--white);
    border-color: var(--brand-dark);
}

.lang-toggle i {
    font-size: 18px;
}

.lang-dropdown {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    min-width: 150px;
    padding: 10px 0;
    margin-top: 5px;
}

.lang-dropdown .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.lang-dropdown .dropdown-item:hover {
    background: rgba(113, 152, 159, 0.15);
    color: var(--brand-dark);
}

.goog-te-banner-frame, .skiptranslate {
    display: none !important;
} 
