/* =========================================================
   AMIT SINDHU ADVOCATE - ROHTAK
   COMPLETE HOMEPAGE CSS
   Bootstrap 5 Compatible
========================================================= */


/* =========================================================
   01. GOOGLE FONTS
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');


/* =========================================================
   02. ROOT VARIABLES
========================================================= */

:root {

    --black: #080808;
    --black-2: #101010;
    --black-3: #171717;

    --navy: #102a43;
    --navy-dark: #071827;
    --navy-light: #173d5f;

    --gold: #c6a13a;
    --gold-dark: #96721b;
    --gold-light: #ead58a;
    --gold-pale: #f8f1dc;

    --white: #ffffff;

    --heading: #101828;
    --text: #344054;
    --muted: #667085;

    --bg: #ffffff;
    --bg-light: #f7f8fa;
    --bg-soft: #f1f3f5;

    --border: #e4e7ec;
    --border-dark: #d0d5dd;

    --success: #168a46;
    --whatsapp: #20b45a;
    --whatsapp-dark: #148b43;

    --font-heading:
        "Cormorant Garamond",
        Georgia,
        "Times New Roman",
        serif;

    --font-body:
        "Inter",
        Arial,
        Helvetica,
        sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm:
        0 2px 10px rgba(16, 24, 40, .05);

    --shadow-md:
        0 8px 30px rgba(16, 24, 40, .08);

    --shadow-lg:
        0 20px 55px rgba(16, 24, 40, .12);

    --transition:
        all .3s ease;
}


/* =========================================================
   03. GLOBAL
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: var(--font-body);
}

::selection {
    color: #111;
    background: var(--gold-light);
}


/* =========================================================
   04. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--heading);
}

h1 {
    font-size: clamp(44px, 5vw, 68px);
}

h2 {
    font-size: clamp(36px, 4vw, 52px);
}

h3 {
    font-size: 27px;
}

h4 {
    font-size: 22px;
}

p {
    margin-top: 0;
    margin-bottom: 18px;
}

.text-muted-custom {
    color: var(--muted);
}


/* =========================================================
   05. COMMON
========================================================= */

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding-sm {
    padding-top: 70px;
    padding-bottom: 70px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.section-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading-left {
    max-width: 800px;
    margin: 0 0 45px;
}

.section-heading h2,
.section-heading-left h2 {
    margin-bottom: 14px;
}

.section-heading p,
.section-heading-left p {
    margin-bottom: 0;
    color: var(--muted);
}

.gold-line {
    width: 60px;
    height: 2px;
    margin: 20px auto;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}


/* =========================================================
   06. BUTTONS
========================================================= */

.btn {
    padding: 11px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    transition: var(--transition);
}

.btn i {
    margin-right: 6px;
}

.btn-gold {
    color: #111 !important;
    background:
        linear-gradient(
            135deg,
            var(--gold-dark),
            var(--gold-light)
        );
    border: 1px solid var(--gold);
    box-shadow:
        0 5px 18px rgba(198,161,58,.15);
}

.btn-gold:hover {
    color: #111 !important;
    transform: translateY(-2px);
    box-shadow:
        0 9px 25px rgba(198,161,58,.28);
}

.btn-dark-custom {
    color: #fff !important;
    background: var(--black);
    border: 1px solid var(--black);
}

.btn-dark-custom:hover {
    color: #fff !important;
    background: var(--navy);
    transform: translateY(-2px);
}

.btn-outline-gold {
    color: var(--gold-dark);
    background: transparent;
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    color: #111;
    background: var(--gold);
}


/* =========================================================
   07. TOP BAR
========================================================= */

.top-bar {
    padding: 9px 0;
    color: #d7d7d7;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-bar i {
    color: var(--gold-light);
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    color: var(--gold-light);
}


/* =========================================================
   08. NAVIGATION
========================================================= */

.main-navbar {
    position: relative;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(8,8,8,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.main-navbar.sticky-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow:
        0 5px 25px rgba(0,0,0,.18);
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.navbar-brand-icon {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 19px;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand-text small {
    margin-top: 4px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-navbar .nav-link {
    position: relative;
    padding: 10px 13px !important;
    color: #eee !important;
    font-size: 13px;
    font-weight: 500;
}

.main-navbar .nav-link:hover {
    color: var(--gold-light) !important;
}

.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 3px;
    left: 13px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.main-navbar .nav-link:hover::after {
    transform: scaleX(1);
}

.main-navbar .navbar-toggler {
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: none !important;
}

.main-navbar .navbar-toggler:focus {
    box-shadow:
        0 0 0 3px rgba(198,161,58,.2) !important;
}


/* Dropdown */

.main-navbar .dropdown-menu {
    min-width: 250px;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.main-navbar .dropdown-item {
    padding: 9px 12px;
    color: var(--heading);
    border-radius: 6px;
    font-size: 13px;
}

.main-navbar .dropdown-item:hover {
    color: var(--gold-dark);
    background: var(--gold-pale);
}


/* =========================================================
   09. HERO
========================================================= */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0 120px;
    color: #fff;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(198,161,58,.12),
            transparent 33%
        ),
        linear-gradient(
            120deg,
            #070707 0%,
            #111 55%,
            #19160d 100%
        );
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -190px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(198,161,58,.15);
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(198,161,58,.12);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 14px;
    color: var(--gold-light);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(234,213,138,.35);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.hero-section h1 {
    max-width: 850px;
    margin-bottom: 25px;
    color: #fff;
    letter-spacing: -.7px;
}

.hero-section h1 span {
    color: var(--gold-light);
}

.hero-text {
    max-width: 720px;
    color: #d2d6db;
    font-size: 17px;
    line-height: 1.85;
}

.hero-text strong {
    color: #fff;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #c7ccd2;
    font-size: 12px;
}

.hero-trust-item i {
    color: var(--gold);
}


/* =========================================================
   10. LAWYER PROFILE CARD
========================================================= */

.lawyer-card-wrapper {
    position: relative;
    z-index: 3;
}

.lawyer-card {
    position: relative;
    overflow: hidden;
    padding: 42px 35px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.09),
            rgba(255,255,255,.025)
        );
    border: 1px solid rgba(198,161,58,.35);
    border-radius: var(--radius-lg);
    box-shadow:
        0 25px 65px rgba(0,0,0,.32);
    backdrop-filter: blur(10px);
}

.lawyer-card::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    width: 210px;
    height: 210px;
    transform: translateX(-50%);
    background: rgba(198,161,58,.08);
    border-radius: 50%;
}

.lawyer-icon {
    position: relative;
    z-index: 2;
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-light);
    background: rgba(198,161,58,.08);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-size: 35px;
}

.lawyer-card h2 {
    position: relative;
    color: #fff;
    font-size: 36px;
}

.lawyer-designation {
    margin-bottom: 0;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lawyer-location {
    color: #d5d8dc;
    font-size: 13px;
}

.lawyer-contact {
    margin-top: 25px;
    padding-top: 18px;
    text-align: left;
    border-top: 1px solid rgba(255,255,255,.10);
}

.lawyer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 8px 0;
    color: #d8dadd;
    font-size: 12px;
}

.lawyer-contact-item i {
    width: 18px;
    margin-top: 4px;
    color: var(--gold);
    text-align: center;
}

.lawyer-contact-item a:hover {
    color: var(--gold-light);
}


/* =========================================================
   11. STATS
========================================================= */

.stats-section {
    position: relative;
    z-index: 5;
    margin-top: -42px;
}

.stats-wrapper {
    padding: 25px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.stat-box {
    position: relative;
    height: 100%;
    padding: 10px 18px;
    text-align: center;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: var(--border);
}

.stat-icon {
    margin-bottom: 8px;
    color: var(--gold-dark);
    font-size: 23px;
}

.stat-number {
    display: block;
    margin-bottom: 2px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
}

.stat-label {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   12. ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    overflow: hidden;
    background: #eee;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    width: 165px;
    padding: 20px 15px;
    text-align: center;
    background: var(--black);
    border: 5px solid #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-experience-badge strong {
    display: block;
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 39px;
    line-height: 1;
}

.about-experience-badge span {
    display: block;
    margin-top: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 1.3;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.about-content p {
    color: var(--text);
}

.about-list {
    margin: 25px 0 30px;
    padding: 0;
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
}

.about-list li i {
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border-radius: 50%;
    font-size: 10px;
}


/* =========================================================
   13. LEGAL SERVICE CARDS
========================================================= */

.practice-section {
    background: var(--bg-light);
}

.practice-card {
    position: relative;
    height: 100%;
    padding: 30px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.practice-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(
            90deg,
            var(--gold-dark),
            var(--gold-light)
        );
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.practice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198,161,58,.35);
    box-shadow: var(--shadow-lg);
}

.practice-card:hover::before {
    transform: scaleX(1);
}

.practice-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border-radius: 12px;
    font-size: 22px;
}

.practice-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
}

.practice-card p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.practice-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.practice-card-link i {
    color: var(--gold-dark);
    transition: var(--transition);
}

.practice-card-link:hover {
    color: var(--gold-dark);
}

.practice-card-link:hover i {
    transform: translateX(4px);
}


/* =========================================================
   14. ALL LAW MATTERS STRIP
========================================================= */

.all-matters-section {
    padding: 65px 0;
    color: #fff;
    background:
        linear-gradient(
            120deg,
            var(--navy-dark),
            var(--navy)
        );
}

.all-matters-section h2 {
    color: #fff;
}

.all-matters-section p {
    color: #c5ccd4;
}

.matter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.matter-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    color: #e2e6ea;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50px;
    font-size: 11px;
}

.matter-tag i {
    color: var(--gold-light);
}


/* =========================================================
   15. EXPERIENCE
========================================================= */

.experience-section {
    background: #fff;
}

.experience-image-wrapper {
    position: relative;
}

.experience-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-image img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.experience-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.80),
            transparent 65%
        );
}

.experience-image-overlay h3 {
    margin-bottom: 5px;
    color: #fff;
    font-size: 26px;
}

.experience-image-overlay p {
    margin-bottom: 0;
    color: #eee;
    font-size: 12px;
}

.experience-points {
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-point {
    display: flex;
    gap: 17px;
    margin-bottom: 28px;
}

.experience-point-icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border-radius: 50%;
}

.experience-point h3 {
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
}

.experience-point p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.experience-stats {
    margin-top: 20px;
}

.experience-stat {
    padding: 22px 15px;
    text-align: center;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.experience-stat strong {
    display: block;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 34px;
}

.experience-stat span {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   16. WHY CHOOSE
========================================================= */

.why-section {
    color: #fff;
    background: var(--navy-dark);
}

.why-section .section-eyebrow {
    color: var(--gold-light);
}

.why-section .section-eyebrow::before {
    background: var(--gold);
}

.why-section .section-heading h2 {
    color: #fff;
}

.why-section .section-heading p {
    color: #b8c0ca;
}

.why-card {
    height: 100%;
    padding: 30px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,.055);
    border-color: rgba(198,161,58,.45);
}

.why-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-light);
    background: rgba(198,161,58,.10);
    border-radius: 10px;
    font-size: 21px;
}

.why-card h3 {
    margin-bottom: 9px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
}

.why-card p {
    margin-bottom: 0;
    color: #aeb7c3;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   17. PROCESS
========================================================= */

.process-section {
    background: var(--bg-light);
}

.process-card {
    position: relative;
    height: 100%;
    padding: 25px;
    text-align: center;
}

.process-number {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 700;
}

.process-card h3 {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.process-connector {
    position: absolute;
    top: 58px;
    left: 70%;
    width: 60%;
    border-top: 1px dashed var(--gold);
}


/* =========================================================
   18. TESTIMONIALS
========================================================= */

.testimonials-section {
    background: #fff;
}

.testimonial-card {
    position: relative;
    height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    position: absolute;
    top: 18px;
    right: 25px;
    color: rgba(198,161,58,.15);
    font-family: Georgia, serif;
    font-size: 65px;
    line-height: 1;
}

.testimonial-stars {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 12px;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    margin-bottom: 22px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    background: var(--gold-pale);
    border-radius: 50%;
}

.testimonial-client strong {
    display: block;
    color: var(--heading);
    font-size: 13px;
}

.testimonial-client span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}


/* =========================================================
   19. FAQ
========================================================= */

.faq-section {
    background: var(--bg-light);
}

.faq-wrapper {
    max-width: 920px;
    margin: 0 auto;
}

.faq-section .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
}

.faq-section .accordion-button {
    padding: 20px 22px;
    color: var(--heading);
    background: #fff;
    box-shadow: none !important;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--gold-dark);
    background: var(--gold-pale);
}

.faq-section .accordion-body {
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   20. CONTACT
========================================================= */

.contact-section {
    background: #fff;
}

.contact-info-card {
    height: 100%;
    padding: 35px;
    color: #fff;
    background: var(--navy-dark);
    border-radius: var(--radius-lg);
}

.contact-info-card h2 {
    color: #fff;
}

.contact-info-card > p {
    color: #b9c1cb;
    font-size: 13px;
}

.contact-detail {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.contact-detail-icon {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    background: rgba(198,161,58,.10);
    border-radius: 9px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 12px;
}

.contact-detail a,
.contact-detail span {
    color: #c3c9d0;
    font-size: 12px;
}

.contact-detail a:hover {
    color: var(--gold-light);
}


/* =========================================================
   21. CONTACT FORM
========================================================= */

.contact-form-card {
    padding: 35px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
}

.form-label {
    margin-bottom: 7px;
    color: var(--heading);
    font-size: 12px;
    font-weight: 600;
}

.form-control,
.form-select {
    min-height: 48px;
    padding: 10px 14px;
    color: var(--heading);
    background: #fff;
    border: 1px solid var(--border-dark);
    border-radius: 7px;
    box-shadow: none !important;
    font-size: 13px;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(198,161,58,.12) !important;
}

.form-check-label {
    color: var(--muted);
    font-size: 11px;
}


/* =========================================================
   22. MAP
========================================================= */

.map-section {
    background: var(--bg-light);
}

.map-wrapper {
    overflow: hidden;
    min-height: 420px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    min-height: 420px;
    height: 100%;
    border: 0;
}


/* =========================================================
   23. CTA
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(
            120deg,
            #080808,
            #171717
        );
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(198,161,58,.18);
    border-radius: 50%;
}

.cta-section h2 {
    position: relative;
    z-index: 2;
    color: #fff;
}

.cta-section p {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    color: #c7ccd2;
}

.cta-buttons {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}


/* =========================================================
   24. FOOTER
========================================================= */

.main-footer {
    padding: 75px 0 30px;
    color: #9da4ad;
    background: #070707;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 29px;
    font-weight: 700;
}

.footer-brand i {
    color: var(--gold);
}

.footer-about {
    max-width: 420px;
    color: #969da6;
    font-size: 12px;
    line-height: 1.85;
}

.footer-title {
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: #959ca5;
    font-size: 12px;
}

.footer-links a:hover {
    padding-left: 4px;
    color: var(--gold-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 12px;
}

.footer-contact-item i {
    width: 18px;
    margin-top: 4px;
    color: var(--gold);
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 2px;
    color: #fff;
    font-size: 11px;
}

.footer-contact-item a,
.footer-contact-item span {
    color: #aeb4bc;
}

.footer-contact-item a:hover {
    color: var(--gold-light);
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.social-links a {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b6bdc5;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    font-size: 13px;
}

.social-links a:hover {
    color: #111;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
    margin-bottom: 0;
    color: #777f88;
    font-size: 10px;
}

.footer-bottom a {
    color: #9299a1;
}

.footer-bottom a:hover {
    color: var(--gold-light);
}


/* =========================================================
   25. STICKY CALL / WHATSAPP
========================================================= */

.sticky-contact-bar {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    width: 285px;
    overflow: hidden;
    border-radius: 50px;
    box-shadow:
        0 10px 35px rgba(0,0,0,.22);
}

.sticky-contact-bar a {
    flex: 1;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.sticky-call {
    background: var(--black);
}

.sticky-call:hover {
    color: #fff;
    background: var(--navy);
}

.sticky-whatsapp {
    background: var(--whatsapp);
}

.sticky-whatsapp:hover {
    color: #fff;
    background: var(--whatsapp-dark);
}

.sticky-contact-bar i {
    font-size: 16px;
}


/* =========================================================
   26. FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 95px;
    z-index: 9998;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--whatsapp);
    border-radius: 50%;
    box-shadow:
        0 8px 25px rgba(0,0,0,.20);
    font-size: 24px;
}

.floating-whatsapp:hover {
    color: #fff;
    background: var(--whatsapp-dark);
    transform: scale(1.07);
}


/* =========================================================
   27. BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 90px;
    z-index: 9990;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--navy);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: #111;
    background: var(--gold);
}


/* =========================================================
   28. LEGAL DISCLAIMER
========================================================= */

.legal-disclaimer {
    padding: 25px 0;
    color: #8d949c;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.06);
    font-size: 10px;
    line-height: 1.7;
}


/* =========================================================
   29. ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(198,161,58,.45);
    outline-offset: 3px;
}


/* =========================================================
   30. RESPONSIVE TABLET
========================================================= */

@media (max-width: 991.98px) {

    .main-navbar .navbar-collapse {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,.10);
    }

    .main-navbar .nav-link {
        padding: 10px 0 !important;
    }

    .main-navbar .nav-link::after {
        display: none;
    }

    .main-navbar .dropdown-menu {
        margin-top: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .main-navbar .dropdown-item {
        color: #ddd;
    }

    .main-navbar .dropdown-item:hover {
        color: var(--gold-light);
        background: transparent;
    }

    .hero-section {
        padding: 80px 0 100px;
    }

    .hero-section h1 {
        font-size: clamp(42px, 7vw, 58px);
    }

    .lawyer-card-wrapper {
        margin-top: 45px;
    }

    .stat-box:not(:last-child)::after {
        display: none;
    }

    .about-image-wrapper {
        max-width: 650px;
        margin: 0 auto 50px;
    }

    .about-experience-badge {
        right: 20px;
    }

    .process-connector {
        display: none;
    }

}


/* =========================================================
   31. RESPONSIVE MOBILE
========================================================= */

@media (max-width: 767.98px) {

    body {
        padding-bottom: 62px;
        font-size: 15px;
    }

    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .section-heading,
    .section-heading-left {
        margin-bottom: 35px;
    }

    .section-heading h2,
    .section-heading-left h2 {
        font-size: 36px;
    }

    .top-bar {
        padding: 8px 0;
        font-size: 10px;
    }

    .top-bar-content {
        display: block;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    .top-bar-right {
        margin-top: 3px;
    }

    .navbar-brand {
        font-size: 23px;
    }

    .navbar-brand-icon {
        width: 37px;
        height: 37px;
        font-size: 16px;
    }

    .hero-section {
        padding: 65px 0 85px;
    }

    .hero-section h1 {
        font-size: 42px;
        letter-spacing: -.4px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-trust {
        display: block;
    }

    .hero-trust-item {
        display: flex;
        margin-bottom: 8px;
    }

    .lawyer-card {
        padding: 32px 22px;
    }

    .lawyer-card h2 {
        font-size: 31px;
    }

    .stats-section {
        margin-top: -25px;
    }

    .stats-wrapper {
        padding: 12px;
    }

    .stat-box {
        padding: 14px 5px;
    }

    .stat-number {
        font-size: 29px;
    }

    .stat-label {
        font-size: 9px;
    }

    .about-experience-badge {
        right: 10px;
        bottom: 20px;
        width: 135px;
        padding: 15px 10px;
    }

    .about-experience-badge strong {
        font-size: 32px;
    }

    .practice-card,
    .why-card,
    .testimonial-card {
        padding: 25px;
    }

    .experience-image-overlay {
        padding: 20px;
    }

    .experience-image-overlay h3 {
        font-size: 21px;
    }

    .cta-section h2 {
        font-size: 37px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .map-wrapper,
    .map-wrapper iframe {
        min-height: 300px;
    }

    .sticky-contact-bar {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 0;
        box-shadow:
            0 -5px 20px rgba(0,0,0,.18);
    }

    .sticky-contact-bar a {
        min-height: 60px;
        font-size: 12px;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 78px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .back-to-top {
        right: 15px;
        bottom: 75px;
    }

}


/* =========================================================
   32. SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .hero-section h1 {
        font-size: 38px;
    }

    .section-heading h2,
    .section-heading-left h2 {
        font-size: 32px;
    }

    .hero-label {
        font-size: 9px;
    }

    .lawyer-card {
        padding: 28px 18px;
    }

    .practice-card {
        padding: 22px;
    }

    .practice-card h3 {
        font-size: 19px;
    }

}


/* =========================================================
   33. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}