/*==============================================================
  SABAH LAW SOCIETY - Professional Stylesheet
  A complete redesign replacing the Mediplus medical template
  with an authoritative law society look & feel.

  Color Palette:
    - Primary Navy:    var(--sls-brand-navy, #0e2347)
    - Primary Dark:    var(--sls-brand-deep, #0a1628)
    - Gold Accent:     var(--sls-gold, #c9a84c)
    - Gold Light:      #E8D5A3
    - White:           #FFFFFF
    - Light Gray:      #F5F7FA
    - Medium Gray:     #6B7A8F
    - Dark Text:       #1A2332
    - Border:          #E1E5EB

  Typography: Poppins (headings 600-700, body 400)
==============================================================*/

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

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

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--sls-brand-muted, #546580);
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
}

a {
    color: var(--sls-gold, #c9a84c);
    transition: all 0.3s ease;
    text-decoration: none;
}

a:hover {
    color: var(--sls-gold-dark, #a8882a);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    color: var(--sls-brand-text, #0e2347);
    line-height: 1.3;
    margin-top: 0;
}

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

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

p {
    margin-bottom: 15px;
}

:focus {
    outline: none;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}

.logo-loader {
    text-align: center;
}

.logo-loader img {
    width: 120px;
    height: auto;
    animation: breathGlow 2s ease-in-out infinite alternate;
}

.logo-spinner {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--sls-brand-border, #dde4ee);
    border-top-color: var(--sls-gold, #c9a84c);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes breathGlow {
    0% {
        transform: scale(0.95);
        filter: drop-shadow(0 0 5px rgba(197, 165, 90, 0.2));
    }
    100% {
        transform: scale(1.02);
        filter: drop-shadow(0 0 20px rgba(197, 165, 90, 0.4));
    }
}

.preloader.preloader-deactivate {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.bg-white {
    background-color: #fff;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--sls-brand-navy, #0e2347);
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 15px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--sls-gold, #c9a84c);
}

.section-title p {
    font-size: 16px;
    color: var(--sls-brand-muted, #546580);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== BUTTON STYLES ===== */
.btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    line-height: 1.4;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 32, 64, 0.2);
}

.btn-primary {
    background: var(--sls-gold, #c9a84c) !important;
    color: #fff !;
}

.btn-primary:hover {
    background: var(--sls-gold-dark, #a8882a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(197, 165, 90, 0.3);
}

.btn-outline {
    background: var(--sls-gold);
    border: 2px solid var(--sls-gold, #c9a84c);
    color: #735d28;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-outline:hover {
    background: #735d28;
    color: var(--sls-gold, #c9a84c);
}

/* --- Mobile View Responsiveness --- */
@media (max-width: 768px) {
    .sls-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-outline {
        display: block;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
        padding: 8px 15px;
        line-height: 1.4;
        border-radius: 4px;
    }

    .sls-hero-actions .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 15px;
        line-height: 1.4;
    }
}

.btn-navy {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
}

.btn-navy:hover {
    background: #003366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 32, 64, 0.3);
}

.btn-white {
    background: #fff;
    color: var(--sls-brand-navy, #0e2347);
}

.btn-white:hover {
    background: var(--sls-gold, #c9a84c);
    color: #fff;
}

.btn-custom {
    font-size: 14px;
}

.btn-contact {
    font-size: 14px;
    color: #fff !important;
    background-color: var(--sls-brand-navy, #0e2347);
    padding: 15px 30px;
    border-radius: 4px;
}

.btn-contact:hover {
    background-color: var(--sls-gold, #c9a84c);
    color: #fff !important;
}

.btn-transparent-white {
    font-size: 14px;
    background-color: transparent;
    color: #fff !important;
    padding: 10px 24px;
    border: 2px solid #fff;
    border-radius: 4px;
    font-weight: 600;
}

.btn-transparent-white:hover {
    background-color: #fff;
    color: var(--sls-brand-navy, #0e2347) !important;
}

.btn-back:hover {
    color: var(--sls-brand-navy, #0e2347);
}

/* ===== HERO / SLIDER ===== */
.slider {
    position: relative;
    overflow: hidden;
}

.slider .single-slider {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.slider .single-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 32, 64, 0.75) 0%,
        rgba(0, 21, 41, 0.55) 100%
    );
}

.slider .single-slider .text {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.slider .single-slider h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
}

.slider .single-slider h1 span {
    color: var(--sls-gold, #c9a84c);
}

.slider .single-slider p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.7;
}

.slider .single-slider .btn {
    color: #fff;
    background: var(--sls-gold, #c9a84c);
    font-weight: 600;
    display: inline-block;
    margin-right: 12px;
}

.slider .single-slider .btn:last-child {
    margin-right: 0;
}

.slider .single-slider .btn.btn-navy {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.slider .single-slider .btn.btn-navy:hover {
    background: #fff;
    color: var(--sls-brand-navy, #0e2347);
}

/* Owl Carousel Navigation */
.slider .owl-carousel .owl-nav {
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -22px;
}

.slider .owl-carousel .owl-nav div {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 22px;
    position: absolute;
    margin: 0;
    transition: all 0.4s ease;
    padding: 0;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.slider .owl-carousel .owl-nav div:hover {
    background: var(--sls-gold, #c9a84c);
    color: #fff;
}

.slider .owl-carousel .owl-controls .owl-nav .owl-prev {
    left: 20px;
}

.slider .owl-carousel .owl-controls .owl-nav .owl-next {
    right: 20px;
}

/* Slider Animations */
.owl-item.active .single-slider h1 {
    animation: fadeInUp 0.8s both 0.4s;
}

.owl-item.active .single-slider p {
    animation: fadeInUp 0.8s both 0.7s;
}

.owl-item.active .single-slider .button {
    animation: fadeInUp 0.8s both 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SCHEDULE / SERVICE CARDS ===== */
.schedule {
    background: transparent;
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.schedule .schedule-inner {
    position: relative;
    z-index: 9;
}

.schedule .single-schedule {
    position: relative;
    text-align: left;
    z-index: 3;
    border-radius: 6px;
    background: var(--sls-brand-navy, #0e2347);
    transition: all 0.3s ease-out;
    box-shadow: 0 4px 15px rgba(0, 32, 64, 0.15);
}

.schedule .single-schedule .inner {
    overflow: hidden;
    position: relative;
    padding: 35px 30px;
    z-index: 2;
}

.schedule .single-schedule .icon i {
    font-size: 48px;
    color: var(--sls-gold, #c9a84c);
    margin-bottom: 15px;
    display: inline-block;
}

.schedule .single-schedule span {
    display: block;
    color: rgba(232, 213, 163, 0.85);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule .single-schedule h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin: 10px 0;
    line-height: 1.4;
}

.schedule .single-schedule p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

.schedule .single-schedule a {
    color: var(--sls-gold, #c9a84c);
    margin-top: 20px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule .single-schedule a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background: var(--sls-gold, #c9a84c);
    transition: all 0.4s ease;
}

.schedule .single-schedule a:hover::before {
    width: 100%;
}

.schedule .single-schedule a i {
    margin-left: 8px;
    font-size: 12px;
}

.schedule .single-schedule:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 32, 64, 0.25);
}

/* Alternate card colors */
.schedule .single-schedule:nth-child(2) {
    background: var(--sls-brand-deep, #0a1628);
}

/* ===== FEATURES SECTION ===== */
.Feautes {
    padding-top: 80px;
}

.Feautes .single-features {
    text-align: center;
    position: relative;
    padding: 30px 20px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.Feautes .single-features:hover {
    box-shadow: 0 8px 25px rgba(0, 32, 64, 0.1);
    transform: translateY(-4px);
    border-color: var(--sls-gold, #c9a84c);
}

.Feautes .single-features .signle-icon i {
    font-size: 44px;
    color: var(--sls-gold, #c9a84c);
    height: 90px;
    width: 90px;
    line-height: 90px;
    text-align: center;
    border: 2px solid var(--sls-brand-border, #dde4ee);
    border-radius: 50%;
    transition: all 0.4s ease;
    display: inline-block;
}

.Feautes .single-features:hover .signle-icon i {
    background: var(--sls-gold, #c9a84c);
    color: #fff;
    border-color: var(--sls-gold, #c9a84c);
}

.Feautes .single-features h3 {
    padding-top: 20px;
    color: var(--sls-brand-text, #0e2347);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.Feautes .single-features p {
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    margin-bottom: 0;
}

/* ===== FUN FACTS / STATS ===== */
.fun-facts {
    background: linear-gradient(
        135deg,
        var(--sls-brand-navy, #0e2347) 0%,
        var(--sls-brand-deep, #0a1628) 100%
    );
    padding: 60px 0;
    position: relative;
}

.fun-facts .single-fun {
    text-align: center;
    padding: 20px 0;
}

.fun-facts .single-fun i {
    font-size: 42px;
    color: var(--sls-gold, #c9a84c);
    margin-bottom: 15px;
    display: inline-block;
}

.fun-facts .single-fun .content {
    display: inline-block;
}

.fun-facts .single-fun span {
    color: #fff;
    font-weight: 700;
    font-size: 36px;
    display: block;
    margin-bottom: 5px;
    line-height: 1.2;
}

.fun-facts .single-fun p {
    color: rgba(232, 213, 163, 0.85);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

/* ===== ABOUT SECTION ===== */
.about-area {
    position: relative;
    z-index: 1;
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    position: relative;
}

.about-image img {
    display: none;
}

.about-content {
    padding: 60px 0 60px 40px;
}

.about-content span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sls-gold, #c9a84c);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--sls-brand-text, #0e2347);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--sls-brand-muted, #546580);
    font-size: 15px;
    line-height: 1.7;
}

.about-content ul {
    margin-top: 20px;
}

.about-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
}

.about-content ul li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--sls-gold, #c9a84c);
    font-size: 16px;
}

.about-content .btn {
    margin-top: 25px;
}

/* ===== TEAM SECTION ===== */
.team {
    background: var(--sls-brand-light, #f5f7fa);
    position: relative;
}

.team .single-team {
    background: #fff;
    transition: all 0.3s ease;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 32, 64, 0.06);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sls-brand-border, #dde4ee);
}

.team .single-team:hover {
    box-shadow: 0 8px 25px rgba(0, 32, 64, 0.12);
    transform: translateY(-5px);
    border-color: var(--sls-gold, #c9a84c);
}

.team .t-head {
    position: relative;
    overflow: hidden;
}

.team .t-head img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team .t-bottom {
    text-align: center;
    padding: 20px;
}

.team .t-bottom h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sls-brand-text, #0e2347);
    margin-bottom: 5px;
}

.team .t-bottom h2 a {
    color: var(--sls-brand-text, #0e2347);
}

.team .t-bottom h2 a:hover {
    color: var(--sls-gold, #c9a84c);
}

.team .t-bottom p {
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    margin-bottom: 0;
}

/* ===== BLOG / NEWS SECTION ===== */
.blog {
    background: #fff;
    padding: 80px 0;
}

.blog .single-news {
    background: #fff;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 32, 64, 0.06);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    margin-bottom: 30px;
}

.blog .single-news:hover {
    box-shadow: 0 8px 25px rgba(0, 32, 64, 0.12);
    transform: translateY(-4px);
    border-color: var(--sls-gold, #c9a84c);
}

.blog .single-news .news-head {
    position: relative;
    overflow: hidden;
}

.blog .single-news img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.blog .single-news:hover img {
    transform: scale(1.05);
}

.blog .single-news .news-content {
    padding: 20px 25px;
    background: #fff;
}

.blog .single-news .news-body h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog .single-news .news-body h2 a {
    color: var(--sls-brand-text, #0e2347);
}

.blog .single-news .news-body h2 a:hover {
    color: var(--sls-gold, #c9a84c);
}

.blog .single-news .news-body .date {
    display: block;
    font-size: 13px;
    color: var(--sls-brand-muted, #546580);
    margin-bottom: 10px;
}

.blog .single-news .news-body .date i {
    margin-right: 5px;
    color: var(--sls-gold, #c9a84c);
}

.blog .single-news .news-content p {
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog .single-news .news-body .btn {
    margin-top: 15px;
    padding: 8px 20px;
    font-size: 12px;
}

/* ===== SLS TABLE ===== */
.sls-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
}

.sls-table thead th {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
    padding: 14px 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    font-size: 12px;
    text-align: left;
    white-space: nowrap;
}

.sls-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--sls-brand-border, #dde4ee);
    color: var(--sls-brand-muted, #546580);
    vertical-align: middle;
}

.sls-table tbody tr:hover {
    background: var(--sls-brand-light, #f5f7fa);
}

.sls-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.sls-table tbody tr:nth-child(even):hover {
    background: var(--sls-brand-light, #f5f7fa);
}

.sls-table .firm-link {
    color: var(--sls-brand-navy, #0e2347);
    text-decoration: none;
    font-weight: 500;
}

.sls-table .firm-link:hover {
    text-decoration: underline;
    color: var(--sls-gold, #c9a84c);
}

@media (max-width: 767px) {
    .sls-table thead {
        display: none;
    }
    .sls-table,
    .sls-table tbody,
    .sls-table tr,
    .sls-table td {
        display: block;
        width: 100%;
    }
    .sls-table tr {
        border: 1px solid var(--sls-brand-border, #dde4ee);
        padding: 10px;
        background: #fff;
        margin-bottom: 10px;
        border-radius: 4px;
    }
    .sls-table tbody td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .sls-table tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: 600;
        color: var(--sls-brand-text, #0e2347);
    }
    .sls-table tbody td:first-child {
        text-align: center;
        padding-left: 0;
        background: var(--sls-brand-light, #f5f7fa);
        border-radius: 4px;
        margin-bottom: 8px;
    }
    .sls-table tbody td:first-child::before {
        display: none;
    }
}

/* ===== CIRCULAR LAYOUT ===== */
.circular-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.circular-large-item {
    flex: 0 0 calc(50% - 10px);
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 8px;
    background: #fff;
    transition: all 0.3s ease;
}

.circular-large-item:hover {
    box-shadow: 0 4px 15px rgba(0, 32, 64, 0.1);
    border-color: var(--sls-gold, #c9a84c);
}

.circular-large-item .thumb {
    width: 100%;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.circular-large-item .thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.circular-large-item .content {
    padding: 24px;
}

.circular-large-item .title {
    font-size: 18px;
    font-weight: 700;
    color: var(--sls-brand-text, #0e2347);
    margin-bottom: 8px;
    line-height: 1.35;
    font-family: "Playfair Display", Georgia, serif;
}

.circular-large-item .meta {
    font-size: 13px;
    color: var(--sls-brand-muted, #546580);
}

.circular-large-item .meta i {
    margin-right: 5px;
    color: var(--sls-gold, #c9a84c);
}

.circular-small-columns {
    flex: 0 0 calc(50% - 10px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, min-content);
    align-content: start;
    gap: 15px;
}

.circular-small-item {
    display: block;
    border-bottom: 1px solid var(--sls-brand-border, #dde4ee);
    padding: 0 0 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.circular-small-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.circular-small-item:hover {
    border-bottom-color: var(--sls-gold, #c9a84c);
}

.circular-small-item .thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 8px;
}

.circular-small-item .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--sls-brand-text, #0e2347);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.circular-small-item:hover .title {
    color: var(--sls-gold, #c9a84c);
}

.circular-small-item .meta {
    font-size: 12px;
    color: var(--sls-brand-muted, #546580);
}

@media (max-width: 991px) {
    .circular-large-item,
    .circular-small-columns {
        flex: 0 0 100%;
    }
}

@media (max-width: 575px) {
    .circular-large-item .thumb img {
        height: 200px;
    }
    .circular-small-columns {
        grid-template-columns: 1fr;
    }
}

/* ===== TABS ===== */
.tabs-navigation-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.tabs-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.tabs-scroll-container::-webkit-scrollbar {
    display: none;
}

.tabs-scroll-container .nav.tab-tabs {
    display: inline-flex;
    flex-wrap: nowrap;
}

.tab-tabs .nav-item {
    margin-bottom: -2px;
}

.tab-link {
    display: block;
    padding: 12px 20px;
    color: var(--sls-brand-muted, #546580) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 2px solid transparent;
    background: transparent !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tab-link:hover,
.tab-link.active {
    color: var(--sls-brand-navy, #0e2347) !important;
    border-bottom-color: var(--sls-gold, #c9a84c) !important;
}

.subtab-link {
    display: block;
    padding: 10px 18px;
    color: var(--sls-brand-muted, #546580) !important;
    font-weight: 500;
    font-size: 13px;
    background: transparent;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.subtab-link:hover,
.subtab-link.active {
    color: #fff !important;
    background: var(--sls-brand-navy, #0e2347);
    border-color: var(--sls-brand-navy, #0e2347);
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 20px 0;
}

.pagination .page-link {
    padding: 8px 16px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    color: var(--sls-brand-muted, #546580);
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: all 0.3s ease;
    display: block;
}

.pagination .page-link:hover {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
    border-color: var(--sls-brand-navy, #0e2347);
}

.pagination .page-item.active .page-link {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
    border-color: var(--sls-brand-navy, #0e2347);
}

.pagination-flex {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.pagination-container {
    margin-top: 30px;
}

/* ===== GALLERY ===== */
.gallery-item-wrapper {
    padding: 5px;
}

.gallery-square {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: var(--sls-brand-navy, #0e2347);
    border-radius: 4px;
}

.gallery-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-square:hover img {
    transform: scale(1.08);
}

.gallery-item {
    display: block;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

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

/* Lightbox */
.custom-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: rgba(232, 213, 163, 0.85);
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
}

.custom-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--sls-brand-text, #0e2347);
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100000;
}

.custom-close-btn:hover {
    background: var(--sls-gold, #c9a84c);
    color: #fff;
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: var(--sls-gold, #c9a84c);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0, 32, 64, 0.8);
    padding: 6px 16px;
    border-radius: 20px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: var(--sls-brand-light, #f5f7fa);
    padding: 15px 0;
    border-bottom: 1px solid var(--sls-brand-border, #dde4ee);
}

.breadcrumbs ul li {
    display: inline-block;
    font-size: 13px;
    color: var(--sls-brand-muted, #546580);
}

.breadcrumbs ul li::after {
    content: "/";
    margin: 0 8px;
    color: var(--sls-gold, #c9a84c);
}

.breadcrumbs ul li:last-child::after {
    display: none;
}

.breadcrumbs ul li a {
    color: var(--sls-brand-navy, #0e2347);
    font-weight: 500;
}

.breadcrumbs ul li a:hover {
    color: var(--sls-gold, #c9a84c);
}

/* ===== FORMS ===== */
.form-control {
    height: 38px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 4px;
    padding: 10px 16px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: var(--sls-brand-muted, #546580);
    width: 100%;
    transition: all 0.3s ease;
    background: #fff;
}

.form-control:focus {
    border-color: var(--sls-gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--sls-brand-muted, #546580);
    opacity: 0.7;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7A8F' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

/* ===== LOGIN CARD ===== */
.login-card {
    background: #fff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 32, 64, 0.1);
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    border: 1px solid var(--sls-brand-border, #dde4ee);
}

.login-card h3 {
    color: var(--sls-brand-text, #0e2347);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.login-card .first-time-login {
    color: var(--sls-gold, #c9a84c);
    font-size: 14px;
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.login-form .form-group {
    margin-bottom: 22px;
    position: relative;
}

.login-form .form-control {
    height: 50px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 14px;
    width: 100%;
    transition: border-color 0.3s;
    background: var(--sls-brand-light, #f5f7fa);
}

.login-form .form-control:focus {
    border-color: var(--sls-gold, #c9a84c);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
}

.login-form .password-toggle {
    position: absolute;
    right: 14px;
    top: 14px;
    color: var(--sls-brand-muted, #546580);
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    padding: 2px;
    background: none;
    border: none;
}

.reset-password {
    display: block;
    text-align: right;
    color: var(--sls-gold, #c9a84c);
    font-size: 13px;
    margin-top: 8px;
}

.reset-password:hover {
    color: var(--sls-gold-dark, #a8882a);
}

.login-btn-container {
    margin-top: 25px;
}

.btn-login {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--sls-gold, #c9a84c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 165, 90, 0.3);
}

.read-user-guide {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: var(--sls-gold, #c9a84c);
    font-weight: 500;
    font-size: 14px;
}

.read-user-guide:hover {
    color: var(--sls-gold-dark, #a8882a);
}

.sls-login-btn {
    background-color: transparent;
    color: #fff;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s;
}

.sls-login-btn:hover {
    background-color: var(--sls-gold, #c9a84c);
    border-color: var(--sls-gold, #c9a84c);
    color: #fff !important;
}

.sls-login-btn i {
    font-size: 15px;
}

/* ===== JOIN MEMBER SECTION ===== */
.join-member-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
}

.join-member-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 32, 64, 0.85) 0%,
        rgba(0, 21, 41, 0.7) 100%
    );
    z-index: 1;
}

.join-member-section * {
    position: relative;
    z-index: 2;
}

.join-member-section .section-title h2,
.join-member-section .section-title p {
    color: #fff;
}

.join-member-section .section-title h2::after {
    background: var(--sls-gold, #c9a84c);
}

.join-member-section .section-title p b {
    color: var(--sls-gold, #c9a84c);
}

.join-member-section .section-title a.btn {
    display: inline-block;
    margin-top: 20px;
}

/* ===== CONTACT PAGE ===== */
.contact-us .inner {
    background: #fff;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 8px;
    overflow: hidden;
}

.contact-us .contact-us-form {
    padding: 40px;
}

.contact-us .contact-us-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--sls-brand-text, #0e2347);
    margin-bottom: 10px;
    padding-bottom: 18px;
    position: relative;
}

.contact-us .contact-us-form h2::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 50px;
    background: var(--sls-gold, #c9a84c);
}

.contact-us .contact-us-form p {
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    margin-top: 15px;
}

.contact-us .form {
    margin-top: 30px;
}

.contact-us .form .form-group {
    margin-bottom: 20px;
}

.contact-us .form .form-group input:not([type="checkbox"]):not([type="radio"]),
.contact-us .form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 4px;
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
}

.contact-us .form .form-group input:focus,
.contact-us .form .form-group textarea:focus {
    border-color: var(--sls-gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(197, 165, 90, 0.1);
    outline: none;
}

.contact-us .form .form-group textarea {
    height: 120px;
    resize: vertical;
}

.contact-us .form .form-group.login-btn {
    margin: 0;
    text-align: center;
}

.contact-us .form .form-group.login-btn button {
    width: auto;
    min-width: 200px;
    background: #002e5b;
    color: #fff;
    border-radius: 5px;
}

.contact-us .single-info {
    background: var(--sls-brand-navy, #0e2347);
    padding: 30px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-us .single-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 32, 64, 0.2);
}

.contact-us .single-info i {
    font-size: 36px;
    color: var(--sls-gold, #c9a84c);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-us .single-info .content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-us .single-info .content p {
    color: rgba(232, 213, 163, 0.85);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-us #myMap {
    height: 100%;
    min-height: 300px;
    width: 100%;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
}

.footer .footer-top {
    padding: 80px 0;
    background: var(--sls-brand-navy, #0e2347);
}

.footer .single-footer {
    margin-bottom: 30px;
}

.footer .single-footer h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
}

.footer .single-footer h2::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 3px;
    width: 40px;
    background: var(--sls-gold, #c9a84c);
}

.footer .single-footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.footer .single-footer .social {
    margin-top: 20px;
}

.footer .single-footer .social li {
    display: inline-block;
    margin-right: 8px;
}

.footer .single-footer .social li:last-child {
    margin-right: 0;
}

.footer .single-footer .social li a {
    height: 38px;
    width: 38px;
    line-height: 38px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: block;
    color: rgba(232, 213, 163, 0.85);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer .single-footer .social li a:hover {
    background: var(--sls-gold, #c9a84c);
    border-color: var(--sls-gold, #c9a84c);
    color: #fff;
}

.footer .single-footer.f-link li {
    display: block;
    margin-bottom: 10px;
}

.footer .single-footer.f-link li:last-child {
    margin: 0;
}

.footer .single-footer.f-link li a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer .single-footer.f-link li a::before {
    content: "\203A";
    position: absolute;
    left: 0;
    color: var(--sls-gold, #c9a84c);
    font-size: 18px;
    line-height: 1.4;
}

.footer .single-footer.f-link li a:hover {
    color: var(--sls-gold, #c9a84c);
    padding-left: 22px;
}

.footer .copyright {
    background: var(--sls-brand-deep, #0a1628);
    padding: 20px 0;
    text-align: center;
}

.footer .copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.footer .copyright p a {
    color: var(--sls-gold, #c9a84c);
    font-weight: 500;
}

.footer .copyright p a:hover {
    color: rgba(232, 213, 163, 0.85);
}

/* ===== BACK TO TOP ===== */
#scrollUp {
    bottom: 25px;
    right: 25px;
    padding: 0;
    background: var(--sls-gold, #c9a84c);
    color: #fff;
    font-size: 20px;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(197, 165, 90, 0.3);
}

#scrollUp:hover {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 32, 64, 0.3);
}

/* ===== SLS CARDS ===== */
.sls-card {
    background: #fff;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sls-card:hover {
    box-shadow: 0 4px 15px rgba(0, 32, 64, 0.08);
    border-color: var(--sls-gold, #c9a84c);
}

.sls-card-body {
    padding: 24px;
}

.sls-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--sls-brand-text, #0e2347);
    margin-bottom: 10px;
}

.sls-card-text {
    font-size: 14px;
    color: var(--sls-brand-muted, #546580);
    line-height: 1.6;
}

/* ===== SLS NOTICE / ALERT ===== */
.sls-notice {
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid transparent;
    line-height: 1.5;
}

.sls-notice-info {
    background: #f0f5ff;
    border-left-color: var(--sls-brand-navy, #0e2347);
    color: var(--sls-brand-text, #0e2347);
}

.sls-notice-warning {
    background: #fff9e6;
    border-left-color: var(--sls-gold, #c9a84c);
    color: #8b6914;
}

.sls-notice-success {
    background: #f0fff4;
    border-left-color: #48bb78;
    color: #22543d;
}

.sls-notice-error {
    background: #fff5f5;
    border-left-color: #f56565;
    color: #742a2a;
}

/* ===== SLS BADGE ===== */
.sls-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.sls-badge-gold {
    background: var(--sls-gold, #c9a84c);
    color: #fff;
}

.sls-badge-navy {
    background: var(--sls-brand-navy, #0e2347);
    color: #fff;
}

.sls-badge-outline {
    background: transparent;
    border: 1px solid var(--sls-gold, #c9a84c);
    color: var(--sls-gold, #c9a84c);
}

.sls-badge-light {
    background: rgba(232, 213, 163, 0.85);
    color: var(--sls-brand-text, #0e2347);
}

/* ===== SLS DIVIDER ===== */
.sls-divider {
    height: 1px;
    background: var(--sls-brand-border, #dde4ee);
    margin: 30px 0;
    border: none;
}

.sls-divider-gold {
    height: 2px;
    background: var(--sls-gold, #c9a84c);
    width: 60px;
    margin: 20px 0;
    border: none;
}

/* ===== BLOCKQUOTE ===== */
blockquote {
    background: var(--sls-brand-light, #f5f7fa);
    border-left: 4px solid var(--sls-gold, #c9a84c);
    padding: 20px 25px;
    margin: 20px 0;
    font-size: 16px;
    color: var(--sls-brand-muted, #546580);
    line-height: 1.7;
    border-radius: 0 4px 4px 0;
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sls-brand-navy, #0e2347);
    font-style: normal;
}

/* ===== LEGAL LIST ===== */
.sls-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.sls-list li {
    list-style-type: disc;
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.sls-list li::marker {
    color: var(--sls-gold, #c9a84c);
}

.sls-list-ordered {
    padding-left: 20px;
    margin-bottom: 15px;
}

.sls-list-ordered li {
    list-style-type: decimal;
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ===== PAGE HEADER / TITLE BAR ===== */
.page-header-banner {
    background: var(--sls-brand-navy, #0e2347);
    padding: 60px 0;
    margin-bottom: 50px;
}

.page-header-banner h1 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-header-banner p {
    color: rgba(232, 213, 163, 0.85);
    font-size: 16px;
    margin-bottom: 0;
}

/* ===== CALL TO ACTION ===== */
.call-action {
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
}

.call-action::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 32, 64, 0.85) 0%,
        rgba(0, 21, 41, 0.7) 100%
    );
}

.call-action .content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.call-action .content h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.call-action .content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0;
    font-size: 16px;
}

.call-action .content .btn {
    margin: 0 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--sls-brand-light, #f5f7fa);
    position: relative;
}

.testimonials .single-testimonial {
    text-align: left;
    background: #fff;
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid var(--sls-brand-border, #dde4ee);
    transition: all 0.3s ease;
    margin: 15px;
}

.testimonials .single-testimonial:hover {
    box-shadow: 0 8px 25px rgba(0, 32, 64, 0.08);
    transform: translateY(-4px);
    border-color: var(--sls-gold, #c9a84c);
}

.testimonials .single-testimonial p {
    color: var(--sls-brand-muted, #546580);
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

.testimonials .single-testimonial .name {
    color: var(--sls-brand-text, #0e2347);
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
}

.testimonials .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.testimonials .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.testimonials .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: var(--sls-gold, #c9a84c);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.testimonials .owl-dots .owl-dot.active span {
    opacity: 1;
    width: 30px;
    border-radius: 5px;
}

/* ===== CLIENTS / PARTNERS ===== */
.clients {
    padding: 60px 0;
    position: relative;
}

.clients .single-clients img {
    width: 100%;
    cursor: pointer;
    padding: 0 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.clients .single-clients img:hover {
    opacity: 1;
}

/* ===== SPEECH ITEM ===== */
.speech-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 20px;
}

.speech-thumb {
    position: relative;
    width: 100%;
    padding-top: 65%;
    background: var(--sls-brand-navy, #0e2347);
}

.speech-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.speech-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--sls-gold, #c9a84c);
    color: #fff;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 2px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speech-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 32, 64, 0.9));
    color: #fff;
    z-index: 2;
}

.speech-title {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* ===== UTILITIES ===== */
.text-primary {
    color: var(--sls-brand-navy, #0e2347) !important;
}

.text-secondary {
    color: var(--sls-gold, #c9a84c) !important;
}

.text-muted {
    color: var(--sls-brand-muted, #546580) !important;
}

.text-white {
    color: #fff !important;
}

.text-dark {
    color: var(--sls-brand-text, #0e2347) !important;
}

.text-gold {
    color: var(--sls-gold, #c9a84c) !important;
}

.text-gold-light {
    color: rgba(232, 213, 163, 0.85) !important;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.bg-primary {
    background: var(--sls-brand-navy, #0e2347) !important;
}

.bg-secondary {
    background: var(--sls-gold, #c9a84c) !important;
}

.bg-light {
    background: var(--sls-brand-light, #f5f7fa) !important;
}

.bg-white {
    background: #fff !important;
}

.bg-dark {
    background: var(--sls-brand-deep, #0a1628) !important;
}

.bg-gold-light {
    background: rgba(232, 213, 163, 0.85) !important;
}

.background-blue {
    background-color: #f4f7fb;
}

.background-dark-blue {
    background-color: #005b94;
}

.font-weight-bold {
    font-weight: 700;
}

.font-weight-semibold {
    font-weight: 600;
}

.font-weight-normal {
    font-weight: 400;
}

.content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button.content-center {
    text-align: center;
}

.button.content-center .btn {
    white-space: normal;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.text-back {
    font-size: 15px;
}

.color-primary {
    color: var(--sls-brand-navy, #0e2347);
}

.color-secondary {
    color: var(--sls-gold, #c9a84c);
}

.dark {
    color: var(--sls-brand-text, #0e2347);
}

.dark-gray {
    color: var(--sls-brand-muted, #546580);
}

.responsive-video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.news-summary {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.5em;
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 991px) {
    .section {
        padding: 60px 0;
    }

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

    .slider .single-slider {
        height: 450px;
    }

    .slider .single-slider h1 {
        font-size: 32px;
    }

    .schedule {
        margin-top: 0;
        padding: 30px 0;
    }

    .schedule .single-schedule {
        margin-bottom: 20px;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .slider .single-slider {
        height: 380px;
    }

    .slider .single-slider h1 {
        font-size: 26px;
    }

    .slider .single-slider p {
        font-size: 14px;
    }

    .slider .single-slider .text {
        margin-top: 0;
    }

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

    .section-title p {
        font-size: 14px;
    }

    .fun-facts .single-fun {
        margin-bottom: 20px;
    }

    .fun-facts .single-fun span {
        font-size: 28px;
    }

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

    .login-card h3 {
        font-size: 22px;
    }

    .contact-us .contact-us-form {
        padding: 25px;
    }

    .page-header-banner {
        padding: 40px 0;
    }

    .page-header-banner h1 {
        font-size: 26px;
    }

    .footer .footer-top {
        padding: 50px 0;
    }
}

@media (max-width: 575px) {
    .slider .single-slider {
        height: 320px;
    }

    .slider .single-slider h1 {
        font-size: 22px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===== DROPDOWN INLINE STYLE OVERRIDE ===== */
@media (max-width: 991px) {
    .header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 999;
        box-shadow: 0 6px 20px rgba(0, 32, 64, 0.12);
        padding: 15px;
    }

    .header .nav {
        float: none;
    }

    .header .nav li {
        float: none;
        margin: 0;
    }

    .header .nav li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--sls-brand-border, #dde4ee);
    }

    .header .nav li .dropdown {
        position: static;
        box-shadow: none;
        border-left: none;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        padding-left: 15px;
    }

    .header .nav li:hover .dropdown {
        display: block;
    }

    .header .nav li .dropdown li a {
        padding: 10px 0;
    }
}

/* =============================================================
   SABAH LAW SOCIETY - LOGO MATCHED REFRESH
   ============================================================= */
:root {
    --sls-deep: #123a74;
    --sls-blue: #0f5fa8;
    --sls-cyan: #22a8df;
    --sls-cyan-soft: #dff4fc;
    --sls-surface: #f4f9fd;
    --sls-border: #d8e7f3;
    --sls-text: #17324d;
    --sls-muted: #5c7390;
}

body {
    color: var(--sls-muted);
    background: #ffffff;
}

body,
p,
li {
    color: var(--sls-muted);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--sls-text);
}

.section-title h2,
.color-secondary,
.text-back,
.dark,
.dark-gray {
    color: var(--sls-text) !important;
}

.section-title h2::after,
.sls-divider-gold,
.title-section::after {
    background: linear-gradient(
        90deg,
        var(--sls-blue) 0%,
        var(--sls-cyan) 100%
    );
}

.btn-primary,
.btn-login,
.sls-login-btn,
.btn-calendar-today,
.btn-calendar-nav:hover,
.btn-contact,
.btn-custom {
    background: linear-gradient(
        135deg,
        var(--sls-deep) 0%,
        var(--sls-blue) 100%
    );
    color: #fff;
}

.btn-primary:hover,
.btn-login:hover,
.btn-contact:hover,
.btn-custom:hover {
    background: linear-gradient(
        135deg,
        var(--sls-blue) 0%,
        var(--sls-cyan) 100%
    );
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 95, 168, 0.2);
}

/* .btn-outline {
    border: 2px solid var(--sls-blue);
    color: var(--sls-blue);
    background: transparent;
} */

.btn-transparent-white {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff !important;
}

.btn-transparent-white:hover {
    background: #fff;
    color: var(--sls-blue) !important;
}

.btn-send-application {
    font-size: 14px;
    color: #fff;
    background-color: #002e5b;
    padding: 15px;
    border-radius: 5px;
}

.btn-send-application:hover {
    background-color: var(--sls-gold-dark) !important;
}

a,
.color-primary,
.text-blue,
.press-link,
.read-user-guide,
.sls-table .firm-link,
.news-single .news-title a:hover,
.blog .single-news .news-body h2 a:hover {
    color: var(--sls-blue);
}

a:hover,
.press-link:hover,
.sls-table .firm-link:hover {
    color: var(--sls-cyan);
}

.fun-facts,
.call-action,
.join-member-section::before {
    background: linear-gradient(
        135deg,
        var(--sls-deep) 0%,
        var(--sls-blue) 100%
    ) !important;
}

.fun-facts .single-fun i,
.schedule .single-schedule .icon i,
.single-vision-box .icon,
.about-content ul li i,
.why-choose .choose-left .list li i,
.sls-badge,
.event-item,
.event-more,
.sls-table thead th,
.calendar-table th,
.btn-calendar-nav,
.day-number,
.profile-circle,
.exec-avatar.navy,
.call-action .content .btn,
.tab-link.active,
.subtab-link.active,
.tab-scroll-btn:hover,
.pagination .page-item.active .page-link {
    background: linear-gradient(
        135deg,
        var(--sls-deep) 0%,
        var(--sls-blue) 100%
    );
    color: #fff;
}

.tab-link,
.subtab-link {
    color: var(--sls-text);
}

.tab-link:hover,
.subtab-link:hover,
.tab-link.active,
.subtab-link.active {
    color: #fff;
}

.tab-scroll-btn {
    border-color: var(--sls-border);
    color: var(--sls-blue);
    background: #fff;
}

.cicular-large-item,
.circular-large-item,
.circular-small-item,
.single-news,
.speech-item,
.sls-list-panel,
.sls-intro-panel,
.sls-identity-panel,
.sls-quick-link-card,
.sls-surface-panel {
    border-color: var(--sls-border);
}

/* ===== HOME HERO ===== */
.sls-home-hero .hero-slider,
.sls-home-hero .single-slider {
    position: relative;
}

.sls-hero-slide {
    min-height: 640px;
}

.sls-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 58, 116, 0.88) 0%,
        rgba(15, 95, 168, 0.66) 52%,
        rgba(34, 168, 223, 0.35) 100%
    );
}

.sls-home-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 640px;
}

.sls-hero-content {
    max-width: 760px;
    color: #fff;
    padding: 70px 0 90px;
}

.sls-eyebrow,
.sls-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.sls-home-intro .sls-kicker,
.sls-section-head .sls-kicker,
.sls-identity-brand .sls-kicker {
    background: var(--sls-cyan-soft);
    color: var(--sls-blue);
}

.sls-hero-content h1 {
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 100%;
}

.sls-hero-content p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    max-width: 58ch;
    margin-bottom: 26px;
}

.sls-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.sls-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.sls-hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}

.sls-hero-highlights i {
    color: #86dcf7;
}

/* ===== INTRO + QUICK LINKS ===== */
.sls-home-intro {
    padding-top: 56px;
    padding-bottom: 36px;
    background: linear-gradient(180deg, #ffffff 0%, var(--sls-surface) 100%);
}

.sls-intro-panel,
.sls-identity-panel,
.sls-surface-panel,
.sls-list-panel,
.sls-quick-link-card {
    background: #fff;
    border: 1px solid var(--sls-border);
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(18, 58, 116, 0.08);
}

.sls-intro-panel,
.sls-identity-panel,
.sls-list-panel {
    padding: 34px;
}

.sls-intro-header h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sls-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.sls-identity-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sls-identity-brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.sls-identity-brand h3 {
    margin: 6px 0 0;
    font-size: 22px;
    line-height: 1.3;
}

.sls-identity-list li {
    padding: 16px 0;
    border-top: 1px solid var(--sls-border);
}

.sls-identity-list li:first-child {
    border-top: none;
    padding-top: 0;
}

.sls-identity-list strong {
    display: block;
    margin-bottom: 6px;
    color: var(--sls-text);
    font-size: 15px;
}

.sls-quick-links-row {
    margin-top: 28px;
}

.sls-quick-link-card {
    display: block;
    height: 100%;
    padding: 28px 24px;
    text-decoration: none;
    transition: all 0.28s ease;
}

.sls-quick-link-card:hover {
    transform: translateY(-6px);
    border-color: #95d8f1;
    box-shadow: 0 18px 34px rgba(15, 95, 168, 0.14);
}

.sls-quick-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: var(--sls-cyan-soft);
    color: var(--sls-blue);
    font-size: 22px;
}

.sls-quick-link-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--sls-text);
}

.sls-quick-link-card p {
    margin: 0;
    color: var(--sls-muted);
}

.sls-quick-link-card:hover h3 {
    color: var(--sls-blue);
}

/* ===== SECTION HEADS ===== */
.sls-content-section {
    padding-top: 36px;
    padding-bottom: 44px;
}

.sls-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 26px;
}

.sls-section-head h2 {
    margin-bottom: 10px;
    font-size: 34px;
}

.sls-section-head p {
    max-width: 700px;
    margin: 0;
}

.sls-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.sls-text-link i {
    font-size: 11px;
}

.sls-tab-header {
    border-bottom: 1px solid var(--sls-border);
    margin-bottom: 24px !important;
}

.sls-surface-panel {
    padding: 28px;
}

.tabs-scroll-container .tab-tabs {
    gap: 10px;
}

.tab-link,
.subtab-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: transparent;
}

.tab-link:not(.active),
.subtab-link:not(.active) {
    background: var(--sls-surface);
    color: var(--sls-text);
}

.tab-link:not(.active):hover,
.subtab-link:not(.active):hover {
    background: var(--sls-cyan-soft);
    color: var(--sls-blue);
}

/* ===== CIRCULARS / DOWNLOADS / NEWS ===== */
.circular-large-item,
.circular-small-item,
.speech-item,
.blog .single-news,
.sls-list-news-item {
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(18, 58, 116, 0.08);
}

.circular-large-item,
.circular-small-item {
    background: #fff;
}

.circular-large-item .content,
.circular-small-item,
.blog .single-news .news-content,
.sls-list-news-item .news-content {
    background: #fff;
}

.circular-large-item .title a,
.circular-small-item .title a,
.speech-badge,
.speech-title,
.blog .single-news h4 a,
.sls-list-news-item h4 a {
    color: var(--sls-text);
}

.circular-large-item .meta,
.circular-small-item .meta,
.blog .single-news .news-body .date {
    color: var(--sls-blue);
    font-weight: 600;
}

.speech-item {
    border: 1px solid var(--sls-border);
}

.speech-badge {
    background: rgba(255, 255, 255, 0.94);
    color: var(--sls-text);
}

.speech-overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 95, 168, 0) 0%,
        rgba(18, 58, 116, 0.92) 100%
    );
}

.speech-title {
    color: #fff;
}

.sls-list-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.sls-list-panel-head h3 {
    margin: 0;
    font-size: 24px;
}

.sls-list-news-item {
    margin-bottom: 18px !important;
}

.sls-list-news-item .news-content {
    padding: 22px 24px;
}

.sls-event-item {
    border-left: 4px solid var(--sls-navy);
}

.sls-download-item {
    border-left: 4px solid var(--sls-blue) !important;
}

/* ===== GALLERY ===== */
.sls-gallery-section {
    padding-bottom: 64px;
}

.sls-gallery-section .gallery-square {
    border-radius: 0;
}

.sls-gallery-section .gallery-item-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sls-gallery-section .gallery-square img {
    transition: transform 0.4s ease;
}

.sls-gallery-section .gallery-link:hover img {
    transform: scale(1.06);
}

@media (max-width: 991px) {
    .sls-hero-slide,
    .sls-home-hero .container {
        min-height: 560px !important;
    }

    .sls-hero-content {
        padding-top: 100px;
    }

    .sls-hero-content h1 {
        font-size: 40px;
        max-width: 100%;
    }

    .sls-section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .sls-home-intro {
        padding-top: 40px;
    }

    .sls-hero-slide,
    .sls-home-hero .container {
        min-height: 500px !important;
    }

    .sls-hero-content {
        padding: 80px 0 54px;
    }

    .sls-hero-content h1 {
        font-size: 30px;
        max-width: 100%;
    }

    .sls-hero-content p {
        font-size: 15px;
    }

    .sls-intro-panel,
    .sls-identity-panel,
    .sls-list-panel,
    .sls-surface-panel {
        padding: 22px;
        border-radius: 18px;
    }

    .sls-intro-header h2,
    .sls-section-head h2 {
        font-size: 28px;
    }

    .sls-hero-actions,
    .sls-intro-actions {
        gap: 10px;
    }

    .sls-hero-actions .btn,
    .sls-intro-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* =============================================================
   SABAH LAW SOCIETY — PROFESSIONAL DESIGN OVERRIDES
   Colour and typography ONLY — no layout dimensions changed.
   ============================================================= */

/* ── 0. Updated colour palette ── */
:root {
    --sls-deep: #0a1628;
    --sls-navy: #0e2347;
    --sls-blue: #1a4f8c;
    --sls-cyan: #22a8df;
    --sls-gold: #c9a84c;
    --sls-gold-dark: #a8882a;
    --sls-gold-light: #fbf3dc;
    --sls-surface: var(--sls-brand-light, #f5f7fa);
    --sls-border: #dde4ee;
    --sls-text: #0e2347;
    --sls-muted: #546580;
}

/* ── 1. Typography refinements (no dimensions) ── */
body {
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

h5,
h6,
p,
li {
    font-family: "Inter", "Poppins", sans-serif;
}

p,
li {
    line-height: 1.75;
}

a {
    color: var(--sls-navy);
    transition: color 0.2s;
}
a:hover {
    color: var(--sls-gold-dark);
}

/* ── 2. Button & accent colours (no dimensions) ── */

.btn-primary,
.btn-login,
.btn-contact,
.btn-custom {
    background: var(--sls-navy) !important;
    box-shadow: 0 2px 10px rgba(14, 35, 71, 0.18);
}

.btn-primary:hover,
.btn-login:hover,
.btn-contact:hover,
.btn-custom:hover {
    background: var(--sls-gold) !important;
    color: var(--sls-deep) !important;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3) !important;
}

.btn-navy {
    background: var(--sls-deep) !important;
}
.btn-navy:hover {
    background: var(--sls-gold) !important;
    color: var(--sls-deep) !important;
}

/* Accent backgrounds (navy) */
.fun-facts,
.call-action,
.join-member-section::before {
    background: linear-gradient(
        135deg,
        var(--sls-deep) 0%,
        var(--sls-navy) 100%
    ) !important;
}

.sls-badge,
.event-item,
.event-more,
.sls-table thead th,
.calendar-table th,
.btn-calendar-nav,
.day-number,
.profile-circle,
.exec-avatar.navy,
.call-action .content .btn,
.pagination .page-item.active .page-link {
    background: var(--sls-navy) !important;
}

/* Executive Card */
.exec-card {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    padding: 28px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.exec-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.exec-avatar.sm {
    width: 70px;
    height: 70px;
    font-size: 35px;
    margin-bottom: 12px;
}

.exec-avatar.navy {
    background: #e8edf5;
}

.exec-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    color: #666;
}

.exec-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 6px;
    line-height: 1.4;
}

.exec-name.sm {
    font-size: 16px;
    margin: 0 0 4px;
}

.exec-divider {
    width: 32px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 12px auto 0;
}

.tier-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: center;
    margin: 36px 0 14px;
}
/* End of Executive Card */

/* Kicker / Eyebrow — colour swap, keep original border-radius:999px */
.sls-kicker:not(.sls-hero-content .sls-kicker),
.sls-eyebrow:not(.sls-hero-content .sls-eyebrow) {
    background: var(--sls-gold-light) !important;
    color: var(--sls-gold-dark) !important;
}

.sls-hero-content .sls-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* Section heads — font only */
.sls-section-head h2 {
    font-family: "Playfair Display", Georgia, serif;
}

.sls-text-link {
    color: var(--sls-navy) !important;
    font-weight: 700;
}

/* Tabs — pill shape stays (border-radius:999px), colour swap */
.tab-link.active,
.subtab-link.active {
    background: var(--sls-navy) !important;
    color: #fff !important;
}

.tab-link:not(.active):hover,
.subtab-link:not(.active):hover {
    background: var(--sls-gold-light) !important;
    color: var(--sls-gold-dark) !important;
}

/* Cards — colour/shadow only, keep original border-radius (24px) */
.sls-intro-panel,
.sls-identity-panel,
.sls-list-panel,
.sls-surface-panel {
    box-shadow: 0 16px 32px rgba(10, 22, 40, 0.08);
}

.sls-quick-link-card:hover {
    border-color: var(--sls-gold) !important;
    box-shadow: 0 18px 34px rgba(201, 168, 76, 0.14) !important;
}

.sls-quick-link-card:hover h3 {
    color: var(--sls-gold-dark) !important;
}

.sls-quick-link-icon {
    background: var(--sls-gold-light) !important;
    color: var(--sls-gold-dark) !important;
}

.sls-quick-link-card:hover .sls-quick-link-icon {
    background: var(--sls-gold) !important;
    color: var(--sls-deep) !important;
}

.sls-download-item {
    border-left-color: #c5a55a !important;
}

/* News date colour */
.sls-list-news-item .date {
    color: var(--sls-navy) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.sls-list-news-item .date i {
    color: var(--sls-navy) !important;
}

/* Hero overlay — deeper navy */
.sls-hero-overlay {
    background: linear-gradient(
        105deg,
        rgba(10, 22, 40, 0.9) 0%,
        rgba(14, 35, 71, 0.72) 50%,
        rgba(26, 79, 140, 0.38) 100%
    ) !important;
}

/* Gold bar below hero h1 — absolutely positioned (no layout shift) */
.sls-hero-content h1 {
    position: relative;
}

.sls-hero-content h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 64px;
    height: 3px;
    background: var(--sls-gold);
    border-radius: 2px;
}

.sls-hero-highlights i {
    color: var(--sls-gold) !important;
}

/* ── 3. Section backgrounds (colour only) ── */
.sls-circulars-section {
    background: var(--sls-surface) !important;
}

.sls-news-events-section {
    background: var(--sls-surface) !important;
}

/* ── 4. Page header banners ── */
.page-header-banner {
    background: linear-gradient(
        135deg,
        var(--sls-deep) 0%,
        var(--sls-navy) 100%
    ) !important;
}

.page-header-banner::after {
    background: linear-gradient(
        90deg,
        var(--sls-gold) 0%,
        #e8cc80 50%,
        var(--sls-gold) 100%
    ) !important;
}

.page-header-banner h1 {
    font-family: "Playfair Display", Georgia, serif;
}

/* ── 5. Table / Pagination colours ── */
.sls-table tbody tr:hover {
    background: var(--sls-gold-light) !important;
}

.sls-table .firm-link:hover {
    color: var(--sls-gold-dark) !important;
}

.pagination .page-link {
    color: var(--sls-navy);
}

.pagination .page-link:hover {
    background: var(--sls-gold-light) !important;
    color: var(--sls-gold-dark) !important;
    border-color: var(--sls-gold) !important;
}

.pagination .page-item.active .page-link {
    border-color: var(--sls-navy);
}

/* ── 6. Scroll-up button ── */
#scrollUp {
    background: var(--sls-gold);
    color: var(--sls-deep);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

#scrollUp:hover {
    background: var(--sls-gold-dark);
    color: #fff;
}

/* ── 7. Speech overlay colours ── */
.speech-badge {
    background: var(--sls-navy) !important;
    color: #fff !important;
}

.speech-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 22, 40, 0.88) 0%,
        rgba(10, 22, 40, 0.3) 100%
    ) !important;
}

.speech-title {
    font-family: "Playfair Display", Georgia, serif;
    color: #fff;
}

.sls-speech-material-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sls-speech-material-card {
    width: 100%; /* keeps card inside its grid cell */
    margin-bottom: 0 !important;
    border-left: 5px solid var(--sls-navy) !important;
    background: #fff;
    border-radius: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sls-speech-material-card .news-content {
    padding: 26px 30px;
}

.sls-speech-material-card .news-body {
    flex: 1;
}

.sls-speech-material-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    color: var(--sls-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sls-speech-material-meta .date {
    color: var(--sls-navy) !important;
}

.sls-speech-material-meta .date i {
    color: var(--sls-navy) !important;
}

.sls-speech-material-title {
    margin-bottom: 12px;
    max-width: 44rem;
    font-size: 18px;
    line-height: 1.3;
}

.sls-speech-material-title a {
    color: var(--sls-deep) !important;
}

.sls-speech-material-title a:hover {
    color: var(--sls-gold-dark) !important;
}

.sls-speech-material-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines you want */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    max-width: 56rem;
    color: var(--sls-muted);
    line-height: 1.75;
}

.sls-news-desc {
    font-size: 12px;
}

@media (max-width: 992px) {
    .sls-speech-material-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .sls-speech-material-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .sls-speech-material-excerpt {
        -webkit-line-clamp: 2;
    }
}

/* ── 8. Contact card border ── */
.contact-us .single-info {
    border-left-color: var(--sls-gold) !important;
}

.contact-us .single-info i {
    color: var(--sls-gold) !important;
}

/* ── 9. Section title underline ── */
.section-title h2::after,
.sls-divider-gold,
.title-section::after {
    background: var(--sls-gold) !important;
}

/* ── 10. Responsive font-size adjustments only ── */
@media (max-width: 991px) {
    .sls-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .sls-hero-content h1 {
        font-size: 30px;
    }
    .page-header-banner h1 {
        font-size: 28px;
    }
}

/*=============================
	Start Calendar Events CSS
=============================== */
.calendar-wrapper {
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(32, 33, 36, 0.08);
    padding: 20px;
}

.calendar-month-title h3 {
    font-size: 28px !important;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #202124;
}

.btn-calendar-today {
    border-radius: 20px !important;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #d5d5d5 !important;
    text-transform: capitalize;
    line-height: 1.5;
}

.btn-calendar-today:hover {
    color: #ffffff !important;
}

.btn-calendar-nav {
    color: #d5d5d5 !important;
    border: 1px solid #dadce0;
    padding: 6px 14px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-calendar-nav:first-child {
    border-radius: 8px 0 0 8px !important;
}

.btn-calendar-nav:last-child {
    border-radius: 0 8px 8px 0 !important;
}

.btn-calendar-nav:hover {
    background-color: #eef4ff;
    color: #ffffff !important;
    border-color: #c6dafc;
}

.calendar-table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #dadce0 !important;
    border-radius: 12px;
    overflow: hidden;
}

.calendar-table th {
    text-align: left;
    background-color: #f8f9fa;
    color: #fff;
    font-weight: 600;
    padding: 10px 12px;
    border: 1px solid #eceff1 !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.calendar-table td {
    height: 148px;
    vertical-align: top;
    padding: 8px;
    background-color: #f8f9fa;
    border: 1px solid #eceff1 !important;
    position: relative;
}

.calendar-table td.current-month {
    background-color: #fff !important;
}

.calendar-table td.other-month {
    background-color: #f8f9fa !important;
}

.calendar-table td.today {
    background-color: #e8f0fe !important;
}

.calendar-table td.has-events {
    box-shadow: inset 0 0 0 1px #e3edf9;
}

.day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 28px;
    border-radius: 14px;
    color: #bfbfbf;
    font-size: 12px;
    font-weight: 600;
    margin-left: auto;
    margin-bottom: 6px;
}

.current-month .day-number {
    color: #ffffff;
}

.today .day-number {
    background: #003366;
    color: #fff;
}

.events-container {
    margin-top: 4px;
    max-height: 104px;
    overflow-y: auto;
    padding-right: 2px;
}

.event-item {
    background: #e8f0fe;
    color: #174ea6;
    border: 1px solid #d2e3fc;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

.calendar-wrapper .event-item {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.event-item.all-day {
    background: #003366;
    border-color: #003366;
    color: #fff;
}

.event-item.is-hidden {
    display: none;
}

.event-more {
    background: transparent;
    border: none;
    color: #003366;
    font-size: 11px;
    font-weight: 600;
    padding: 0;
    margin-top: 2px;
    cursor: pointer;
}

.event-more:hover {
    text-decoration: underline;
}

.events-container::-webkit-scrollbar {
    width: 4px;
}

.events-container::-webkit-scrollbar-thumb {
    background: #cdd4dd;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .calendar-wrapper {
        padding: 14px;
    }

    .calendar-table th {
        padding: 8px 6px;
        font-size: 11px;
        text-align: center;
    }

    .calendar-table td {
        height: 110px;
        padding: 6px;
    }

    .day-number {
        min-width: 24px;
        min-height: 24px;
        font-size: 11px;
    }

    .event-item {
        font-size: 10px;
        padding: 2px 5px;
    }
}

.event-details .single-main .news-text {
    margin-top: 20px;
}

.event-meta-info {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.event-meta-info i {
    width: 20px;
    color: #1a76d1;
}

/*=============================
	End Calendar Events CSS
=============================== */

/*=============================
	Start Membership Form CSS
=============================== */
.membership-form .form-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c2d3f;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    text-transform: uppercase;
}

.membership-form .gender-row {
    display: flex;
    text-wrap: nowrap;
    gap: 20px;
    margin-bottom: 20px;
}

.membership-form .radio-item {
    display: flex;
    align-items: center;
}

.membership-form .radio-item input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.membership-form .radio-item label {
    margin-bottom: 0;
    font-weight: 500;
    color: #2c2d3f;
    cursor: pointer;
    display: inline-block;
}

.membership-form .checkbox-wrap {
    display: flex;
    text-wrap: nowrap;
    position: left;
    align-items: flex-start;
    background-color: #f4f7fb;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.membership-form .checkbox-wrap input[type="checkbox"] {
    width: auto;
    height: auto;
    margin-right: 12px;
    margin-top: 5px;
    cursor: pointer;
}

.membership-form .checkbox-wrap label {
    margin-bottom: 0;
    font-weight: 400;
    color: #2c2d3f;
    line-height: 1.5;
    cursor: pointer;
}

.btn-send-application {
    font-size: 14px;
    color: #fff !important;
    background-color: #002e5b !important;
    padding: 15px;
    border-radius: 5px;
}

.membership-form .btn-send-application:hover {
    background-color: #0088bc;
}

@media (max-width: 767px) {
    .membership-form .gender-row {
        gap: 15px;
    }
}
/*=============================
	End Membership Form CSS
=============================== */

.post-content table {
    width: 100%;
    border-collapse: collapse;
}

.post-content table,
.post-content th,
.post-content td {
    border: 1px solid #e2e8f0;
}

.post-content td,
.post-content th {
    padding: 8px;
}
