/* =========================================================
   PIN LEGAL GLOBAL - PREMIUM CONSULT WEBSITE CSS
   Clean, readable, developer-friendly format
========================================================= */

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --navy: #061126;
    --navy2: #071b3c;
    --navy3: #0d2d61;
    --gold: #d4af37;
    --gold2: #b98e1d;
    --gold3: #f6df8b;
    --cream: #fff8e6;
    --text: #101827;
    --muted: #647084;
    --bg: #f5f7fb;
    --line: #e5ebf4;
    --white: #ffffff;
    --shadow: 0 18px 50px rgba(6, 17, 38, .12);
    --shadow2: 0 30px 90px rgba(6, 17, 38, .28);
    --radius: 26px;
}

/* =========================================================
   BASE RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background:
        radial-gradient(circle at 8% 0%, rgba(212, 175, 55, .12), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #eef3fa 45%, #f8fafc 100%);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

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

.container {
    width: min(92%, 1200px);
    margin: auto;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: .1px;
    border: 1.5px solid transparent;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold2), var(--gold3) 52%, var(--gold));
    color: #121212;
    box-shadow: 0 15px 34px rgba(212, 175, 55, .28);
}

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .55), transparent);
    transform: skewX(-22deg);
    animation: buttonShine 5s infinite;
}

.btn-dark {
    background: linear-gradient(135deg, var(--navy), var(--navy3));
    color: #fff;
    box-shadow: 0 14px 34px rgba(6, 17, 38, .2);
}

.btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(246, 223, 139, .7);
}

@keyframes buttonShine {
    0% {
        left: -80%;
    }

    45%,
    100% {
        left: 135%;
    }
}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(6, 17, 38, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(212, 175, 55, .24);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 56px;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 23px;
}

.nav-menu > a,
.nav-dropdown > a {
    color: #eef4ff;
    font-size: 14px;
    font-weight: 800;
    transition: .2s ease;
}

.nav-menu > a:hover,
.nav-dropdown > a:hover {
    color: var(--gold3);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--navy);
    font-weight: 800;
    border-radius: 12px;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #fff8e6;
    color: #775600;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================================
   HERO SECTIONS
========================================================= */

.hero,
.service-hero,
.page-hero {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero,
.service-hero {
    min-height: 760px;
    padding: 88px 0 86px;
    background-image:
        linear-gradient(105deg, rgba(4, 12, 29, .96) 0%, rgba(7, 21, 46, .90) 45%, rgba(7, 21, 46, .54) 100%),
        url('https://img.pinlegalglobal.com/david-rodrigo-b7c17688-9481-466c-affb-6bc3ef305030.jpg');
}

.page-hero {
    min-height: 440px;
    padding: 92px 0;
    background-image:
        linear-gradient(105deg, rgba(4, 12, 29, .96) 0%, rgba(7, 21, 46, .90) 48%, rgba(7, 21, 46, .55) 100%),
        url('https://img.pinlegalglobal.com/david-rodrigo-b7c17688-9481-466c-affb-6bc3ef305030.jpg');
}

.hero::before,
.service-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, .20), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(246, 223, 139, .12), transparent 28%);
    animation: glowPulse 7s ease-in-out infinite;
    pointer-events: none;
}

.hero::after,
.service-hero::after,
.page-hero::after {
    content: "";
    position: absolute;
    left: -60%;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(246, 223, 139, .07) 40%, rgba(246, 223, 139, .21) 52%, rgba(246, 223, 139, .07) 64%, transparent 100%);
    transform: skewX(-21deg);
    animation: lightMove 9s linear infinite;
    pointer-events: none;
}

.skyline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 190px;
    opacity: .34;
    background:
        linear-gradient(to top, rgba(3, 10, 24, .96), rgba(3, 10, 24, 0)),
        repeating-linear-gradient(90deg, transparent 0 4%, rgba(246, 223, 139, .28) 4% 4.4%, transparent 4.4% 8%);
}

.lux-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(246, 223, 139, .22) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .12;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

@keyframes lightMove {
    0% {
        left: -60%;
    }

    100% {
        left: 125%;
    }
}

@keyframes glowPulse {
    0%,
    100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(212, 175, 55, .14);
    border: 1px solid rgba(246, 223, 139, .36);
    color: var(--gold3);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold3);
    box-shadow: 0 0 18px rgba(246, 223, 139, .75);
}

.hero h1,
.service-hero h1,
.page-hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 66px;
    line-height: 1.02;
    letter-spacing: -1.2px;
    max-width: 860px;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 58px;
}

.hero h1 span,
.service-hero h1 span,
.page-hero h1 span {
    color: var(--gold3);
}

.hero p,
.service-hero p,
.page-hero p {
    font-size: 19px;
    color: #e6edf8;
    max-width: 760px;
    margin-bottom: 18px;
}

.hero-proof {
    font-size: 15px !important;
    color: #f9e9ad !important;
    font-weight: 800;
    margin-bottom: 26px !important;
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.hero-points div {
    padding: 13px 15px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(246, 223, 139, .17);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    font-size: 15px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.availability {
    font-size: 13px;
    color: #dce6f5;
    margin-top: 11px;
}

/* =========================================================
   FORMS
========================================================= */

.form-box {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, .94);
    color: var(--text);
    border: 1px solid rgba(246, 223, 139, .34);
    border-radius: 30px;
    padding: 32px;
    box-shadow: var(--shadow2);
    backdrop-filter: blur(22px);
}

.form-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold2), var(--gold3), var(--gold));
}

.form-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff9e6;
    border: 1px solid rgba(212, 175, 55, .32);
    color: #7a5a00;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
    margin-bottom: 13px;
}

.form-box h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    font-size: 33px;
    line-height: 1.14;
    margin-bottom: 7px;
}

.form-box .sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 17px;
}

.form-box form {
    display: grid;
    gap: 12px;
}

.form-box input,
.form-box select,
.form-box textarea {
    width: 100%;
    padding: 15px 14px;
    border: 1px solid #d9e2ef;
    border-radius: 15px;
    background: #fbfcff;
    font-size: 15px;
    font-family: 'Inter', Arial, sans-serif;
    outline: none;
    transition: .18s ease;
}

.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .13);
    background: #fff;
}

.form-box button {
    border: none;
    min-height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--navy), var(--navy3));
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: .22s ease;
    box-shadow: 0 13px 32px rgba(6, 17, 38, .20);
}

.form-box button:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
}

.form-note,
.tiny {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.form-alert {
    padding: 13px 14px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 700;
}

.form-alert.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

/* =========================================================
   TRUST STRIPS
========================================================= */

.trust {
    position: relative;
    z-index: 4;
    margin-top: -36px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.trust-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .20);
    border-radius: 20px;
    padding: 23px 18px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(6, 17, 38, .12);
}

.trust-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(var(--gold3), var(--gold2));
}

.trust-item strong {
    display: block;
    font-size: 16px;
    color: var(--navy);
}

.trust-item span {
    font-size: 13px;
    color: var(--muted);
}

.premium-strip {
    background: linear-gradient(135deg, #061126, #0b2146);
    color: #fff;
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, .22);
    border-bottom: 1px solid rgba(212, 175, 55, .22);
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.strip-grid div {
    text-align: center;
    padding: 11px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(246, 223, 139, .15);
    font-size: 14px;
    font-weight: 800;
    color: #f4f0df;
}

/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
    padding: 88px 0;
}

.section-head {
    text-align: center;
    max-width: 870px;
    margin: 0 auto 46px;
}

.section-head .mini {
    color: #947005;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 9px;
}

.section-head h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -.55px;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-head p {
    font-size: 18px;
    color: var(--muted);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

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

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

.card,
.who-card,
.reason-card,
.quote,
.info-card,
.policy-card,
.service-link-card {
    background: #fff;
    border: 1px solid rgba(6, 17, 38, .08);
    border-radius: 26px;
    box-shadow: var(--shadow);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.card:hover,
.who-card:hover,
.reason-card:hover,
.quote:hover,
.info-card:hover,
.policy-card:hover,
.service-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 65px rgba(6, 17, 38, .16);
    border-color: rgba(212, 175, 55, .34);
}

.card::after,
.who-card::after,
.reason-card::after,
.info-card::after,
.policy-card::after,
.service-link-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body,
.info-card,
.policy-card,
.service-link-card {
    padding: 27px;
}

.card-body h3,
.who-card h3,
.reason-card h3,
.info-card h3,
.policy-card h3,
.service-link-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 25px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--navy);
}

.card-body p,
.who-card p,
.reason-card p,
.info-card p,
.policy-card p,
.service-link-card p {
    color: var(--muted);
    font-size: 16px;
}

.card-body a,
.service-link-card a {
    display: inline-block;
    margin-top: 13px;
    font-weight: 900;
    color: var(--navy);
}

.dark-section {
    background: linear-gradient(135deg, #061126, #0b234a);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(212, 175, 55, .16), transparent 30%),
        radial-gradient(circle at 90% 72%, rgba(246, 223, 139, .09), transparent 28%);
}

.dark-section .container {
    position: relative;
    z-index: 1;
}

.dark-section .section-head h2 {
    color: #fff;
}

.dark-section .section-head p {
    color: #cbd7ea;
}

.who-card {
    padding: 30px;
    background: rgba(255, 255, 255, .07);
    border-color: rgba(246, 223, 139, .16);
    box-shadow: none;
}

.who-card h3 {
    color: var(--gold3);
}

.who-card p {
    color: #d8e2f1;
}

.who-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(212, 175, 55, .28), rgba(255, 255, 255, .08));
    border: 1px solid rgba(246, 223, 139, .26);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold3);
    font-weight: 900;
    margin-bottom: 18px;
}

/* =========================================================
   ABOUT / CONTENT BLOCKS
========================================================= */

.about {
    background: #fff;
}

.about-img img,
.content-image img {
    height: 520px;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow2);
    border: 1px solid rgba(212, 175, 55, .18);
}

.about-content,
.content-box {
    background: #fff;
    padding: 38px;
    border-radius: 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.about-content h2,
.content-box h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 44px;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 14px;
}

.about-content p,
.content-box p {
    font-size: 17px;
    color: var(--muted);
    margin-bottom: 16px;
}

.about-list,
.clean-list {
    display: grid;
    gap: 13px;
    margin: 21px 0 24px;
}

.about-list div,
.clean-list div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-list span,
.clean-list span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-weight: 900;
    flex: 0 0 30px;
}

.about-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-actions .btn-outline,
.content-box .btn-outline {
    color: var(--navy);
    border-color: #d5dfec;
    background: #fff;
}

/* =========================================================
   SECTORS / PROCESS / CTA
========================================================= */

.band {
    background: linear-gradient(180deg, #eef4fb, #f8fafc);
    position: relative;
    overflow: hidden;
}

.band::before {
    content: "";
    position: absolute;
    left: -150px;
    top: 70px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, .16), transparent 70%);
}

.sector-card,
.step {
    background: linear-gradient(145deg, #fff, #f8fbff);
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: .25s ease;
}

.sector-card:hover,
.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 62px rgba(6, 17, 38, .15);
    border-color: rgba(212, 175, 55, .55);
}

.sector-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy3));
    color: var(--gold3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    margin-bottom: 18px;
}

.sector-card h4,
.step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 23px;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 10px;
}

.sector-card p,
.step p {
    font-size: 15px;
    color: var(--muted);
}

.num {
    font-size: 13px;
    font-weight: 900;
    color: #8a6800;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.cta {
    position: relative;
    background:
        linear-gradient(105deg, rgba(4, 12, 29, .94), rgba(7, 21, 46, .82)),
        url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, .20), transparent 40%);
}

.cta .container {
    position: relative;
}

.cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    margin-bottom: 12px;
}

.cta p {
    max-width: 830px;
    margin: 0 auto 28px;
    color: #dfe7f5;
    font-size: 18px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================================================
   POLICY PAGES
========================================================= */

.policy-wrap {
    max-width: 980px;
    margin: auto;
}

.policy-card {
    margin-bottom: 22px;
}

.policy-card ul {
    margin: 14px 0 0 22px;
    color: var(--muted);
}

.policy-card li {
    margin-bottom: 8px;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .22);
    border-radius: 28px;
    padding: 34px;
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 18px;
}

.contact-row {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
    border-bottom: 0;
}

.contact-row strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-row a,
.contact-row span {
    color: var(--muted);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    background: linear-gradient(135deg, #061126, #050d1d);
    color: #fff;
    padding: 58px 0 82px;
    border-top: 1px solid rgba(212, 175, 55, .25);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 95px;
    background: linear-gradient(to top, rgba(212, 175, 55, .10), transparent);
    opacity: .65;
}

.footer-grid {
    display: grid;
    grid-template-columns: .9fr 1.3fr;
    gap: 70px;
    position: relative;
    z-index: 1;
}

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

.footer-logo img {
    height: 62px;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-copy {
    color: #d9e2f1;
    font-size: 16px;
    max-width: 650px;
    line-height: 1.75;
}

.footer-tag {
    margin-top: 16px;
    color: var(--gold3);
    font-weight: 900;
}

.footer-disclaimer {
    margin-top: 24px;
    font-size: 13px;
    line-height: 1.7;
    color: #b9c6dc;
    max-width: 700px;
}

.footer-block h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 25px;
    color: var(--gold3);
    margin-bottom: 14px;
}

.footer-block p {
    margin-bottom: 7px;
    color: #d9e2f1;
    font-size: 14px;
}

.footer-block a {
    color: #eef4ff;
    line-height: 1.8;
    transition: .2s;
}

.footer-block a:hover {
    color: var(--gold3);
    padding-left: 4px;
}

/* =========================================================
   FLOATING CONTACT
========================================================= */

.floating-contact {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-contact a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(14px);
}

.floating-contact .fc-wa {
    background: #25D366;
}

.floating-contact .fc-call {
    background: rgba(6, 17, 38, .90);
}

.floating-contact .fc-form {
    background: linear-gradient(135deg, var(--gold2), var(--gold3));
    color: #111;
}

.sticky {
    display: none;
}

/* =========================================================
   ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: .75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1160px) {
    .nav-menu {
        display: none;
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .grid-2,
    .trust-grid,
    .footer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .grid-4,
    .strip-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero,
    .service-hero {
        min-height: auto;
    }

    .hero h1,
    .service-hero h1 {
        font-size: 52px;
    }

    .trust {
        margin-top: 0;
        padding-top: 22px;
    }

    .floating-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 58px;
    }

    .nav {
        min-height: 72px;
    }

    .logo img,
    .footer-logo img {
        height: 42px;
    }

    .nav-right .btn-outline {
        display: none;
    }

    .nav-right .btn-gold {
        min-height: 42px;
        padding: 0 15px;
        font-size: 13px;
    }

    .hero,
    .service-hero {
        padding: 56px 0 46px;
    }

    .page-hero {
        min-height: 360px;
        padding: 64px 0;
    }

    .hero h1,
    .service-hero h1,
    .page-hero h1 {
        font-size: 37px;
        letter-spacing: -.4px;
    }

    .hero p,
    .service-hero p,
    .page-hero p {
        font-size: 17px;
    }

    .hero-points,
    .grid-3,
    .grid-4,
    .footer-columns,
    .strip-grid {
        grid-template-columns: 1fr;
    }

    .form-box {
        padding: 24px;
    }

    .section-head h2,
    .about-content h2,
    .content-box h2,
    .cta h2 {
        font-size: 34px;
    }

    .section-head p {
        font-size: 16px;
    }

    section {
        padding: 68px 0;
    }

    .about-img img,
    .content-image img {
        height: 330px;
    }

    .about-content,
    .content-box,
    .contact-card {
        padding: 25px;
    }

    .card img {
        height: 195px;
    }

    .sticky {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1002;
        box-shadow: 0 -8px 22px rgba(0, 0, 0, .18);
    }

    .sticky a {
        width: 50%;
        text-align: center;
        padding: 15px 10px;
        font-weight: 900;
        font-size: 15px;
    }

    .call {
        background: var(--navy);
        color: #fff;
    }

    .wa {
        background: #25D366;
        color: #fff;
    }
}

/* =========================================================
   FIX: WHY CLIENTS REACH OUT TO US SECTION
   Prevents text overflow and keeps cards aligned properly
========================================================= */

.reasons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.reason-card {
    width: 100%;
    min-width: 0;
    padding: 30px;
    overflow: hidden;
    word-break: normal;
    overflow-wrap: break-word;
}

.reason-card h3 {
    margin-bottom: 10px;
    line-height: 1.22;
    word-break: normal;
    overflow-wrap: break-word;
}

.reason-card p {
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: break-word;
}

@media(max-width:1080px) {
    .reasons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(max-width:768px) {
    .reasons {
        grid-template-columns: 1fr;
    }

    .reason-card {
        padding: 24px;
    }
}

/* =========================================================
   CALLBACK POPUP
========================================================= */

.callback-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.callback-popup.active {
    display: flex;
}

.callback-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.72);
    backdrop-filter: blur(5px);
}

.callback-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    z-index: 2;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.callback-mini {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(197,160,64,0.12);
    color: #c5a040;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.callback-box h3 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #07152f;
}

.callback-box p {
    color: #5f6b7a;
    margin-bottom: 28px;
    line-height: 1.7;
}

.callback-box form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.callback-box input {
    height: 60px;
    border: 1px solid #d9dde4;
    border-radius: 14px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
}

.callback-box input:focus {
    border-color: #c5a040;
}

.callback-submit-btn {
    width: 100%;
    justify-content: center;
}


.callback-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #f4f5f7;
    cursor: pointer;
    font-size: 24px;
    color: #07152f;
}

@media(max-width:768px) {

    .callback-box {
        padding: 34px 24px;
    }
    
    .callback-box h3 {
        font-size: 32px;
    }
}