/* =========================================================
   SG ATTORNEYS INC
   MODERN WHITE / BLACK / GOLD DESIGN
========================================================= */

:root {
    --gold: #c9a227;
    --gold-dark: #a98216;

    --black: #111111;
    --dark: #1b1b1b;

    --text: #333333;
    --muted: #707070;

    --white: #ffffff;
    --light: #f7f7f5;
    --border: #e8e8e5;

    --container: 1180px;

    --radius: 18px;

    --shadow: 0 18px 50px rgba(0, 0, 0, 0.07);

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;

    background: var(--white);

    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    max-width: 100%;

    display: block;
}

a {
    color: inherit;

    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    color: var(--black);

    line-height: 1.15;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--gold-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.2px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";

    width: 28px;

    height: 2px;

    background: var(--gold);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 700;

    transition: var(--transition);
}

.btn i {
    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);

    color: var(--black);
}

.btn-primary:hover {
    background: var(--black);

    color: var(--white);

    transform: translateY(-2px);
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    border: 1px solid var(--border);

    background: var(--white);

    color: var(--black);
}

.btn-secondary:hover {
    border-color: var(--gold);

    color: var(--gold-dark);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(15px);
}

.nav-container {
    min-height: 86px;

    display: flex;

    align-items: center;

    gap: 35px;
}


/* LOGO */

.logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 155px;

    height: auto;
}


/* NAV */

.main-nav {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    color: #444444;

    font-size: 12px;

    font-weight: 600;

    transition: var(--transition);
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--black);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}


/* NAV BUTTON */

.nav-button {
    min-height: 44px;

    padding: 0 17px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: var(--gold);

    color: var(--black);

    border-radius: 6px;

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition: var(--transition);
}

.nav-button:hover {
    background: var(--black);

    color: var(--white);
}

.nav-button i {
    transition: var(--transition);
}

.nav-button:hover i {
    transform: translateX(4px);
}


/* MOBILE TOGGLE */

.menu-toggle {
    display: none;

    width: 43px;

    height: 43px;

    border: 1px solid var(--border);

    border-radius: 6px;

    background: var(--white);

    color: var(--black);

    font-size: 17px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    padding: 95px 0 100px;

    background: var(--white);

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    right: -220px;

    top: -220px;

    border: 1px solid rgba(201, 162, 39, 0.18);

    border-radius: 50%;
}

.hero::after {
    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    left: -180px;

    bottom: -180px;

    background: var(--light);

    border-radius: 50%;
}

.hero-container {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.82fr;

    align-items: center;

    gap: 80px;
}


/* HERO CONTENT */

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 78px);

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: var(--gold-dark);
}

.hero-content > p {
    max-width: 590px;

    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* HERO ACTIONS */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;

    margin-bottom: 35px;
}


/* HERO POINTS */

.hero-points {
    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;
}

.hero-points div {
    display: flex;

    align-items: center;

    gap: 8px;
}

.hero-points i {
    width: 20px;

    height: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(201, 162, 39, 0.15);

    color: var(--gold-dark);

    border-radius: 50%;

    font-size: 9px;
}

.hero-points span {
    color: #555555;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    max-width: 480px;

    width: 100%;

    margin-left: auto;
}

.hero-image {
    position: relative;

    z-index: 2;

    width: 100%;

    aspect-ratio: 0.83;

    overflow: hidden;

    border-radius: 20px;

    background: var(--light);

    box-shadow: var(--shadow);
}

.hero-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.2),
        transparent 35%
    );
}

.hero-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* GOLD SHAPE */

.gold-shape {
    position: absolute;

    z-index: 1;

    width: 100%;

    height: 100%;

    top: 25px;

    left: 25px;

    border: 2px solid var(--gold);

    border-radius: 20px;
}


/* HERO BADGE */

.hero-badge {
    position: absolute;

    z-index: 4;

    left: -35px;

    bottom: 35px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px 20px;

    background: var(--white);

    border: 1px solid var(--border);

    border-left: 4px solid var(--gold);

    border-radius: 8px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero-badge > span {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--black);

    color: var(--gold);

    border-radius: 6px;

    font-family: "Playfair Display", serif;

    font-size: 17px;
}

.hero-badge strong {
    display: block;

    color: var(--black);

    font-size: 12px;

    margin-bottom: 2px;
}

.hero-badge small {
    display: block;

    color: #777777;

    font-size: 9px;
}


/* =========================================================
   INTRO STRIP
========================================================= */

.intro-strip {
    background: var(--black);

    color: var(--white);

    border-top: 3px solid var(--gold);
}

.intro-container {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}

.intro-container p {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.4px;
}

.intro-container span {
    width: 1px;

    height: 25px;

    background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    padding: 120px 0;

    background: var(--white);
}

.about-container {
    display: grid;

    grid-template-columns: 150px 1fr;

    gap: 80px;
}

.about-label {
    padding-top: 8px;
}

.about-label span {
    display: block;

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 42px;

    line-height: 1;

    margin-bottom: 12px;
}

.about-label p {
    color: #888888;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    writing-mode: vertical-rl;
}

.about-content {
    max-width: 780px;
}

.about-content h2 {
    font-size: clamp(40px, 5vw, 62px);

    letter-spacing: -1.5px;

    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--gold-dark);
}

.about-content p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.85;

    margin-bottom: 18px;

    max-width: 700px;
}

.about-content .lead {
    color: var(--text);

    font-size: 18px;

    line-height: 1.75;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 18px;

    color: var(--black);

    font-size: 12px;

    font-weight: 800;

    border-bottom: 2px solid var(--gold);

    padding-bottom: 7px;
}

.text-link i {
    color: var(--gold-dark);

    transition: var(--transition);
}

.text-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    padding: 115px 0;

    background: var(--light);
}

.section-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 55px;
}

.section-header h2 {
    font-size: clamp(38px, 4vw, 55px);

    letter-spacing: -1px;
}

.section-header > p {
    max-width: 390px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;
}


/* SERVICES GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


/* SERVICE CARD */

.service-card {
    position: relative;

    min-height: 390px;

    padding: 40px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.03);

    overflow: hidden;

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(201, 162, 39, 0.5);

    box-shadow: var(--shadow);
}

.service-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 65px;
}

.service-number {
    color: #cccccc;

    font-family: "Playfair Display", serif;

    font-size: 32px;
}

.service-icon {
    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--black);

    color: var(--gold);

    border-radius: 12px;

    font-size: 21px;

    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);

    color: var(--black);
}

.service-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 32px;

    margin-bottom: 15px;
}

.service-card p {
    max-width: 480px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.service-card > a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--black);

    font-size: 11px;

    font-weight: 800;
}

.service-card > a i {
    color: var(--gold-dark);

    transition: var(--transition);
}

.service-card > a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   ATTORNEY
========================================================= */

.attorney-section {
    padding: 120px 0;

    background: var(--white);
}

.attorney-container {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 90px;
}

.attorney-image {
    position: relative;

    max-width: 470px;

    aspect-ratio: 0.82;

    overflow: visible;
}

.attorney-image::before {
    content: "";

    position: absolute;

    inset: 18px -18px -18px 18px;

    border: 2px solid var(--gold);

    border-radius: 18px;
}

.attorney-image img {
    position: relative;

    z-index: 2;

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 18px;
}

.attorney-content {
    max-width: 650px;
}

.attorney-content h2 {
    font-size: clamp(46px, 5vw, 65px);

    margin-bottom: 25px;
}

.attorney-content h2 span {
    display: block;

    color: var(--gold-dark);

    font-family: "DM Sans", sans-serif;

    font-size: 18px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-top: 8px;
}

.attorney-content .lead {
    color: var(--muted);

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* QUALIFICATION */

.qualification {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 22px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 12px;

    margin-bottom: 25px;
}

.qualification > i {
    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: var(--black);

    color: var(--gold);

    border-radius: 8px;
}

.qualification span {
    display: block;

    color: var(--gold-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}

.qualification strong {
    display: block;

    color: var(--black);

    font-size: 14px;

    line-height: 1.5;

    margin-bottom: 4px;
}

.qualification small {
    color: #777777;

    font-size: 11px;
}


/* ATTORNEY META */

.attorney-meta {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-bottom: 30px;
}

.attorney-meta div {
    display: flex;

    align-items: center;

    gap: 9px;
}

.attorney-meta i {
    color: var(--gold-dark);
}

.attorney-meta span {
    color: #555555;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   WHY US
========================================================= */

.why-section {
    padding: 115px 0;

    background: var(--light);
}

.why-section .section-header {
    margin-bottom: 45px;
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);

    border-left: 1px solid var(--border);
}

.why-item {
    min-height: 270px;

    padding: 30px;

    background: var(--white);

    border-right: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    transition: var(--transition);
}

.why-item:hover {
    background: var(--black);

    transform: translateY(-5px);

    box-shadow: var(--shadow);
}

.why-item > span {
    display: block;

    color: #cfcfcf;

    font-family: "Playfair Display", serif;

    font-size: 28px;

    margin-bottom: 30px;
}

.why-item > i {
    display: block;

    color: var(--gold);

    font-size: 23px;

    margin-bottom: 20px;
}

.why-item h3 {
    font-family: "Playfair Display", serif;

    font-size: 22px;

    margin-bottom: 10px;
}

.why-item p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.75;
}

.why-item:hover h3 {
    color: var(--white);
}

.why-item:hover p {
    color: #aaaaaa;
}

.why-item:hover > span {
    color: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    padding: 120px 0;

    background: var(--white);
}

.contact-container {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: start;
}

.contact-content {
    padding-top: 25px;
}

.contact-content h2 {
    font-size: clamp(42px, 5vw, 62px);

    margin-bottom: 22px;
}

.contact-content h2 span {
    display: block;

    color: var(--gold-dark);
}

.contact-content > p {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    max-width: 500px;

    margin-bottom: 40px;
}


/* OFFICE DETAILS */

.office-details {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.office-details > div {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.office-details i {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: var(--black);

    color: var(--gold);

    border-radius: 7px;
}

.office-details span {
    display: block;

    color: var(--gold-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 5px;
}

.office-details strong {
    display: block;

    color: #333333;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.7;
}


/* CONTACT CARD */

.contact-card {
    padding: 42px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-family: "Playfair Display", serif;

    font-size: 34px;

    margin-bottom: 28px;
}


/* FORM */

.contact-card form {
    display: flex;

    flex-direction: column;

    gap: 17px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group label {
    color: #444444;

    font-size: 10px;

    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #ddddda;

    background: var(--white);

    color: var(--black);

    border-radius: 6px;

    outline: none;

    padding: 13px 14px;

    font-size: 13px;

    transition: var(--transition);
}

.form-group input,
.form-group select {
    height: 49px;
}

.form-group textarea {
    resize: vertical;

    min-height: 115px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.08);
}

.form-button {
    width: 100%;

    border: 0;

    margin-top: 4px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--white);

    border-top: 1px solid var(--border);
}

.footer-container {
    display: grid;

    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;

    gap: 55px;

    padding-top: 65px;

    padding-bottom: 55px;
}


/* FOOTER BRAND */

.footer-brand {
    max-width: 310px;
}

.footer-brand img {
    width: 190px;

    height: auto;

    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


/* FOOTER LINKS */

.footer-links h4,
.footer-office h4 {
    color: var(--black);

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.footer-links h4::after,
.footer-office h4::after {
    content: "";

    display: block;

    width: 25px;

    height: 2px;

    background: var(--gold);

    margin-top: 8px;
}

.footer-links a {
    display: block;

    color: #666666;

    font-size: 12px;

    margin-bottom: 11px;

    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-dark);

    transform: translateX(3px);
}


/* FOOTER OFFICE */

.footer-office p {
    color: #666666;

    font-size: 12px;

    line-height: 1.8;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid var(--border);
}

.footer-bottom .container {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {
    color: #888888;

    font-size: 10px;
}

.footer-bottom strong {
    color: var(--gold-dark);
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 950px) {

    .main-nav {
        position: absolute;

        top: 86px;

        left: 20px;

        right: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px;

        background: var(--white);

        border: 1px solid var(--border);

        border-radius: 10px;

        box-shadow: var(--shadow);

        margin: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 13px 12px;
    }

    .main-nav a::after {
        display: none;
    }

    .nav-button {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;

        align-items: center;

        justify-content: center;
    }


    .hero-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .hero-content {
        max-width: 800px;
    }

    .hero-visual {
        margin-inline: auto;
    }


    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .about-label {
        display: flex;

        align-items: center;

        gap: 15px;
    }

    .about-label span {
        font-size: 30px;

        margin: 0;
    }

    .about-label p {
        writing-mode: initial;
    }


    .attorney-container {
        grid-template-columns: 1fr;

        gap: 65px;
    }

    .attorney-image {
        margin-inline: auto;

        width: min(470px, 90%);
    }


    .contact-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .contact-content {
        padding-top: 0;
    }


    .section-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }


    /* HEADER */

    .nav-container {
        min-height: 72px;

        gap: 12px;
    }

    .logo img {
        width: 135px;
    }

    .nav-button {
        display: none;
    }

    .main-nav {
        top: 72px;

        left: 15px;

        right: 15px;
    }


    /* HERO */

    .hero {
        padding: 65px 0 75px;
    }

    .hero h1 {
        font-size: 47px;

        letter-spacing: -1.5px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-points {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

    .hero-visual {
        width: 88%;
    }

    .gold-shape {
        top: 14px;

        left: 14px;
    }

    .hero-badge {
        left: -12px;

        bottom: 20px;

        padding: 12px 14px;
    }


    /* INTRO */

    .intro-container {
        min-height: 70px;

        justify-content: center;

        text-align: center;
    }

    .intro-container p {
        font-size: 10px;
    }

    .intro-container p:last-child {
        display: none;
    }

    .intro-container span {
        display: none;
    }


    /* SECTIONS */

    .about-section,
    .services-section,
    .attorney-section,
    .why-section,
    .contact-section {
        padding: 75px 0;
    }


    /* ABOUT */

    .about-content h2 {
        font-size: 40px;
    }

    .about-content .lead {
        font-size: 16px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 350px;

        padding: 30px;
    }

    .service-top {
        margin-bottom: 45px;
    }


    /* ATTORNEY */

    .attorney-image {
        width: 88%;
    }

    .attorney-content h2 {
        font-size: 45px;
    }

    .qualification {
        padding: 18px;
    }

    .attorney-meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }


    /* WHY */

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        min-height: auto;

        padding: 27px;
    }


    /* CONTACT */

    .contact-content h2 {
        font-size: 42px;
    }

    .contact-card {
        padding: 25px 20px;
    }

    .contact-card h3 {
        font-size: 29px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-top: 50px;

        padding-bottom: 45px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-brand img {
        width: 175px;
    }

    .footer-bottom .container {
        min-height: auto;

        padding-top: 20px;

        padding-bottom: 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }
}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-visual {
        width: 85%;
    }

    .hero-badge {
        left: -8px;

        padding: 10px;
    }

    .hero-badge > span {
        width: 35px;

        height: 35px;

        font-size: 14px;
    }

    .hero-badge strong {
        font-size: 10px;
    }

    .hero-badge small {
        font-size: 8px;
    }

    .service-card {
        padding: 25px;
    }
}
/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 9999;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    font-size: 28px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition: 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* TOOLTIP */

.whatsapp-tooltip {
    position: absolute;

    right: 70px;

    top: 50%;

    transform: translateY(-50%);

    width: max-content;

    padding: 9px 13px;

    background: #111111;

    color: #ffffff;

    border-radius: 6px;

    font-size: 10px;

    font-weight: 600;

    opacity: 0;

    visibility: hidden;

    transition: 0.25s ease;

    white-space: nowrap;
}

.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;

    visibility: visible;
}


/* MOBILE */

@media (max-width: 600px) {

    .floating-whatsapp {
        right: 16px;

        bottom: 16px;

        width: 54px;

        height: 54px;

        font-size: 25px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}
.developer-link {
    color: inherit;
    text-decoration: none;
}

.developer-link strong {
    color: var(--gold-dark);
    transition: 0.3s ease;
}

.developer-link:hover strong {
    color: var(--black);
    text-decoration: underline;
}
/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.hero-content,
.hero-visual {
    animation: fadeUp 0.8s ease both;
}

.hero-visual {
    animation-delay: 0.15s;
}

.service-card,
.why-item,
.contact-card {
    animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@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;
    }

}
/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .nav-container {
    min-height: 76px;
}

.site-header.scrolled .logo img {
    width: 145px;
}
.footer-email {
    display: inline-block;

    margin-top: 12px;

    color: var(--gold-dark);

    font-size: 11px;

    font-weight: 600;

    word-break: break-word;

    transition: 0.3s ease;
}

.footer-email:hover {
    color: var(--black);
}