:root {
    --primary-dark: #1f2b2a;
    --primary-light: #263332;
    --gold: #c9a24d;
    --gold-hover: #b7923e;
    --white: #ffffff;
    --text-dark: #1c1c1c;
    --text-light: #cccccc;
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.section-title {
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 767px) {
    [data-aos] {
        transition-duration: 800ms !important;
    }
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
        text-align: center;
        overflow: hidden;
    }

    .hero-section .row {
        min-height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-top: 10px;
        line-height: 1.2;
    }

    .hero-img {
        margin-top: 30px;
        max-width: 85%;
        height: auto;
    }

    .navbar-brand {
        font-size: 18px;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        height: 60px;
    }

    .top-header {
        display: block !important;
        font-size: 11px;
        padding: 5px 0;
    }

    .top-header .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
    }
}

.top-header {
    background: var(--primary-dark);
    color: var(--white);
    font-size: 14px;
    padding: 8px 0;
}

.top-header i {
    color: var(--gold);
    margin-right: 6px;
}

.main-navbar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 26px;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
}

.nav-link {
    color: var(--primary-dark);
    margin-left: 15px;
    font-weight: 500;
}

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

.navbar-toggler {
    border: none;
    outline: none;
}

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

.btn-gold {
    background: var(--gold);
    color: #000;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    border: 2px solid var(--gold);
    display: inline-block;
}

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

.hero-section {
    position: relative;
    background-color: #1f2b2a;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, rgba(31, 43, 42, 0.97) 0%, rgba(20, 28, 27, 0.99) 100%);
    z-index: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 4rem;
    }
}

.text-gold {
    color: #c9a24d;
}

.hero-img {
    max-width: 100%;
    width: auto;
    height: auto;
    box-shadow: 0 20px 40px rgb(201 162 77 / 60%);
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

.stats-section {
    padding: 70px 0;
    background: var(--white);
}

.stats-section h2 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 5px;
}

.practice-section {
    background: var(--primary-dark);
    padding: 80px 0;
    color: var(--white);
}

.attorney-section {
    padding: 80px 0;
}

.attorney-img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--gold);
}

.faq-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: rgba(201, 162, 77, 0.1);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

.cases-container {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    min-height: 800px;
}

.case-tabs {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.case-tab-btn {
    background: transparent;
    color: #ccc;
    border: 1px solid #444;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: left;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.case-tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.case-tab-btn.active {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    font-weight: 700;
}

.case-content-box {
    background: var(--primary-light);
    border: 1px solid #3a4b4a;
    padding: 40px;
    border-radius: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.case-content-box.active {
    display: block;
}

.case-content-box h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.case-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-features i {
    color: var(--gold);
}

.founder-section {
    padding: 80px 0;
    background-color: #fdfbf7;
}

.founder-img-frame {
    position: relative;
    display: inline-block;
    padding: 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.founder-img-frame img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #1f2b2a;
    color: #c9a24d;
    padding: 15px 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.btn-dark-outline {
    border: 2px solid #1f2b2a;
    color: #1f2b2a;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-dark-outline:hover {
    background: #1f2b2a;
    color: #fff;
}

.values-strip {
    background: #1f2b2a;
    color: #fff;
    padding: 80px 0;
}

.values-strip i {
    font-size: 3rem;
    color: #c9a24d;
    display: block;
}

.values-strip h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
}

.team-grid-section {
    padding: 100px 0;
    background: #fff;
}

.team-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

.social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(31, 43, 42, 0.9);
    padding: 10px 0;
    text-align: center;
    transition: 0.3s;
}

.team-card:hover .social-overlay {
    bottom: 0;
}

.social-overlay a {
    color: #fff;
    margin: 0 10px;
    font-size: 1.2rem;
}

.social-overlay a:hover {
    color: #c9a24d;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: #1f2b2a;
    margin-bottom: 5px;
}

.team-info .designation {
    color: #c9a24d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.divider-small {
    width: 40px;
    height: 2px;
    background: #f0f0f0;
    margin: 15px auto;
}

@media (max-width: 991px) {
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 10px 15px;
    }

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

    .founder-img-frame {
        margin-bottom: 30px;
    }
}

.contact-info-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-info-box h3,
.contact-info-box i {
    color: var(--gold);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.form-control {
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
    background: var(--bg-light);
    border: 1px solid #eee;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: none;
    background: var(--white);
}

/* .footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
}

.footer h4,
.footer h5 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer a {
    color: var(--text-light);
}

.footer a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer hr {
    border-color: #444;
    margin: 30px 0;
} */

/* =========================================
   PREMIUM FOOTER STYLES
   ========================================= */
.footer {
    background-color: #1a2423;
    /* Slightly darker than brand green for contrast */
    color: #e0e0e0;
    padding: 80px 0 30px;
    font-size: 0.95rem;
    position: relative;
    border-top: 5px solid #c9a24d;
    /* The Gold Top Border */
}

/* Brand Title */
.footer-brand {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Headings */
.footer-heading {
    color: #c9a24d;
    /* Gold Headings */
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

/* Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #c9a24d;
    padding-left: 8px;
    /* Slide effect */
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: start;
    margin-bottom: 15px;
    gap: 10px;
    color: #b0b0b0;
}

.contact-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.3s;
}

.contact-list a:hover {
    color: #fff;
}

/* Social Buttons */
.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: #c9a24d;
    color: #000;
    transform: translateY(-3px);
    border-color: #c9a24d;
}

/* Bottom Bar */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

.copyright {
    font-size: 0.85rem;
    color: #888;
}

.footer-bottom-link {
    font-size: 0.85rem;
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom-link:hover {
    color: #c9a24d;
}

/* Font Awesome Fixed Width Helper for alignment */
.fa-fw {
    text-align: center;
    width: 1.25em;
}

@media (max-width: 991px) {
    .btn-gold {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-img {
        margin-top: 40px;
        max-width: 80%;
    }

    .case-tabs {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }

    .case-tab-btn {
        min-width: 200px;
        font-size: 16px;
        padding: 10px 15px;
    }

    .case-content-box {
        padding: 20px;
    }

    .contact-info-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .top-header {
        display: block !important;
        text-align: center;
        padding: 8px 0;
        font-size: 11px;
    }

    .top-header .container {
        display: flex !important;
        flex-direction: column;
        gap: 4px;
        align-items: center;
        justify-content: center;
    }

    .top-header span {
        display: block;
        margin-bottom: 2px;
    }

    .hero-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 20px !important;
    }

    .navbar-brand {
        font-size: 18px;
        max-width: 80%;
    }

    .navbar-brand img {
        height: 60px;
    }

    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .top-header {
        text-align: center;
        display: none;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    .stats-section .col-md-3 {
        margin-bottom: 30px;
    }

    .team-img {
        height: 300px;
    }

    .footer {
        text-align: center;
    }

    .footer .col-lg-4 {
        margin-bottom: 30px;
    }
}

.page-header {
    background: #ffffff;
    color: #1f2b2a;
    padding: 60px 0 30px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2b2a;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0;
}

.cases-container {
    background: #1f2b2a;
    padding: 80px 0;
}

@media (max-width: 767px) {
    .page-header {
        text-align: center;
        padding: 40px 0 20px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
}

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

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

.expert-section {
    padding: 100px 0;
    background-color: #fcfcfc;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.attorney-card {
    background: #1f2b2a;
    color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(31, 43, 42, 0.25);
    overflow: hidden;
}

@media (min-width: 992px) {
    .sticky-top-custom {
        position: sticky;
        top: 120px;
        z-index: 10;
    }
}

.badge-experience {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #c9a24d;
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.4);
}

.card-img-holder {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    position: relative;
}

.card-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #c9a24d;
    padding: 3px;
    background: #fff;
}

.attorney-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: #fff;
}

.attorney-card .designation {
    color: #ccc;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider-gold {
    height: 2px;
    width: 50px;
    background: #c9a24d;
    margin: 20px auto;
}

.attorney-card .bio-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-outline-light:hover {
    color: #1f2b2a;
    background: #fff;
}

.ls-2 {
    letter-spacing: 2px;
}

.text-gold {
    color: #c9a24d;
}

.modern-accordion .accordion-item {
    background: #fff;
    border: none;
    margin-bottom: 20px;
    border-radius: 12px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.modern-accordion .accordion-button {
    background: #fff;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2b2a;
    box-shadow: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: #fdfbf7;
    color: #1f2b2a;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    color: #1f2b2a;
    border-radius: 8px;
    margin-right: 15px;
    transition: 0.3s;
}

.modern-accordion .accordion-button:not(.collapsed) .icon-box {
    background: #c9a24d;
    color: #fff;
}

.modern-accordion .accordion-body {
    padding: 0 25px 25px 75px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .attorney-card {
        padding: 30px 20px;
    }

    .modern-accordion .accordion-body {
        padding: 0 20px 20px;
    }
}

.premium-cta-section {
    position: relative;
    background-color: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.cta-overlay {
    display: none;
}

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

.cta-badge {
    background: #c9a24d;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    display: inline-block;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #1f2b2a;
}

.cta-sub {
    font-size: 1.1rem;
    opacity: 1;
    color: #555;
    max-width: 600px;
}

.premium-cta-section .text-white {
    color: #1f2b2a !important;
}

.cta-action-box {
    background: #fdfbf7;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.btn-gold-shine {
    background: #c9a24d;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px;
    border-radius: 8px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(201, 162, 77, 0.3);
}

.btn-gold-shine:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 43, 42, 0.2);
    background: #1f2b2a;
    color: #fff;
}

.premium-cta-section .btn-outline-light {
    color: #1f2b2a;
    border-color: #1f2b2a;
}

.premium-cta-section .btn-outline-light:hover {
    background-color: #1f2b2a;
    color: #fff;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(201, 162, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 77, 0);
    }
}

.btn-gold-shine {
    animation: pulse-gold 2s infinite;
}

@media (max-width: 991px) {
    .premium-cta-section {
        text-align: center;
        padding: 60px 0;
    }

    .cta-sub {
        margin: 0 auto 30px;
    }

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

.contact-cta-white {
    background-color: #ffffff;
    padding: 80px 0;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 5;
}

.cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f2b2a;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    max-width: 650px;
}

.btn-gold-solid {
    background: #c9a24d;
    color: #000;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    border: 2px solid #c9a24d;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(201, 162, 77, 0.2);
}

.btn-gold-solid:hover {
    background: transparent;
    color: #c9a24d;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(201, 162, 77, 0.3);
}

@media (max-width: 991px) {
    .contact-cta-white {
        padding: 60px 0;
        text-align: center;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-text {
        margin: 0 auto 30px;
    }

    .btn-gold-solid {
        width: 100%;
    }
}

.about-story-section {
    padding: 20px 0 !important;
}

.page-header.bg-primary-dark {
    padding: 100px 0 80px !important;
}

.mission-card {
    padding: 40px !important;
}

@media (max-width: 767px) {

    .about-story-section,
    .mission-section {
        padding: 10px 0 !important;
    }

    .display-5 {
        font-size: 2rem;
    }
}

.bg-primary-dark {
    background-color: #1f2b2a !important;
    color: #fff;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

.hover-card-dark {
    background-color: transparent;
    transition: all 0.3s ease;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.hover-card-dark:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: #c9a24d !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-header.bg-primary-dark {
    padding: 80px 0 60px;
    border-bottom: none;
}

.bg-primary-dark {
    background-color: #1f2b2a;
}

.text-gold {
    color: #c9a24d !important;
}

.border-warning {
    border-color: #c9a24d !important;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.btn-gold {
    background: #c9a24d;
    color: #000;
    border: 2px solid #c9a24d;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: transparent;
    color: #c9a24d;
    border-color: #1f2b2a;
}

@media (max-width: 767px) {
    .modal-body {
        padding: 20px;
    }

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

.btn-outline-danger {
    border: 2px solid #dc3545;
    color: #dc3545;
    transition: all 0.3s ease;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}

.border-warning {
    border-color: #c9a24d !important;
}

.list-styled {
    list-style: none;
    padding-left: 0;
}

.list-styled li {
    position: relative;
    padding-left: 25px;
}

.list-styled li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #c9a24d;
    position: absolute;
    left: 0;
    top: 2px;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #c9a24d !important;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

.my-float {
    margin-top: 1px;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.text-gold {
    color: #c9a24d !important;
}

.border-gold {
    border-color: #c9a24d !important;
}

.font-playfair {
    font-family: 'Playfair Display', serif !important;
}

.results-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background-color: #1f2b2a;
    overflow: hidden;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.text-gold-gradient {
    background: linear-gradient(to right, #c9a24d, #f9eac5, #c9a24d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.bg-gold-transparent {
    background: rgba(201, 162, 77, 0.15);
    border: 1px solid rgba(201, 162, 77, 0.3);
}

.compliance-strip {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 15px 0;
}

.bg-light-texture {
    background-color: #fcfcfc;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
}

.result-card {
    background: #fff;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #c9a24d;
}

.featured-card {
    border-top: 4px solid #c9a24d;
}

.card-content {
    padding: 30px;
}

.card-icon-float {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.03);
    transform: rotate(15deg);
    transition: 0.5s;
    pointer-events: none;
}

.result-card:hover .card-icon-float {
    color: rgba(201, 162, 77, 0.1);
    transform: rotate(0deg) scale(1.1);
}

.category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #c9a24d;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.case-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f2b2a;
}

.case-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.case-summary {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #1f2b2a;
    color: #fff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-action:hover {
    background: #c9a24d;
    color: #000;
    padding-right: 25px;
}

.case-title-sm {
    font-weight: 700;
    color: #1f2b2a;
    margin-bottom: 5px;
}

.case-meta-sm {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 10px;
    font-family: monospace;
}

.link-gold {
    color: #c9a24d;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    position: relative;
}

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

.result-card:hover .link-gold::after {
    width: 100%;
}

.pulse-gold-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.home-precedents-section {
    background-color: #1f2b2a;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.featured-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.featured-case-card:hover {
    border-color: #c9a24d;
    background: rgba(255, 255, 255, 0.05);
}

.case-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #c9a24d;
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
    letter-spacing: 1px;
}

.recent-case-item {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.recent-case-item:hover {
    background: rgba(201, 162, 77, 0.1);
    border-color: #c9a24d;
    transform: translateX(5px);
}

.icon-box-gold-outline {
    width: 45px;
    height: 45px;
    border: 1px solid #c9a24d;
    color: #c9a24d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.recent-case-item:hover .icon-box-gold-outline {
    background: #c9a24d;
    color: #000;
}

.divider-gold {
    width: 60px;
    height: 3px;
    background-color: #c9a24d;
}

.hover-slide-right {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hover-slide-right:hover {
    transform: translateX(5px);
    color: #fff !important;
}

.cofounder-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #c9a24d 0%, #aa8436 100%);
    /* Gold Gradient */
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 10;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 5px;
}

.cofounder-badge i {
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.developer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border-bottom: 1px dotted rgba(201, 162, 77, 0.3);
}

.developer-link:hover {
    color: #c9a24d;
    border-bottom-color: #c9a24d;
    text-shadow: 0px 0px 10px rgba(201, 162, 77, 0.5);
}

.about-hero {
    background: linear-gradient(rgba(18, 28, 26, 0.85), rgba(18, 28, 26, 0.7)),
        url("/img/sadioralaw_copy.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px 0;
    position: relative;
}


.gold-accent-line {
    width: 60px;
    height: 3px;
    background-color: #c9a24d;
    margin: 20px auto;
}

.image-frame-elegant {
    position: relative;
    padding: 15px;
    border: 1px solid rgba(201, 162, 77, 0.3);
}

.image-frame-elegant img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: #c9a24d;
}