/* ============================================================
   LEGAL HELPING HANDS
   PREMIUM ADVOCATE WEBSITE
   File: css/style.css
   Theme: Navy + Gold + White
   ============================================================ */


/* ============================================================
   01. ROOT VARIABLES
   ============================================================ */

:root {

    --navy-950: #050b18;
    --navy-900: #071126;
    --navy-850: #0a1530;
    --navy-800: #0d1b3a;
    --navy-700: #132650;
    --navy-600: #1b346b;

    --gold-100: #fff8df;
    --gold-200: #f9e8a8;
    --gold-300: #f0d477;
    --gold-400: #e4bf52;
    --gold-500: #cfa63a;
    --gold-600: #b88d25;
    --gold-700: #96701c;

    --white: #ffffff;
    --off-white: #f8f8f6;
    --light: #f3f5f8;
    --light-2: #e9edf3;

    --text-dark: #172033;
    --text: #384257;
    --text-light: #687389;
    --text-muted: #8992a4;

    --border: #e2e6ed;
    --border-dark: rgba(255,255,255,0.12);

    --success: #25d366;
    --danger: #d94b4b;

    --shadow-sm:
        0 4px 16px rgba(8, 18, 40, 0.07);

    --shadow:
        0 12px 35px rgba(8, 18, 40, 0.10);

    --shadow-lg:
        0 24px 70px rgba(8, 18, 40, 0.15);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    --container: 1200px;

    --transition:
        all 0.35s cubic-bezier(0.22, 1, 0.36, 1);

    --heading-font:
        "Cormorant Garamond",
        Georgia,
        serif;

    --body-font:
        "Inter",
        Arial,
        sans-serif;
}


/* ============================================================
   02. RESET
   ============================================================ */

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


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}


body.menu-open {
    overflow: hidden;
}


img,
video,
iframe {
    max-width: 100%;
}


img {
    display: block;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


ul,
ol {
    list-style: none;
}


::selection {
    color: var(--white);
    background: var(--gold-500);
}


/* ============================================================
   03. GLOBAL CONTAINER
   ============================================================ */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


.section {
    position: relative;
    padding: 110px 0;
}


.section-header {
    margin-bottom: 55px;
}


.section-header.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.section-eyebrow,
.contact-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 15px;

    color: var(--gold-600);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.section-eyebrow i {
    font-size: 14px;
}


.section-eyebrow.light {
    color: var(--gold-300);
}


.section-title {
    margin-bottom: 20px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
}


.section-title span {
    display: inline;
    color: var(--gold-600);
}


.light-title {
    color: var(--white);
}


.section-header > p,
.section-header.centered > p {
    max-width: 700px;
    margin-inline: auto;

    color: var(--text-light);

    font-size: 16px;
}


.dark-section .section-title span,
.contact-section .section-title span {
    color: var(--gold-300);
}


/* ============================================================
   04. PRELOADER
   ============================================================ */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: grid;
    place-items: center;

    background:
        radial-gradient(
            circle at center,
            var(--navy-700),
            var(--navy-950) 65%
        );

    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}


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


.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;

    text-align: center;
}


.preloader-logo {
    width: 125px;
    height: 125px;

    display: grid;
    place-items: center;

    padding: 15px;

    border: 1px solid rgba(228,191,82,0.5);
    border-radius: 50%;

    background: rgba(255,255,255,0.04);

    box-shadow:
        0 0 0 10px rgba(228,191,82,0.04),
        0 0 50px rgba(228,191,82,0.12);
}


.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.preloader-inner p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    letter-spacing: 1px;
}


.loader {
    width: 40px;
    height: 40px;

    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--gold-400);

    border-radius: 50%;

    animation:
        loaderSpin 0.8s linear infinite;
}


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


/* ============================================================
   05. TOPBAR
   ============================================================ */

.topbar {
    position: relative;
    z-index: 1000;

    min-height: 42px;

    color: rgba(255,255,255,0.8);

    background: var(--navy-950);

    border-bottom: 1px solid rgba(255,255,255,0.07);
}


.topbar-container {
    min-height: 42px;

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

    gap: 20px;
}


.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}


.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 12px;
    font-weight: 500;

    transition: var(--transition);
}


.topbar a:hover {
    color: var(--gold-300);
}


.topbar i {
    color: var(--gold-400);
    font-size: 11px;
}


.topbar-consultation {
    color: var(--gold-300) !important;
}


/* ============================================================
   06. HEADER
   ============================================================ */

.site-header {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 9000;

    background: rgba(7,17,38,0.35);

    border-bottom: 1px solid transparent;

    transition: var(--transition);
}


.site-header.scrolled {
    top: 0;

    background:
        rgba(7,17,38,0.97);

    border-bottom-color:
        rgba(255,255,255,0.08);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.15);
}


.nav-container {
    min-height: 88px;

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

    gap: 30px;
}


/* ============================================================
   07. BRAND
   ============================================================ */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    flex-shrink: 0;
}


.brand-logo {
    width: 54px;
    height: 54px;

    object-fit: contain;
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-text strong {
    color: var(--white);

    font-size: 16px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 1px;
}


.brand-text strong span {
    display: block;
    color: var(--gold-300);
}


.brand-text small {
    margin-top: 4px;

    color: rgba(255,255,255,0.58);

    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ============================================================
   08. MAIN NAV
   ============================================================ */

.main-nav {
    display: flex;
    align-items: center;
    gap: 27px;

    margin-left: auto;
}


.nav-link {
    position: relative;

    padding: 33px 0;

    color: rgba(255,255,255,0.82);

    font-size: 13px;
    font-weight: 600;

    transition: var(--transition);
}


.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;

    width: 0;
    height: 2px;

    margin-inline: auto;

    background: var(--gold-400);

    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: var(--white);
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ============================================================
   09. NAV ACTIONS
   ============================================================ */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}


.nav-call,
.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


.nav-call {
    gap: 8px;

    min-height: 43px;
    padding: 0 17px;

    color: var(--navy-950);

    background: var(--gold-400);

    border-radius: 5px;

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}


.nav-call:hover {
    color: var(--navy-950);
    background: var(--gold-300);

    transform: translateY(-2px);
}


.nav-whatsapp {
    width: 43px;
    height: 43px;

    color: var(--white);

    background: var(--success);

    border-radius: 5px;

    font-size: 18px;

    transition: var(--transition);
}


.nav-whatsapp:hover {
    transform: translateY(-2px) scale(1.03);
}


/* ============================================================
   10. MOBILE MENU BUTTON
   ============================================================ */

.mobile-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
}


.mobile-menu-toggle span {
    width: 21px;
    height: 2px;

    background: var(--white);

    transition: var(--transition);
}


.mobile-menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}


.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.mobile-menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* ============================================================
   11. HERO
   ============================================================ */

.hero {
    position: relative;

    min-height: 820px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            var(--navy-950),
            var(--navy-800)
        );
}


.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;

    overflow: hidden;
}


.hero-video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.58;

    transform: scale(1.03);
}


.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(5,11,24,0.95) 0%,
            rgba(7,17,38,0.82) 45%,
            rgba(7,17,38,0.56) 100%
        );
}


.hero::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(228,191,82,0.13),
            transparent 35%
        );
}


.hero-container {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(280px, 0.55fr);

    align-items: center;
    gap: 80px;

    padding-top: 110px;
}


.hero-content {
    max-width: 790px;
}


.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;
    padding: 8px 14px;

    color: var(--gold-300);

    background: rgba(228,191,82,0.09);

    border: 1px solid rgba(228,191,82,0.25);
    border-radius: 999px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.hero-content h1 {
    max-width: 820px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(54px, 7vw, 88px);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -1.5px;
}


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


.hero-description {
    max-width: 650px;

    margin-top: 28px;

    color: rgba(255,255,255,0.72);

    font-size: 16px;
    line-height: 1.85;
}


.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;

    margin-top: 34px;
}


/* ============================================================
   12. BUTTONS
   ============================================================ */

.btn {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    padding: 0 24px;

    border: 1px solid transparent;
    border-radius: 5px;

    font-size: 13px;
    font-weight: 800;

    transition: var(--transition);
}


.btn i {
    transition: transform 0.3s ease;
}


.btn:hover i {
    transform: translateX(4px);
}


.btn-primary {
    color: var(--navy-950);

    background:
        linear-gradient(
            135deg,
            var(--gold-300),
            var(--gold-500)
        );

    box-shadow:
        0 12px 25px rgba(207,166,58,0.18);
}


.btn-primary:hover {
    color: var(--navy-950);

    transform: translateY(-3px);

    box-shadow:
        0 18px 35px rgba(207,166,58,0.27);
}


.btn-outline {
    color: var(--white);

    background: rgba(255,255,255,0.04);

    border-color: rgba(255,255,255,0.28);

    backdrop-filter: blur(10px);
}


.btn-outline:hover {
    color: var(--navy-950);

    background: var(--white);

    border-color: var(--white);

    transform: translateY(-3px);
}


.btn-light {
    color: var(--navy-900);

    background: var(--white);
}


.btn-light:hover {
    color: var(--navy-900);

    background: var(--gold-100);

    transform: translateY(-3px);
}


.btn-whatsapp {
    color: var(--white);

    background: var(--success);
}


.btn-whatsapp:hover {
    color: var(--white);

    background: #20bd5a;

    transform: translateY(-3px);
}


/* ============================================================
   13. HERO TRUST
   ============================================================ */

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;

    margin-top: 35px;
}


.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,0.63);

    font-size: 11px;
    font-weight: 600;
}


.trust-item i {
    color: var(--gold-400);
    font-size: 13px;
}


/* ============================================================
   14. HERO SIDE CARD
   ============================================================ */

.hero-card {
    align-self: center;

    max-width: 340px;

    padding: 32px;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.12),
            rgba(255,255,255,0.035)
        );

    border:
        1px solid
        rgba(255,255,255,0.17);

    border-radius: var(--radius-lg);

    backdrop-filter: blur(16px);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.18);
}


.hero-card-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    color: var(--gold-300);

    background: rgba(228,191,82,0.11);

    border:
        1px solid
        rgba(228,191,82,0.24);

    border-radius: 50%;

    font-size: 20px;
}


.hero-card > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold-300);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.hero-card strong {
    display: block;

    font-family: var(--heading-font);
    font-size: 34px;
    line-height: 1.05;
}


.hero-card p {
    margin-top: 15px;

    color: rgba(255,255,255,0.62);

    font-size: 13px;
    line-height: 1.7;
}


.hero-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: var(--gold-300);

    font-size: 12px;
    font-weight: 800;
}


.hero-card-link i {
    transition: var(--transition);
}


.hero-card-link:hover i {
    transform: translateX(5px);
}


/* ============================================================
   15. HERO DECORATION
   ============================================================ */

.hero-decoration {
    position: absolute;
    z-index: 2;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(228,191,82,0.1);

    border-radius: 50%;
}


.hero-decoration-one {
    right: -120px;
    top: 20%;

    box-shadow:
        0 0 0 50px rgba(228,191,82,0.025),
        0 0 0 100px rgba(228,191,82,0.015);
}


.hero-decoration-two {
    left: -250px;
    bottom: -200px;
}


/* ============================================================
   16. HERO BOTTOM
   ============================================================ */

.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;

    padding: 20px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.08);
}


.hero-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.hero-scroll,
.hero-location {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255,255,255,0.5);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.hero-scroll i,
.hero-location i {
    color: var(--gold-400);
}


/* ============================================================
   17. QUICK SERVICES
   ============================================================ */

.quick-services {
    position: relative;
    z-index: 10;

    margin-top: -1px;

    background: var(--white);

    box-shadow:
        0 10px 35px rgba(8,18,40,0.08);
}


.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.quick-service {
    min-height: 105px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px 25px;

    border-right:
        1px solid
        var(--border);

    transition: var(--transition);
}


.quick-service:last-child {
    border-right: 0;
}


.quick-service:hover {
    background: var(--off-white);
}


.quick-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;

    font-size: 18px;
}


.quick-service strong {
    display: block;

    color: var(--navy-900);

    font-size: 12px;
    font-weight: 800;
}


.quick-service small {
    display: block;

    margin-top: 2px;

    color: var(--text-muted);

    font-size: 10px;
}


/* ============================================================
   18. ABOUT
   ============================================================ */

.about-section {
    background: var(--white);
}


.about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;
    gap: 90px;
}


.about-image-wrap {
    position: relative;

    padding-right: 25px;
    padding-bottom: 25px;
}


.about-image-frame {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    background: var(--navy-900);

    border-radius: 4px;

    box-shadow: var(--shadow-lg);
}


.about-image-frame::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(5,11,24,0.45)
        );
}


.about-image-frame img {
    width: 100%;
    height: 100%;

    min-height: 560px;

    object-fit: cover;

    transition:
        transform 0.8s ease;
}


.about-image-wrap:hover .about-image-frame img {
    transform: scale(1.04);
}


.experience-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;

    min-width: 190px;

    padding: 20px 24px;

    color: var(--navy-900);

    background: var(--gold-400);

    box-shadow: var(--shadow);

    border-radius: 3px;
}


.experience-card strong {
    display: block;

    font-family: var(--heading-font);
    font-size: 26px;
    line-height: 1;
}


.experience-card span {
    display: block;

    margin-top: 5px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.gold-corner {
    position: absolute;
    left: -13px;
    top: 25px;

    width: 80px;
    height: 80px;

    border-left: 3px solid var(--gold-400);
    border-top: 3px solid var(--gold-400);

    z-index: 2;
}


.about-content .lead {
    color: var(--text);

    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}


.about-content > p:not(.lead) {
    margin-top: 15px;

    color: var(--text-light);

    font-size: 14px;
}


.about-points {
    display: grid;
    gap: 18px;

    margin-top: 30px;
}


.about-point {
    display: flex;
    gap: 14px;
}


.about-point > span {
    width: 29px;
    height: 29px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    margin-top: 3px;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;

    font-size: 11px;
}


.about-point strong {
    display: block;

    color: var(--navy-900);

    font-size: 13px;
}


.about-point p {
    margin-top: 3px;

    color: var(--text-light);

    font-size: 12px;
}


.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: 30px;

    color: var(--navy-800);

    font-size: 12px;
    font-weight: 800;

    border-bottom: 1px solid var(--gold-400);
}


.text-link i {
    color: var(--gold-600);

    transition: var(--transition);
}


.text-link:hover i {
    transform: translateX(5px);
}


/* ============================================================
   19. STATS
   ============================================================ */

.stats-section {
    padding: 0;

    background: var(--navy-900);
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}


.stat-card {
    min-height: 190px;

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

    padding: 30px;

    text-align: center;

    border-right:
        1px solid
        rgba(255,255,255,0.08);
}


.stat-card:last-child {
    border-right: 0;
}


.stat-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 13px;

    color: var(--gold-300);

    background: rgba(228,191,82,0.08);

    border:
        1px solid
        rgba(228,191,82,0.16);

    border-radius: 50%;
}


.stat-card strong {
    color: var(--white);

    font-family: var(--heading-font);
    font-size: 33px;
    line-height: 1;
}


.stat-card > span {
    margin-top: 5px;

    color: rgba(255,255,255,0.5);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ============================================================
   20. PRACTICE AREAS
   ============================================================ */

.practice-section {
    background: var(--off-white);
}


.practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.practice-card {
    position: relative;

    min-height: 320px;

    padding: 35px;

    overflow: hidden;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 4px 20px rgba(8,18,40,0.035);

    transition: var(--transition);
}


.practice-card::before {
    content: "";

    position: absolute;
    left: 0;
    top: 0;

    width: 3px;
    height: 0;

    background: var(--gold-400);

    transition: var(--transition);
}


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

    border-color:
        rgba(207,166,58,0.35);

    box-shadow: var(--shadow);
}


.practice-card:hover::before {
    height: 100%;
}


.practice-number {
    position: absolute;
    top: 20px;
    right: 25px;

    color: #edf0f4;

    font-family: var(--heading-font);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
}


.practice-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 24px;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;

    font-size: 20px;

    transition: var(--transition);
}


.practice-card:hover .practice-icon {
    color: var(--navy-900);

    background: var(--gold-400);

    transform: rotate(-5deg);
}


.practice-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 10px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.05;
}


.practice-card p {
    position: relative;
    z-index: 2;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.7;
}


.practice-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: var(--navy-800);

    font-size: 11px;
    font-weight: 800;
}


.practice-card a i {
    color: var(--gold-600);

    transition: var(--transition);
}


.practice-card a:hover i {
    transform: translateX(5px);
}


/* ============================================================
   21. CTA STRIP
   ============================================================ */

.cta-strip {
    background:
        linear-gradient(
            110deg,
            var(--navy-900),
            var(--navy-700)
        );
}


.cta-strip-inner {
    min-height: 130px;

    display: flex;
    align-items: center;
    gap: 22px;
}


.cta-strip-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--gold-300);

    background:
        rgba(228,191,82,0.1);

    border:
        1px solid
        rgba(228,191,82,0.2);

    border-radius: 50%;

    font-size: 20px;
}


.cta-strip-content {
    margin-right: auto;
}


.cta-strip-content span {
    display: block;

    color: rgba(255,255,255,0.5);

    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.cta-strip-content strong {
    display: block;

    margin-top: 3px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: 31px;
    line-height: 1;
}


/* ============================================================
   22. COURTS
   ============================================================ */

.courts-section {
    background: var(--white);
}


.courts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.court-card {
    padding: 34px;

    background: var(--off-white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}


.court-card:hover {
    transform: translateY(-6px);

    background: var(--white);

    border-color:
        rgba(207,166,58,0.4);

    box-shadow: var(--shadow);
}


.court-card.featured {
    background:
        linear-gradient(
            145deg,
            var(--navy-900),
            var(--navy-700)
        );

    border-color:
        rgba(228,191,82,0.25);
}


.court-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 25px;
}


.court-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;
}


.court-tag {
    padding: 6px 10px;

    color: var(--gold-700);

    background: var(--gold-100);

    border-radius: 999px;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.court-card h3 {
    margin-bottom: 10px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 31px;
    line-height: 1.05;
}


.court-card.featured h3 {
    color: var(--white);
}


.court-card p {
    color: var(--text-light);

    font-size: 13px;
}


.court-card.featured p {
    color: rgba(255,255,255,0.62);
}


.court-card ul {
    display: grid;
    gap: 9px;

    margin-top: 20px;
}


.court-card li {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--text);

    font-size: 11px;
    font-weight: 600;
}


.court-card.featured li {
    color: rgba(255,255,255,0.72);
}


.court-card li i {
    color: var(--gold-500);
    font-size: 10px;
}


.court-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 25px;

    color: var(--navy-800);

    font-size: 11px;
    font-weight: 800;
}


.court-card.featured .court-link {
    color: var(--gold-300);
}


.court-link i {
    transition: var(--transition);
}


.court-link:hover i {
    transform: translateX(5px);
}


/* ============================================================
   23. DWARKA DARK SECTION
   ============================================================ */

.dark-section {
    position: relative;

    overflow: hidden;

    color: var(--white);

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(228,191,82,0.09),
            transparent 30%
        ),
        var(--navy-900);
}


.dark-section::after {
    content: "";

    position: absolute;
    right: -200px;
    bottom: -250px;

    width: 500px;
    height: 500px;

    border:
        1px solid
        rgba(228,191,82,0.08);

    border-radius: 50%;
}


.dwarka-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(0, 0.9fr);

    align-items: center;
    gap: 90px;
}


.dwarka-content > p {
    max-width: 650px;

    margin-top: 15px;

    color: rgba(255,255,255,0.62);

    font-size: 14px;
}


.dwarka-details {
    display: grid;
    gap: 17px;

    margin: 30px 0;
}


.dwarka-detail {
    display: flex;
    align-items: center;
    gap: 14px;
}


.dwarka-detail > i {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--gold-300);

    background: rgba(228,191,82,0.08);

    border:
        1px solid
        rgba(228,191,82,0.15);

    border-radius: 50%;
}


.dwarka-detail div {
    display: flex;
    flex-direction: column;
}


.dwarka-detail strong {
    color: rgba(255,255,255,0.48);

    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.dwarka-detail span,
.dwarka-detail a {
    color: var(--white);

    font-size: 13px;
    font-weight: 600;
}


.dwarka-detail a:hover {
    color: var(--gold-300);
}


/* ============================================================
   24. DWARKA VISUAL
   ============================================================ */

.dwarka-visual {
    min-height: 430px;

    display: grid;
    place-items: center;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.06),
            rgba(255,255,255,0.015)
        );

    border:
        1px solid
        rgba(255,255,255,0.1);

    border-radius: var(--radius-lg);
}


.court-building-card {
    width: min(100%, 340px);

    padding: 45px 35px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #11244a,
            #09152f
        );

    border:
        1px solid
        rgba(228,191,82,0.22);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.25);

    border-radius: 8px;
}


.court-building-icon {
    width: 90px;
    height: 90px;

    display: grid;
    place-items: center;

    margin: 0 auto 25px;

    color: var(--gold-300);

    border:
        1px solid
        rgba(228,191,82,0.3);

    border-radius: 50%;

    font-size: 35px;
}


.court-building-card > span {
    display: block;

    color: var(--gold-300);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
}


.court-building-card > strong {
    display: block;

    margin-top: 4px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: 37px;
    line-height: 1;
}


.court-building-card > small {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,0.45);

    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.court-building-line {
    width: 55px;
    height: 1px;

    margin: 25px auto;

    background: var(--gold-400);
}


.court-building-card p {
    color: rgba(255,255,255,0.55);

    font-size: 12px;
    line-height: 1.7;
}


/* ============================================================
   25. DELHI COURTS
   ============================================================ */

.delhi-courts-section {
    background: var(--off-white);
}


.delhi-courts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


.delhi-court-item {
    padding: 30px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}


.delhi-court-item:hover {
    transform: translateY(-6px);

    border-color:
        rgba(207,166,58,0.35);

    box-shadow: var(--shadow);
}


.delhi-court-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;
}


.delhi-court-item h3 {
    margin-bottom: 9px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 25px;
    line-height: 1.05;
}


.delhi-court-item p {
    color: var(--text-light);

    font-size: 12px;
    line-height: 1.7;
}


/* ============================================================
   26. PROCESS
   ============================================================ */

.process-section {
    background: var(--white);
}


.process-grid {
    display: grid;
    grid-template-columns:
        1fr 35px
        1fr 35px
        1fr 35px
        1fr;

    align-items: center;
}


.process-card {
    position: relative;

    padding: 30px 20px;

    text-align: center;
}


.process-number {
    position: absolute;
    top: 0;
    left: 50%;

    transform: translateX(-50%);

    color: #eef0f3;

    font-family: var(--heading-font);
    font-size: 60px;
    font-weight: 700;

    line-height: 1;
}


.process-icon {
    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin: 28px auto 18px;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;

    font-size: 21px;
}


.process-card h3 {
    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 26px;
}


.process-card p {
    margin-top: 7px;

    color: var(--text-light);

    font-size: 11px;
    line-height: 1.65;
}


.process-connector {
    color: var(--gold-400);

    text-align: center;
}


/* ============================================================
   27. RESOURCES
   ============================================================ */

.resources-section {
    background: var(--off-white);
}


.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


.resource-card {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: var(--radius);

    transition: var(--transition);
}


.resource-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);
}


.resource-image {
    min-height: 190px;

    display: grid;
    place-items: center;

    color: var(--gold-300);

    background:
        linear-gradient(
            135deg,
            var(--navy-900),
            var(--navy-700)
        );

    font-size: 48px;
}


.resource-image-two {
    background:
        linear-gradient(
            135deg,
            #10264f,
            #162f61
        );
}


.resource-image-three {
    background:
        linear-gradient(
            135deg,
            #0b1935,
            #233e73
        );
}


.resource-content {
    padding: 27px;
}


.resource-content > span {
    color: var(--gold-600);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.resource-content h3 {
    margin-top: 8px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 28px;
    line-height: 1.08;
}


.resource-content p {
    margin-top: 10px;

    color: var(--text-light);

    font-size: 12px;
}


.resource-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 20px;

    color: var(--navy-800);

    font-size: 11px;
    font-weight: 800;
}


.resource-content a i {
    color: var(--gold-600);

    transition: var(--transition);
}


.resource-content a:hover i {
    transform: translateX(5px);
}


/* ============================================================
   28. WHY SECTION
   ============================================================ */

.why-section {
    background: var(--white);
}


.why-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.8fr);

    align-items: center;
    gap: 100px;
}


.why-content > p {
    max-width: 650px;

    color: var(--text-light);

    font-size: 14px;
}


.why-list {
    display: grid;
    gap: 24px;

    margin-top: 30px;
}


.why-item {
    display: flex;
    gap: 15px;
}


.why-item-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;
}


.why-item h3 {
    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 1.1;
}


.why-item p {
    margin-top: 4px;

    color: var(--text-light);

    font-size: 12px;
}


.why-visual {
    position: relative;

    min-height: 470px;

    display: grid;
    place-items: center;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            var(--navy-900),
            var(--navy-700)
        );

    border-radius: var(--radius-lg);

    overflow: hidden;
}


.why-visual::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border:
        1px solid
        rgba(228,191,82,0.15);

    border-radius: 50%;
}


.why-visual::after {
    content: "";

    position: absolute;

    width: 270px;
    height: 270px;

    border:
        1px solid
        rgba(228,191,82,0.1);

    border-radius: 50%;
}


.why-quote-card {
    position: relative;
    z-index: 2;

    max-width: 350px;

    padding: 40px;

    text-align: center;

    background:
        rgba(255,255,255,0.06);

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: var(--radius);

    backdrop-filter: blur(10px);
}


.why-quote-card > i {
    color: var(--gold-300);

    font-size: 30px;
}


.why-quote-card blockquote {
    margin-top: 20px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
}


.quote-line {
    width: 45px;
    height: 1px;

    margin: 25px auto 15px;

    background: var(--gold-400);
}


.why-quote-card > span {
    color: var(--gold-300);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* ============================================================
   29. FAQ
   ============================================================ */

.faq-section {
    background: var(--off-white);
}


.faq-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, 0.75fr)
        minmax(0, 1.25fr);

    align-items: start;
    gap: 90px;
}


.faq-intro {
    position: sticky;
    top: 110px;
}


.faq-intro > p {
    max-width: 480px;

    color: var(--text-light);

    font-size: 14px;
}


.faq-intro .btn {
    margin-top: 25px;
}


.faq-list {
    display: grid;
    gap: 10px;
}


.faq-item {
    overflow: hidden;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius: 7px;

    transition: var(--transition);
}


.faq-item.active {
    border-color:
        rgba(207,166,58,0.35);

    box-shadow:
        0 8px 25px rgba(8,18,40,0.06);
}


.faq-question {
    width: 100%;
    min-height: 67px;

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

    gap: 20px;

    padding: 0 22px;

    color: var(--navy-900);

    background: transparent;

    text-align: left;

    font-size: 13px;
    font-weight: 700;
}


.faq-question i {
    color: var(--gold-600);

    transition: transform 0.3s ease;
}


.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


.faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}


.faq-answer > p {
    overflow: hidden;

    padding: 0 22px;

    color: var(--text-light);

    font-size: 12px;
    line-height: 1.8;
}


.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}


.faq-item.active .faq-answer > p {
    padding-bottom: 22px;
}


/* ============================================================
   30. CONTACT
   ============================================================ */

.contact-section {
    position: relative;

    color: var(--white);

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(228,191,82,0.08),
            transparent 30%
        ),
        var(--navy-900);

    overflow: hidden;
}


.contact-section::before {
    content: "";

    position: absolute;
    top: -180px;
    right: -180px;

    width: 450px;
    height: 450px;

    border:
        1px solid
        rgba(228,191,82,0.08);

    border-radius: 50%;
}


.contact-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        minmax(280px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 70px;
}


.contact-info-header h3 {
    color: var(--white);

    font-family: var(--heading-font);
    font-size: 36px;
    line-height: 1.05;
}


.contact-info-header p {
    margin-top: 13px;

    color: rgba(255,255,255,0.55);

    font-size: 13px;
}


.contact-items {
    display: grid;
    gap: 10px;

    margin-top: 30px;
}


.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 13px;

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 7px;

    transition: var(--transition);
}


.contact-item:hover {
    background:
        rgba(255,255,255,0.04);

    border-color:
        rgba(228,191,82,0.2);

    transform: translateX(4px);
}


.contact-item-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--gold-300);

    background:
        rgba(228,191,82,0.08);

    border-radius: 50%;
}


.contact-item span:last-child {
    display: flex;
    flex-direction: column;
}


.contact-item small {
    color: rgba(255,255,255,0.38);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.contact-item strong {
    color: var(--white);

    font-size: 12px;
}


.contact-note {
    display: flex;
    gap: 10px;

    margin-top: 25px;
    padding: 15px;

    background:
        rgba(255,255,255,0.035);

    border-left:
        2px solid
        var(--gold-400);
}


.contact-note i {
    color: var(--gold-300);

    margin-top: 4px;
}


.contact-note p {
    color: rgba(255,255,255,0.45);

    font-size: 10px;
    line-height: 1.6;
}


/* ============================================================
   31. CONTACT FORM
   ============================================================ */

.contact-form-wrapper {
    padding: 35px;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 70px rgba(0,0,0,0.2);
}


.contact-form {
    color: var(--text);
}


.form-heading {
    margin-bottom: 25px;
}


.form-heading > span {
    color: var(--gold-600);

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.form-heading h3 {
    margin-top: 4px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 33px;
    line-height: 1.05;
}


.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}


.form-group {
    margin-bottom: 17px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    color: var(--navy-900);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}


.form-group label span {
    color: var(--danger);
}


.input-wrap {
    position: relative;
}


.input-wrap > i {
    position: absolute;
    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--gold-600);

    font-size: 12px;

    pointer-events: none;
}


.input-wrap input,
.input-wrap textarea,
.input-wrap select {
    width: 100%;

    color: var(--navy-900);

    background: #fbfbfa;

    border:
        1px solid
        var(--border);

    border-radius: 5px;

    outline: none;

    font-size: 12px;

    transition: var(--transition);
}


.input-wrap input,
.input-wrap select {
    height: 48px;

    padding: 0 14px 0 39px;
}


.input-wrap textarea {
    min-height: 130px;

    padding: 13px 14px 13px 39px;

    resize: vertical;
}


.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: #a2a9b5;
}


.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus {
    background: var(--white);

    border-color: var(--gold-400);

    box-shadow:
        0 0 0 3px
        rgba(228,191,82,0.09);
}


.textarea-wrap > i {
    top: 17px;

    transform: none;
}


.select-wrap select {
    appearance: none;

    cursor: pointer;
}


.select-arrow {
    left: auto !important;
    right: 15px;

    color: var(--text-muted) !important;
}


.textarea-bottom {
    display: flex;
    justify-content: space-between;

    min-height: 18px;
}


#characterCount {
    color: var(--text-muted);

    font-size: 9px;
}


.form-error {
    display: block;

    min-height: 0;

    margin-top: 4px;

    color: var(--danger);

    font-size: 9px;
}


.input-error {
    border-color:
        var(--danger) !important;

    box-shadow:
        0 0 0 3px
        rgba(217,75,75,0.07) !important;
}


/* ============================================================
   32. FORM CONSENT
   ============================================================ */

.form-consent {
    margin-top: 3px;
}


.form-consent label {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 10px;

    cursor: pointer;
}


.form-consent input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}


.custom-checkbox {
    position: relative;

    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-top: 2px;

    background: var(--white);

    border:
        1px solid
        #ccd2dc;

    border-radius: 3px;

    transition: var(--transition);
}


.form-consent input:checked + .custom-checkbox {
    background: var(--gold-500);

    border-color: var(--gold-500);
}


.form-consent input:checked + .custom-checkbox::after {
    content: "";

    position: absolute;
    left: 5px;
    top: 2px;

    width: 5px;
    height: 9px;

    border:
        solid
        var(--white);

    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}


.consent-text {
    color: var(--text-light);

    font-size: 9px;
    line-height: 1.55;
}


.form-submit {
    width: 100%;

    margin-top: 18px;
}


.form-status {
    min-height: 20px;

    margin-top: 12px;

    text-align: center;

    font-size: 11px;
    font-weight: 600;
}


.form-status.success {
    color: #21894a;
}


.form-status.error {
    color: var(--danger);
}


/* ============================================================
   33. MAP
   ============================================================ */

.map-section {
    position: relative;

    height: 500px;

    background: #dfe5ea;
}


.map-container {
    position: relative;

    width: 100%;
    height: 100%;
}


.map-container iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


.map-overlay-card {
    position: absolute;
    left: 30px;
    bottom: 30px;

    min-width: 320px;

    display: flex;
    align-items: center;
    gap: 13px;

    padding: 18px 20px;

    background:
        rgba(255,255,255,0.96);

    border:
        1px solid
        rgba(8,18,40,0.08);

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(8,18,40,0.15);
}


.map-card-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: var(--gold-600);

    background: var(--gold-100);

    border-radius: 50%;
}


.map-overlay-card > div:nth-child(2) {
    display: flex;
    flex-direction: column;

    margin-right: auto;
}


.map-overlay-card span {
    color: var(--text-muted);

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.map-overlay-card strong {
    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 23px;
    line-height: 1;
}


.map-overlay-card > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--navy-800);

    font-size: 9px;
    font-weight: 800;
}


.map-overlay-card > a:hover {
    color: var(--gold-600);
}


/* ============================================================
   34. FINAL CTA
   ============================================================ */

.final-cta {
    position: relative;

    padding: 90px 0;

    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            var(--navy-950),
            var(--navy-800)
        );
}


.final-cta::before {
    content: "";

    position: absolute;
    right: -160px;
    top: -160px;

    width: 450px;
    height: 450px;

    border:
        1px solid
        rgba(228,191,82,0.1);

    border-radius: 50%;
}


.final-cta-inner {
    position: relative;
    z-index: 2;

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

    gap: 40px;
}


.final-cta-content h2 {
    max-width: 700px;

    margin-top: 7px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1;
}


.final-cta-content p {
    margin-top: 13px;

    color: rgba(255,255,255,0.55);

    font-size: 14px;
}


.final-cta-buttons {
    display: flex;
    gap: 10px;

    flex-shrink: 0;
}


/* ============================================================
   35. FOOTER
   ============================================================ */

.site-footer {
    color: rgba(255,255,255,0.55);

    background: var(--navy-950);
}


.footer-main {
    display: grid;
    grid-template-columns:
        1.4fr
        0.7fr
        0.9fr
        1fr;

    gap: 55px;

    padding-top: 80px;
    padding-bottom: 65px;
}


.footer-brand {
    display: inline-block;
}


.footer-brand img {
    width: 145px;
    height: auto;

    object-fit: contain;
}


.footer-brand-column > p {
    max-width: 330px;

    margin-top: 18px;

    color: rgba(255,255,255,0.45);

    font-size: 11px;
    line-height: 1.8;
}


.footer-socials {
    display: flex;
    gap: 8px;

    margin-top: 22px;
}


.footer-socials a {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    color: rgba(255,255,255,0.65);

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid
        rgba(255,255,255,0.08);

    border-radius: 4px;

    font-size: 12px;

    transition: var(--transition);
}


.footer-socials a:hover {
    color: var(--navy-950);

    background: var(--gold-400);

    border-color: var(--gold-400);

    transform: translateY(-3px);
}


.footer-column h3 {
    margin-bottom: 22px;

    color: var(--white);

    font-family: var(--heading-font);
    font-size: 23px;
}


.footer-column > ul {
    display: grid;
    gap: 9px;
}


.footer-column li {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    font-size: 11px;
}


.footer-column li a {
    transition: var(--transition);
}


.footer-column li a:hover {
    color: var(--gold-300);

    transform: translateX(3px);
}


.footer-contact-list li i {
    width: 16px;

    margin-top: 3px;

    color: var(--gold-400);

    text-align: center;
}


.footer-bottom {
    border-top:
        1px solid
        rgba(255,255,255,0.07);
}


.footer-bottom-inner {
    min-height: 70px;

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

    gap: 20px;
}


.footer-bottom p {
    color: rgba(255,255,255,0.35);

    font-size: 10px;
}


.footer-legal-links {
    display: flex;
    gap: 18px;
}


.footer-legal-links a {
    color: rgba(255,255,255,0.42);

    font-size: 10px;

    transition: var(--transition);
}


.footer-legal-links a:hover {
    color: var(--gold-300);
}


/* ============================================================
   36. FLOATING WHATSAPP
   ============================================================ */

.floating-whatsapp,
.floating-call {
    position: fixed;
    right: 22px;
    z-index: 8000;

    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    color: var(--white);

    border-radius: 50%;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.2);

    transition: var(--transition);
}


.floating-whatsapp {
    bottom: 92px;

    background: var(--success);

    font-size: 25px;
}


.floating-call {
    bottom: 25px;

    background: var(--navy-800);

    border:
        1px solid
        rgba(228,191,82,0.35);

    font-size: 17px;
}


.floating-whatsapp:hover,
.floating-call:hover {
    color: var(--white);

    transform: translateY(-5px) scale(1.04);
}


.whatsapp-tooltip,
.call-tooltip {
    position: absolute;
    right: 67px;

    padding: 7px 10px;

    white-space: nowrap;

    color: var(--white);

    background: var(--navy-950);

    border-radius: 4px;

    opacity: 0;
    visibility: hidden;

    font-size: 9px;
    font-weight: 700;

    transition: var(--transition);
}


.floating-whatsapp:hover .whatsapp-tooltip,
.floating-call:hover .call-tooltip {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   37. BACK TO TOP
   ============================================================ */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 160px;
    z-index: 7990;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    color: var(--navy-950);

    background: var(--gold-400);

    border-radius: 50%;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.16);

    transition: var(--transition);
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--gold-300);

    transform:
        translateY(-4px);
}


/* ============================================================
   38. VIDEO CONTROL
   ============================================================ */

.video-control {
    position: absolute;
    right: 25px;
    bottom: 80px;
    z-index: 20;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--white);

    background:
        rgba(0,0,0,0.35);

    border:
        1px solid
        rgba(255,255,255,0.2);

    border-radius: 50%;

    font-size: 10px;

    backdrop-filter: blur(5px);

    transition: var(--transition);
}


.video-control:hover {
    color: var(--navy-950);

    background: var(--gold-400);

    border-color: var(--gold-400);
}


/* ============================================================
   39. LEGAL MODALS
   ============================================================ */

.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 99990;

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

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.legal-modal.open {
    opacity: 1;
    visibility: visible;
}


.legal-modal-overlay {
    position: absolute;
    inset: 0;

    background:
        rgba(2,6,15,0.78);

    backdrop-filter: blur(7px);
}


.legal-modal-content {
    position: relative;
    z-index: 2;

    width: min(100%, 700px);
    max-height: 85vh;

    overflow-y: auto;

    padding: 45px;

    color: var(--text);

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow:
        0 35px 100px rgba(0,0,0,0.35);

    transform:
        translateY(20px)
        scale(0.97);

    transition:
        transform 0.35s
        cubic-bezier(0.22,1,0.36,1);
}


.legal-modal.open .legal-modal-content {
    transform:
        translateY(0)
        scale(1);
}


.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    color: var(--navy-900);

    background: var(--light);

    border-radius: 50%;

    transition: var(--transition);
}


.modal-close:hover {
    color: var(--white);

    background: var(--navy-900);

    transform: rotate(90deg);
}


.legal-modal-content h2 {
    margin-bottom: 18px;

    color: var(--navy-900);

    font-family: var(--heading-font);
    font-size: 42px;
    line-height: 1;
}


.legal-modal-content p {
    margin-top: 15px;

    color: var(--text-light);

    font-size: 13px;
    line-height: 1.8;
}


/* ============================================================
   40. SITE NOTICE
   ============================================================ */

.site-notice {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 7000;

    max-width: 650px;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px);

    transition: var(--transition);
}


.site-notice.show {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);
}


.site-notice-content {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 15px 18px;

    color: rgba(255,255,255,0.8);

    background:
        rgba(7,17,38,0.96);

    border:
        1px solid
        rgba(228,191,82,0.2);

    border-radius: 7px;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.2);

    backdrop-filter: blur(10px);
}


.site-notice-content > i {
    color: var(--gold-300);
}


.site-notice-content p {
    flex: 1;

    font-size: 9px;
    line-height: 1.6;
}


.site-notice-content button {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    color: rgba(255,255,255,0.6);

    background:
        rgba(255,255,255,0.06);

    border-radius: 50%;
}


.site-notice-content button:hover {
    color: var(--white);

    background:
        rgba(255,255,255,0.12);
}


/* ============================================================
   41. REVEAL ANIMATION
   ============================================================ */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s
        cubic-bezier(0.22,1,0.36,1);
}


.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


.reveal:nth-child(2) {
    transition-delay: 0.08s;
}


.reveal:nth-child(3) {
    transition-delay: 0.16s;
}


.reveal:nth-child(4) {
    transition-delay: 0.24s;
}


/* ============================================================
   42. HERO INITIAL ANIMATION
   ============================================================ */

.hero-content,
.hero-card {
    animation:
        heroFadeUp 0.9s
        cubic-bezier(0.22,1,0.36,1)
        both;
}


.hero-card {
    animation-delay: 0.15s;
}


@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

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

}


/* ============================================================
   43. SCROLLBAR
   ============================================================ */

::-webkit-scrollbar {
    width: 9px;
}


::-webkit-scrollbar-track {
    background: #eef0f3;
}


::-webkit-scrollbar-thumb {
    background: var(--navy-700);

    border-radius: 20px;
}


::-webkit-scrollbar-thumb:hover {
    background: var(--gold-600);
}


/* ============================================================
   44. FOCUS ACCESSIBILITY
   ============================================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline:
        2px solid
        var(--gold-400);

    outline-offset: 3px;
}


/* ============================================================
   45. RESPONSIVE - LARGE TABLET
   ============================================================ */

@media (max-width: 1150px) {

    .container {
        width: min(
            calc(100% - 32px),
            1080px
        );
    }


    .main-nav {
        gap: 18px;
    }


    .nav-link {
        font-size: 12px;
    }


    .nav-actions {
        gap: 6px;
    }


    .nav-call {
        padding: 0 12px;
    }


    .hero-container {
        gap: 45px;
    }


    .about-grid,
    .dwarka-grid,
    .why-grid {
        gap: 55px;
    }


    .practice-card {
        padding: 28px;
    }


    .footer-main {
        gap: 30px;
    }

}


/* ============================================================
   46. RESPONSIVE - TABLET
   ============================================================ */

@media (max-width: 980px) {

    .topbar-right {
        display: none;
    }


    .topbar-left {
        width: 100%;
        justify-content: center;
    }


    .nav-container {
        min-height: 76px;
    }


    .site-header {
        top: 42px;
    }


    .site-header.scrolled {
        top: 0;
    }


    .main-nav {
        position: fixed;

        top: 118px;
        left: 16px;
        right: 16px;

        display: flex;
        align-items: stretch;
        flex-direction: column;

        gap: 0;

        max-height: 0;

        overflow: hidden;

        background:
            rgba(7,17,38,0.98);

        border:
            1px solid
            rgba(255,255,255,0.1);

        border-radius: 8px;

        box-shadow:
            0 25px 60px rgba(0,0,0,0.3);

        transition:
            max-height 0.4s
            cubic-bezier(0.22,1,0.36,1);
    }


    .site-header.scrolled .main-nav {
        top: 82px;
    }


    .main-nav.open {
        max-height: calc(100vh - 140px);

        overflow-y: auto;
    }


    .nav-link {
        width: 100%;

        padding: 16px 20px;

        border-bottom:
            1px solid
            rgba(255,255,255,0.06);
    }


    .nav-link:last-child {
        border-bottom: 0;
    }


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


    .nav-link.active {
        color: var(--gold-300);

        background:
            rgba(228,191,82,0.05);
    }


    .mobile-menu-toggle {
        display: flex;
    }


    .nav-actions {
        margin-left: auto;
    }


    .hero {
        min-height: 760px;
    }


    .hero-container {
        grid-template-columns: 1fr;

        padding-top: 130px;
        padding-bottom: 100px;
    }


    .hero-card {
        display: none;
    }


    .hero-content {
        max-width: 850px;
    }


    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .quick-service:nth-child(2) {
        border-right: 0;
    }


    .quick-service:nth-child(-n+2) {
        border-bottom:
            1px solid
            var(--border);
    }


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


    .about-image-wrap {
        max-width: 600px;

        margin-inline: auto;
    }


    .about-content {
        max-width: 800px;

        margin-inline: auto;
    }


    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .stat-card:nth-child(2) {
        border-right: 0;
    }


    .stat-card:nth-child(-n+2) {
        border-bottom:
            1px solid
            rgba(255,255,255,0.08);
    }


    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .courts-grid {
        grid-template-columns: 1fr 1fr;
    }


    .court-card:last-child {
        grid-column: span 2;
    }


    .dwarka-grid {
        grid-template-columns: 1fr;
    }


    .dwarka-visual {
        max-width: 600px;

        margin-inline: auto;

        width: 100%;
    }


    .delhi-courts-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 25px;
    }


    .process-connector {
        display: none;
    }


    .resources-grid {
        grid-template-columns: 1fr 1fr;
    }


    .resource-card:last-child {
        grid-column: span 2;

        max-width: 500px;

        margin-inline: auto;

        width: 100%;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .why-visual {
        max-width: 650px;

        margin-inline: auto;

        width: 100%;
    }


    .faq-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .faq-intro {
        position: static;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .contact-info {
        max-width: 700px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;
    }


    .footer-brand-column {
        grid-column: span 2;
    }


    .final-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* ============================================================
   47. RESPONSIVE - MOBILE LARGE
   ============================================================ */

@media (max-width: 700px) {

    body {
        font-size: 15px;
    }


    .container {
        width: min(
            calc(100% - 28px),
            600px
        );
    }


    .section {
        padding: 75px 0;
    }


    .topbar {
        display: none;
    }


    .site-header {
        top: 0;
    }


    .site-header.scrolled {
        top: 0;
    }


    .main-nav {
        top: 75px;
    }


    .site-header.scrolled .main-nav {
        top: 75px;
    }


    .brand-logo {
        width: 46px;
        height: 46px;
    }


    .brand-text strong {
        font-size: 13px;
    }


    .brand-text small {
        font-size: 7px;
    }


    .nav-call {
        display: none;
    }


    .nav-whatsapp {
        width: 39px;
        height: 39px;
    }


    .mobile-menu-toggle {
        width: 41px;
        height: 41px;
    }


    .hero {
        min-height: 720px;
    }


    .hero-container {
        padding-top: 90px;
        padding-bottom: 100px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5,11,24,0.92),
                rgba(7,17,38,0.82)
            );
    }


    .hero-content h1 {
        font-size: clamp(
            48px,
            15vw,
            70px
        );
    }


    .hero-description {
        font-size: 14px;
        line-height: 1.75;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-trust {
        display: grid;
        gap: 10px;
    }


    .hero-bottom-container {
        justify-content: center;
    }


    .hero-scroll {
        display: none;
    }


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


    .video-control {
        right: 14px;
        bottom: 70px;
    }


    .quick-services-grid {
        grid-template-columns: 1fr;
    }


    .quick-service {
        min-height: 90px;

        border-right: 0 !important;

        border-bottom:
            1px solid
            var(--border);
    }


    .quick-service:last-child {
        border-bottom: 0;
    }


    .section-title {
        font-size: 43px;
    }


    .section-header {
        margin-bottom: 38px;
    }


    .about-image-frame,
    .about-image-frame img {
        min-height: 420px;
    }


    .about-image-wrap {
        padding-right: 12px;
        padding-bottom: 18px;
    }


    .experience-card {
        min-width: 150px;

        padding: 15px 17px;
    }


    .experience-card strong {
        font-size: 22px;
    }


    .experience-card span {
        font-size: 8px;
    }


    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }


    .stat-card {
        min-height: 155px;

        padding: 20px 10px;
    }


    .stat-card strong {
        font-size: 27px;
    }


    .practice-grid {
        grid-template-columns: 1fr;
    }


    .practice-card {
        min-height: auto;

        padding: 28px;
    }


    .courts-grid {
        grid-template-columns: 1fr;
    }


    .court-card:last-child {
        grid-column: auto;
    }


    .delhi-courts-grid {
        grid-template-columns: 1fr;
    }


    .process-grid {
        grid-template-columns: 1fr;
    }


    .resources-grid {
        grid-template-columns: 1fr;
    }


    .resource-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    .why-visual {
        min-height: 400px;

        padding: 25px;
    }


    .why-quote-card {
        padding: 30px 22px;
    }


    .why-quote-card blockquote {
        font-size: 24px;
    }


    .contact-form-wrapper {
        padding: 25px 18px;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }


    .form-heading h3 {
        font-size: 29px;
    }


    .map-section {
        height: 430px;
    }


    .map-overlay-card {
        left: 14px;
        right: 14px;
        bottom: 14px;

        min-width: 0;

        padding: 14px;
    }


    .map-overlay-card strong {
        font-size: 20px;
    }


    .final-cta {
        padding: 70px 0;
    }


    .final-cta-buttons {
        width: 100%;
        flex-direction: column;
    }


    .final-cta-buttons .btn {
        width: 100%;
    }


    .footer-main {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-top: 60px;
        padding-bottom: 45px;
    }


    .footer-brand-column {
        grid-column: auto;
    }


    .footer-bottom-inner {
        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

        padding-top: 20px;
        padding-bottom: 20px;
    }


    .footer-legal-links {
        flex-wrap: wrap;

        gap: 10px 16px;
    }


    .floating-whatsapp,
    .floating-call {
        right: 14px;
    }


    .floating-whatsapp {
        bottom: 82px;
    }


    .floating-call {
        bottom: 18px;
    }


    .back-to-top {
        right: 14px;
        bottom: 145px;
    }


    .site-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }


    .site-notice-content {
        align-items: flex-start;
    }


    .legal-modal {
        padding: 15px;
    }


    .legal-modal-content {
        padding: 35px 22px;

        max-height: 90vh;
    }


    .legal-modal-content h2 {
        font-size: 35px;
    }

}


/* ============================================================
   48. RESPONSIVE - SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .container {
        width: calc(100% - 22px);
    }


    .brand-text {
        display: none;
    }


    .hero {
        min-height: 690px;
    }


    .hero-content h1 {
        font-size: 45px;

        letter-spacing: -0.7px;
    }


    .hero-description {
        font-size: 13px;
    }


    .eyebrow {
        font-size: 9px;

        padding: 7px 10px;
    }


    .btn {
        min-height: 50px;

        padding: 0 17px;

        font-size: 11px;
    }


    .hero-trust {
        gap: 7px;
    }


    .trust-item {
        font-size: 9px;
    }


    .section-title {
        font-size: 37px;
    }


    .about-image-frame,
    .about-image-frame img {
        min-height: 350px;
    }


    .experience-card {
        right: -2px;
    }


    .stats-grid {
        grid-template-columns: 1fr;
    }


    .stat-card {
        border-right: 0 !important;

        border-bottom:
            1px solid
            rgba(255,255,255,0.08);
    }


    .stat-card:last-child {
        border-bottom: 0;
    }


    .cta-strip-inner {
        flex-wrap: wrap;

        padding-top: 25px;
        padding-bottom: 25px;
    }


    .cta-strip-content strong {
        font-size: 25px;
    }


    .cta-strip-inner .btn {
        width: 100%;
    }


    .court-building-card {
        padding: 35px 20px;
    }


    .court-building-card > strong {
        font-size: 31px;
    }


    .contact-item strong {
        font-size: 10px;
    }


    .map-overlay-card {
        flex-wrap: wrap;
    }


    .map-overlay-card > a {
        width: 100%;

        padding-top: 8px;

        border-top:
            1px solid
            var(--border);
    }


    .final-cta-content h2 {
        font-size: 42px;
    }


    .floating-whatsapp,
    .floating-call {
        width: 50px;
        height: 50px;
    }


    .floating-whatsapp {
        font-size: 22px;
    }


    .floating-call {
        font-size: 15px;
    }


    .back-to-top {
        width: 38px;
        height: 38px;

        bottom: 135px;
    }

}


/* ============================================================
   49. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }


    .reveal {
        opacity: 1;
        transform: none;
    }

}


/* ============================================================
   50. PRINT
   ============================================================ */

@media print {

    .topbar,
    .site-header,
    .floating-whatsapp,
    .floating-call,
    .back-to-top,
    .video-control,
    .hero-video-wrapper,
    .site-notice,
    .preloader {
        display: none !important;
    }


    body {
        color: #000;

        background: #fff;
    }


    .hero {
        min-height: auto;

        padding: 50px 0;
    }


    .hero-overlay {
        display: none;
    }


    .hero-content h1,
    .section-title,
    .section-title span {
        color: #000;
    }


    .section {
        padding: 40px 0;
    }


    .practice-card,
    .court-card,
    .resource-card {
        break-inside: avoid;
    }

}


/* ============================================================
   END OF STYLE.CSS
   ============================================================ */