:root {
    --navy: #001f3f;
    --navy-dark: #031224;
    --navy-soft: #062b52;
    --gold: #d4af37;
    --gold-light: #f6df8b;
    --white: #ffffff;
    --cream: #f8f4ea;
    --text: #1d2530;
    --muted: #6b7280;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* NAVBAR */
.law-nav {
    min-height: 82px;
    background: rgba(0, 25, 55, 0.93);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    z-index: 999;
    padding: 0;
}

.navbar-brand {
    position: relative;
    width: 220px;
    height: 82px;
    display: flex;
    align-items: flex-start;
}

.navbar-brand .logo,
.logo {
    position: absolute;
    top: -24px;
    left: 0;
    width: 205px;
    height: auto;
    max-height: none;
    z-index: 1005;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.55));
}

html[dir="rtl"] .navbar-brand .logo,
html[dir="rtl"] .logo {
    left: auto;
    right: 0;
}

.law-nav .nav-link {
    color: #fff;
    font-weight: 500;
    padding: 30px 18px !important;
    position: relative;
    transition: 0.3s;
}

.law-nav .nav-link:hover,
.law-nav .nav-link.active {
    color: var(--gold-light);
}

.law-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 15px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: 0.3s;
}

.law-nav .nav-link:hover::after,
.law-nav .nav-link.active::after {
    transform: scaleX(1);
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    border: 1px solid var(--gold);
    padding: 10px 22px;
    margin: 0 12px;
    transition: 0.3s;
}

.portal-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

.lang-switch {
    color: var(--gold-light);
    font-weight: 600;
    margin-inline-start: 10px;
}

.navbar-toggler {
    color: #fff;
    border: 1px solid rgba(212,175,55,0.45);
}

/* HERO / SLIDER */
.hero {
    height: 100vh;
    min-height: 680px;
    position: relative;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    height: 100%;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 20, 42, 0.86), rgba(0, 20, 42, 0.45), rgba(0, 0, 0, 0.2)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.15));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 130px;
}

.hero-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    color: #fff;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.05;
    max-width: 760px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 span {
    display: block;
    color: var(--gold);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
    font-size: 19px;
    line-height: 1.7;
    margin: 20px 0 28px;
}

.gold-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-weight: 800;
    padding: 13px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
    box-shadow: 0 12px 28px rgba(212,175,55,0.25);
}

.gold-btn:hover {
    transform: translateY(-3px);
    color: var(--navy);
    box-shadow: 0 18px 40px rgba(212,175,55,0.35);
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff !important;
    width: 46px !important;
    height: 46px !important;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 50%;
    background: rgba(0,0,0,0.18);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.8 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
}

/* ABOUT + CHAIRMAN */
.about-band {
    background: #fff;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.12);
}

.about-img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
}

.advanced-panel,
.about-text {
    height: 100%;
    padding: 44px 46px;
    border-right: 1px solid rgba(212,175,55,0.28);
    position: relative;
}

.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.about-text h2,
.chairman-content h2,
.section-title {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy);
    font-size: 33px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-text p,
.chairman-content p {
    color: #293241;
    line-height: 1.75;
    font-size: 15.5px;
}

.read-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-weight: 800;
    margin-top: 8px;
    padding: 9px 15px;
    background: rgba(0,31,63,0.06);
    transition: 0.3s;
}

.read-link:hover {
    background: var(--navy);
    color: var(--gold-light);
}

.chairman-panel {
    height: 100%;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 28px;
    padding: 44px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,244,234,0.96)),
        radial-gradient(circle at top right, rgba(212,175,55,0.25), transparent 40%);
    position: relative;
    overflow: hidden;
}

.chairman-panel::after {
    content: "§";
    position: absolute;
    right: 26px;
    bottom: -28px;
    font-family: Georgia, serif;
    font-size: 150px;
    color: rgba(212,175,55,0.10);
}

html[dir="rtl"] .chairman-panel::after {
    right: auto;
    left: 26px;
}

.chairman-photo-wrap {
    position: relative;
    z-index: 2;
}

.chairman-photo {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border: 3px solid rgba(212,175,55,0.55);
    box-shadow: 0 24px 45px rgba(0,0,0,0.18);
}

.chairman-content {
    position: relative;
    z-index: 2;
}

.chairman-signature {
    margin: 12px 0;
    border-left: 4px solid var(--gold);
    padding-left: 14px;
}

html[dir="rtl"] .chairman-signature {
    border-left: 0;
    border-right: 4px solid var(--gold);
    padding-left: 0;
    padding-right: 14px;
}

.chairman-signature strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
}

.chairman-signature small {
    color: var(--muted);
}

/* =========================================================
   COUNTER SECTION
========================================================= */

.counter-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at top center,
        rgba(212,175,55,0.22),
        transparent 38%),
        linear-gradient(135deg,
        #001f3f 0%,
        #031224 100%);
    position: relative;
    overflow: hidden;
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counter-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
}

.counter-section .eyebrow {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.counter-section .title-line {
    margin: 0 auto 45px;
}

.counter-section .row {
    align-items: stretch;
}

.counter-section .col-lg-4,
.counter-section .col-md-6,
.counter-section .col-md-12 {
    display: flex;
}

.counter-card {
    width: 100%;
    min-height: 310px;

    background:
        linear-gradient(
        180deg,
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.03));

    border: 1px solid rgba(212,175,55,0.35);

    border-radius: 24px;

    padding: 42px 30px;

    text-align: center;

    box-shadow:
        0 24px 55px rgba(0,0,0,0.30);

    transition: all 0.35s ease;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.counter-card:hover {
    transform: translateY(-8px);

    border-color: #d4af37;

    box-shadow:
        0 34px 70px rgba(0,0,0,0.42);
}

.counter-icon {
    width: 78px;
    height: 78px;

    border-radius: 50%;

    background:
        linear-gradient(
        135deg,
        #d4af37,
        #f6df8b);

    color: #001f3f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;

    margin-bottom: 22px;

    box-shadow:
        0 12px 28px rgba(212,175,55,0.28);
}

.counter-card h3 {
    color: #ffffff;

    font-family: Georgia, serif;

    font-size: 50px;

    line-height: 1;

    margin: 0 0 12px;

    direction: ltr;
}

.counter-card .label {
    color: #f6df8b;

    font-size: 15px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.6px;

    margin-bottom: 14px;
}

.counter-card p {
    color: rgba(255,255,255,0.78);

    font-size: 15px;

    line-height: 1.8;

    margin: 0;

    max-width: 280px;
}

/* spacing fix */
.counter-section .g-4 {
    --bs-gutter-x: 1.7rem;
    --bs-gutter-y: 1.7rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .counter-section {
        padding: 70px 0;
    }

    .counter-card {
        min-height: 280px;
        padding: 35px 24px;
    }

    .counter-card h3 {
        font-size: 42px;
    }

}

@media (max-width: 575px) {

    .counter-card {
        min-height: auto;
    }

    .counter-card h3 {
        font-size: 38px;
    }

    .counter-icon {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

}

.separate-counter-section {
    background:
        linear-gradient(135deg, rgba(0,31,63,0.96), rgba(3,18,36,0.98)),
        radial-gradient(circle at top, rgba(212,175,55,0.22), transparent 45%);
}

.section-heading .section-title {
    color: #fff;
    margin-bottom: 8px;
}

.title-line {
    width: 82px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 24px;
    position: relative;
}

.title-line::after {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: -3.5px;
    transform: translateX(-50%);
}

.standalone-counter-card,
.counter-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 22px;
    padding: 38px 28px;
    text-align: center;
    min-height: 285px;
    box-shadow: 0 22px 45px rgba(0,0,0,0.28);
    transition: all 0.35s ease;
}

.standalone-counter-card:hover,
.counter-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.38);
}

.counter-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.counter-card h3 {
    color: #ffffff;
    font-size: 44px;
    font-family: Georgia, "Times New Roman", serif;
    margin-bottom: 6px;
}

.counter-card .label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 12px;
}

.counter-card p {
    color: rgba(255,255,255,0.78);
    margin: 0;
    font-size: 15px;
}

/* SERVICES */
.services-section {
    background:
        linear-gradient(135deg, #001f3f, #031224),
        radial-gradient(circle at top, rgba(212,175,55,0.22), transparent 45%);
    padding: 72px 0;
    color: #fff;
}

.services-section .section-title {
    color: #fff;
    text-align: center;
}

.service-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(212,175,55,0.22);
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    min-height: 260px;
    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.09);
    border-color: var(--gold);
}

.service-icon {
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 20px;
}

.service-card h4 {
    font-family: Georgia, serif;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    color: rgba(255,255,255,0.76);
    font-size: 15px;
}

.link-gold {
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-weight: 800;
    text-transform: uppercase;
}

.law-modal {
    border: 1px solid rgba(212,175,55,0.45);
    border-radius: 18px;
    overflow: hidden;
}

.law-modal .modal-header {
    background: var(--navy);
    color: #fff;
    border-bottom: 3px solid var(--gold);
}

.law-modal .modal-title {
    font-family: Georgia, serif;
    text-transform: uppercase;
}

/* TEAM */
.team-section {
    background: var(--cream);
    padding: 70px 0;
}

.team-section .section-title {
    text-align: center;
}

.team-card {
    background: #fff;
    border: 1px solid rgba(212,175,55,0.32);
    padding: 16px;
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 16px;
    align-items: center;
    min-height: 150px;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.team-card img {
    width: 118px;
    height: 118px;
    object-fit: cover;
}

.team-card h5 {
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 6px;
}

.team-card p {
    margin-bottom: 8px;
    color: var(--muted);
}

.team-social {
    display: flex;
    gap: 13px;
    color: var(--navy);
}

/* CONTACT */
.contact-section {
    background: var(--navy);
    color: #fff;
    padding: 70px 0 50px;
}

.contact-section .section-title {
    color: #fff;
    text-align: center;
}

.contact-info {
    margin-top: 25px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-right: 1px solid rgba(212,175,55,0.28);
}

html[dir="rtl"] .info-item {
    border-right: 0;
    border-left: 1px solid rgba(212,175,55,0.28);
}

.info-item i {
    color: var(--gold);
    font-size: 30px;
    margin-top: 4px;
}

.info-item h5 {
    text-transform: uppercase;
    font-family: Georgia, serif;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    color: rgba(255,255,255,0.82);
}

.contact-form {
    margin-top: 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 28px;
    border-radius: 18px;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.94);
    border: 0;
    border-radius: 0;
    padding: 13px 15px;
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(212,175,55,0.25);
}

/* FOOTER */
footer {
    background: #020b15;
    color: rgba(255,255,255,0.74);
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

footer a {
    color: var(--gold-light);
    font-weight: 800;
}

/* INNER PAGES */
.inner-page {
    background: var(--cream);
}

.page-hero {
    padding: 170px 0 75px;
    background:
        linear-gradient(135deg, rgba(0,31,63,0.96), rgba(3,18,36,0.98)),
        radial-gradient(circle at top, rgba(212,175,55,0.28), transparent 42%);
    color: #fff;
    text-align: center;
}

.page-hero h1 {
    font-family: Georgia, serif;
    text-transform: uppercase;
    font-size: 46px;
}

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

.content-card {
    background: #fff;
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
    .navbar-brand {
        width: 180px;
    }

    .navbar-brand .logo,
    .logo {
        width: 175px;
    }

    .law-nav .nav-link {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}

@media (max-width: 991px) {
    .law-nav {
        min-height: 76px;
        padding: 8px 0;
    }

    .navbar-brand {
        width: 155px;
        height: 70px;
    }

    .navbar-brand .logo,
    .logo {
        width: 145px;
        top: -10px;
    }

    .navbar-collapse {
        background: rgba(0, 25, 55, 0.98);
        padding: 15px;
        margin-top: 8px;
        border: 1px solid rgba(212,175,55,0.25);
    }

    .law-nav .nav-link {
        padding: 12px 10px !important;
    }

    .law-nav .nav-link::after {
        display: none;
    }

    .portal-btn {
        margin: 10px 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content {
        padding-top: 120px;
    }

    .chairman-panel {
        grid-template-columns: 1fr;
    }

    .chairman-photo {
        max-width: 260px;
    }

    .advanced-panel,
    .about-text,
    .chairman-panel {
        padding: 34px 28px;
    }

    .info-item {
        border-right: 0;
        border-left: 0;
        margin-bottom: 22px;
    }

    html[dir="rtl"] .info-item {
        border-left: 0;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 36px;
    }

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

    .about-text h2,
    .chairman-content h2,
    .section-title {
        font-size: 28px;
    }

    .team-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .team-card img {
        margin: 0 auto;
    }

    .team-social {
        justify-content: center;
    }

    .counter-card h3 {
        font-size: 38px;
    }

    .content-card {
        padding: 28px 20px;
    }
}
.contact-info-card,
.contact-form-card {
    height: 100%;
    background: rgba(255,255,255,0.065);
    border: 1px solid rgba(212,175,55,0.28);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 24px 55px rgba(0,0,0,0.28);
}

.contact-form-card h4 {
    font-family: Georgia, serif;
    color: #ffffff;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.contact-form {
    background: transparent;
    border: 0;
    padding: 0;
    margin-top: 0;
}

.contact-form .form-control {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 12px;
    padding: 14px 16px;
}

.contact-form .form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.20);
}

.contact-info-card .info-item {
    border: 0 !important;
    margin-bottom: 28px;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}
.live-support-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f6df8b);
    color: #001f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.45);
}

.live-support-btn i {
    font-size: 30px;
    z-index: 2;
}

.live-support-btn small {
    position: absolute;
    right: 82px;
    background: #001f3f;
    color: #fff;
    padding: 9px 14px;
    border-radius: 30px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

.live-support-btn:hover small {
    opacity: 1;
    transform: translateX(0);
}

.chat-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(212,175,55,0.7);
    animation: chatPulse 1.7s infinite;
}

@keyframes chatPulse {
    0% {
        transform: scale(0.85);
        opacity: 0.9;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

html[dir="rtl"] .live-support-btn {
    right: auto;
    left: 24px;
}

html[dir="rtl"] .live-support-btn small {
    right: auto;
    left: 82px;
}

@media (max-width: 575px) {
    .live-support-btn {
        width: 62px;
        height: 62px;
        right: 18px;
        bottom: 18px;
    }

    html[dir="rtl"] .live-support-btn {
        right: auto;
        left: 18px;
    }

    .live-support-btn i {
        font-size: 25px;
    }

    .live-support-btn small {
        display: none;
    }
}
.services-three-row {
    margin-top: 35px;
}

.services-three-row .service-card {
    min-height: 315px;
    display: flex;
    flex-direction: column;
}

.services-three-row .service-card .link-gold {
    margin-top: auto;
}

.team-slider-wrapper {
    position: relative;
    padding: 0 55px;
}

.team-section .teamSwiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}

.team-section .swiper-wrapper {
    align-items: stretch;
}

.team-section .swiper-slide {
    height: auto;
    display: flex;
}

.team-section .team-card {
    width: 100%;
    height: 100%;
}

.team-button-prev,
.team-button-next {
    top: 50% !important;
    transform: translateY(-50%);
}

.team-button-prev {
    left: 0 !important;
}

.team-button-next {
    right: 0 !important;
}

.team-section .swiper-pagination {
    bottom: 5px !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .about-band .col-lg-3,
    .about-band .col-lg-6 {
        width: 100%;
    }

    .about-img {
        height: 360px;
    }

    .chairman-panel {
        grid-template-columns: 220px 1fr;
    }

    .team-slider-wrapper {
        padding: 0 45px;
    }
}

@media (max-width: 767px) {
    .team-slider-wrapper {
        padding: 0;
    }

    .team-button-prev,
    .team-button-next {
        display: none !important;
    }
}
/* LOGO NORMAL SIZE INSIDE MENU - NO OVERLAP */
.law-nav {
    min-height: 82px;
}

.navbar-brand {
    width: 170px;
    height: 82px;
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-brand .logo,
.logo {
    position: static !important;
    width: auto !important;
    max-width: 155px !important;
    height: 68px !important;
    max-height: 68px !important;
    object-fit: contain;
    filter: none !important;
}

/* ABOUT RESPONSIVE UPDATE */
.about-responsive-section {
    background: #fff;
    padding: 75px 0;
}

.about-responsive-grid {
    display: grid;
    grid-template-columns: 28% 28% 44%;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0,0,0,0.12);
}

.about-image-box {
    min-height: 430px;
}

.about-image-box .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-responsive-grid .about-text {
    padding: 46px 38px;
    height: 100%;
}

.about-responsive-grid .chairman-panel {
    height: 100%;
    min-height: 430px;
}

/* SERVICES SLIDER WITH ARROWS */
.services-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 35px;
}

.servicesSwiper {
    overflow: hidden;
    padding-bottom: 60px;
}

.servicesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.servicesSwiper .service-card {
    width: 100%;
    height: 100%;
    min-height: 315px;
    display: flex;
    flex-direction: column;
}

.servicesSwiper .service-card .link-gold {
    margin-top: auto;
}

.service-button-prev,
.service-button-next {
    color: #d4af37 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(212,175,55,.35);
    top: 50% !important;
    transform: translateY(-50%);
}

.service-button-prev:hover,
.service-button-next:hover {
    background: #d4af37;
    color: #001f3f !important;
}

.service-button-prev {
    left: 0 !important;
}

.service-button-next {
    right: 0 !important;
}

/* TEAM SLIDER FIX */
.team-slider-wrapper {
    position: relative;
    padding: 0 55px;
}

.team-section .teamSwiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}

.team-section .swiper-slide {
    height: auto;
    display: flex;
}

.team-section .team-card {
    width: 100%;
    height: 100%;
}

.team-button-prev,
.team-button-next {
    top: 50% !important;
    transform: translateY(-50%);
}

.team-button-prev {
    left: 0 !important;
}

.team-button-next {
    right: 0 !important;
}

/* IPAD RESPONSIVE FIX */
@media (min-width: 768px) and (max-width: 1199px) {
    .navbar-brand {
        width: 145px;
        height: 76px;
    }

    .navbar-brand .logo,
    .logo {
        max-width: 135px !important;
        height: 60px !important;
        max-height: 60px !important;
    }

    .about-responsive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-box {
        min-height: 360px;
    }

    .about-responsive-grid .chairman-panel {
        grid-column: 1 / -1;
        grid-template-columns: 220px 1fr;
        min-height: auto;
    }

    .services-wrapper,
    .team-slider-wrapper {
        padding: 0 45px;
    }
}

/* MOBILE RESPONSIVE FIX */
@media (max-width: 767px) {
    .navbar-brand {
        width: 125px;
        height: 70px;
    }

    .navbar-brand .logo,
    .logo {
        max-width: 115px !important;
        height: 54px !important;
        max-height: 54px !important;
    }

    .about-responsive-section {
        padding: 45px 0;
    }

    .about-responsive-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box {
        min-height: 300px;
    }

    .about-responsive-grid .about-text {
        padding: 34px 24px;
    }

    .about-responsive-grid .chairman-panel {
        grid-template-columns: 1fr;
        padding: 34px 24px;
    }

    .chairman-photo {
        max-width: 260px;
    }

    .services-wrapper,
    .team-slider-wrapper {
        padding: 0;
    }

    .service-button-prev,
    .service-button-next,
    .team-button-prev,
    .team-button-next {
        display: none !important;
    }
}
/* BIG LOGO INSIDE MENU */
.law-nav {
    min-height: 115px;
}

.navbar-brand {
    width: 300px;
    height: 115px;
    display: flex;
    align-items: center;
}

.navbar-brand .logo,
.logo {
    position: static !important;
    width: auto !important;
    max-width: 280px !important;
    height: 105px !important;
    max-height: 105px !important;
    object-fit: contain;
    filter: none !important;
}

.law-nav .nav-link {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
}

/* ABOUT RESPONSIVE */
.about-responsive-section {
    background: #fff;
    padding: 75px 0;
}

.about-responsive-grid {
    display: grid;
    grid-template-columns: 28% 28% 44%;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0,0,0,0.12);
}

.about-image-box {
    min-height: 430px;
}

.about-image-box .about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-responsive-grid .about-text {
    padding: 46px 38px;
    height: 100%;
}

.about-responsive-grid .chairman-panel {
    height: 100%;
    min-height: 430px;
}

/* SERVICES SLIDER */
.services-wrapper {
    position: relative;
    padding: 0 60px;
    margin-top: 35px;
}

.servicesSwiper {
    overflow: hidden;
    padding-bottom: 60px;
}

.servicesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.servicesSwiper .service-card {
    width: 100%;
    height: 100%;
    min-height: 315px;
    display: flex;
    flex-direction: column;
}

.servicesSwiper .service-card .link-gold {
    margin-top: auto;
}

.service-button-prev,
.service-button-next {
    color: #d4af37 !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(212,175,55,.35);
    top: 50% !important;
    transform: translateY(-50%);
}

.service-button-prev:hover,
.service-button-next:hover {
    background: #d4af37;
    color: #001f3f !important;
}

.service-button-prev {
    left: 0 !important;
}

.service-button-next {
    right: 0 !important;
}

/* SERVICE MODAL FIX */
.service-read-modal {
    z-index: 99999;
}

.modal-backdrop {
    z-index: 99990;
}

.law-modal {
    border: 1px solid rgba(212,175,55,.45);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.law-modal .modal-header {
    background: linear-gradient(135deg, #001f3f, #031224);
    color: #fff;
    border-bottom: 4px solid #d4af37;
    padding: 24px 28px;
}

.modal-eyebrow {
    color: #f6df8b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.law-modal .modal-title {
    font-family: Georgia, serif;
    font-size: 26px;
    margin: 4px 0 0;
    color: #fff;
}

.law-modal .modal-body {
    padding: 35px;
    background: #fff;
    color: #1d2530;
    line-height: 1.8;
    font-size: 16px;
}

.service-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4af37, #f6df8b);
    color: #001f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.law-modal .modal-footer {
    background: #f8f4ea;
    border-top: 1px solid rgba(212,175,55,.25);
    padding: 20px 28px;
}

/* TEAM SLIDER FIX */
.team-slider-wrapper {
    position: relative;
    padding: 0 55px;
}

.team-section .teamSwiper {
    width: 100%;
    padding: 20px 0 60px;
    overflow: hidden;
}

.team-section .swiper-slide {
    height: auto;
    display: flex;
}

.team-section .team-card {
    width: 100%;
    height: 100%;
}

.team-button-prev,
.team-button-next {
    top: 50% !important;
    transform: translateY(-50%);
}

.team-button-prev {
    left: 0 !important;
}

.team-button-next {
    right: 0 !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .law-nav {
        min-height: 95px;
    }

    .navbar-brand {
        width: 230px;
        height: 95px;
    }

    .navbar-brand .logo,
    .logo {
        max-width: 220px !important;
        height: 85px !important;
        max-height: 85px !important;
    }

    .about-responsive-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-image-box {
        min-height: 360px;
    }

    .about-responsive-grid .chairman-panel {
        grid-column: 1 / -1;
        grid-template-columns: 220px 1fr;
        min-height: auto;
    }

    .services-wrapper,
    .team-slider-wrapper {
        padding: 0 45px;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        width: 180px;
        height: 82px;
    }

    .navbar-brand .logo,
    .logo {
        max-width: 170px !important;
        height: 72px !important;
        max-height: 72px !important;
    }

    .about-responsive-section {
        padding: 45px 0;
    }

    .about-responsive-grid {
        grid-template-columns: 1fr;
    }

    .about-image-box {
        min-height: 300px;
    }

    .about-responsive-grid .about-text {
        padding: 34px 24px;
    }

    .about-responsive-grid .chairman-panel {
        grid-template-columns: 1fr;
        padding: 34px 24px;
    }

    .chairman-photo {
        max-width: 260px;
    }

    .services-wrapper,
    .team-slider-wrapper {
        padding: 0;
    }

    .service-button-prev,
    .service-button-next,
    .team-button-prev,
    .team-button-next {
        display: none !important;
    }

    .law-modal .modal-body {
        padding: 24px;
    }
}

/* UPDATE 2026-06-16: bigger logo + team CV/email buttons */
.law-nav{
    min-height:125px !important;
    padding:10px 0 !important;
}
.navbar-brand{
    width:330px !important;
    min-height:115px !important;
    height:auto !important;
    display:flex !important;
    align-items:center !important;
}
.navbar-brand .logo,
.logo{
    position:static !important;
    width:auto !important;
    max-width:315px !important;
    height:112px !important;
    max-height:112px !important;
    object-fit:contain !important;
    filter:none !important;
}
.law-nav .nav-link{
    padding-top:42px !important;
    padding-bottom:42px !important;
}
.team-card{
    border-radius:22px !important;
    overflow:hidden;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.team-card img{
    border-radius:18px !important;
}
.team-social{
    display:flex !important;
    gap:10px !important;
    flex-wrap:wrap !important;
    margin-top:14px !important;
}
.team-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:9px 15px;
    border-radius:999px;
    background:#d4af37;
    color:#071a3a !important;
    text-decoration:none;
    font-size:13px;
    font-weight:800;
    line-height:1;
    transition:.25s ease;
    border:1px solid rgba(212,175,55,.45);
}
.team-btn:hover{
    background:#071a3a;
    color:#fff !important;
    transform:translateY(-2px);
}
.team-btn i{
    font-size:14px;
}
@media(max-width:991px){
    .law-nav{min-height:104px !important;}
    .navbar-brand{width:260px !important; min-height:96px !important;}
    .navbar-brand .logo,
    .logo{max-width:245px !important; height:92px !important; max-height:92px !important;}
    .law-nav .nav-link{padding-top:12px !important; padding-bottom:12px !important;}
}
@media(max-width:767px){
    .law-nav{min-height:92px !important;}
    .navbar-brand{width:220px !important; min-height:84px !important;}
    .navbar-brand .logo,
    .logo{max-width:205px !important; height:80px !important; max-height:80px !important;}
    .team-card{grid-template-columns:96px 1fr !important; gap:13px !important; padding:14px !important;}
    .team-card img{width:96px !important; height:96px !important;}
    .team-btn{padding:8px 12px; font-size:12px;}
}
