/* =========================================
   ZIYANDA MNCONO-CHAULE ATTORNEYS
   NAVY & GOLD FOUNDATION
========================================= */


/* =========================================
   ROOT VARIABLES
========================================= */

:root {

    --navy: #071A33;
    --navy-light: #0D294A;
    --navy-dark: #041020;

    --gold: #C9A45C;
    --gold-light: #E2C27A;

    --white: #FFFFFF;
    --light: #F5F7FA;
    --text: #263449;
    --muted: #718096;

    --border: rgba(7, 26, 51, 0.12);

    --shadow:
        0 15px 40px rgba(7, 26, 51, 0.10);

    --transition:
        all 0.35s 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.7;

    overflow-x: hidden;

}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea {
    font-family: inherit;
}


/* =========================================
   GLOBAL CONTAINER
========================================= */

.container {

    width: min(1180px, 90%);

    margin: auto;

}


/* =========================================
   SECTION LABEL
========================================= */

.section-label {

    display: inline-block;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;

}


/* =========================================
   GLOBAL HEADINGS
========================================= */

h1,
h2,
h3 {

    font-family:
        'Playfair Display',
        serif;

}


h2 {

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.1;

    color: var(--navy);

}


h2 span {

    color: var(--gold);

}


/* =========================================
   HEADER
========================================= */

#header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        rgba(7, 26, 51, 0.96);

    backdrop-filter: blur(12px);

}


.navbar {

    width: min(1200px, 92%);

    min-height: 82px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================
   LOGO
========================================= */

.logo {

    display: flex;

    align-items: center;

    flex-shrink: 0;

}


.logo img {

    width: 150px;

    height: auto;

}


/* =========================================
   NAVIGATION
========================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 30px;

    list-style: none;

    margin-left: auto;

}


.nav-links a {

    color: var(--white);

    font-size: 14px;

    font-weight: 500;

    position: relative;

    transition: var(--transition);

}


.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -7px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: var(--transition);

}


.nav-links a:hover {

    color: var(--gold-light);

}


.nav-links a:hover::after {

    width: 100%;

}


/* =========================================
   NAV BUTTON
========================================= */

.nav-button {

    background: var(--gold);

    color: var(--navy);

    padding: 12px 20px;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;

    transition: var(--transition);

}


.nav-button:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-btn {

    display: none;

    border: none;

    background: transparent;

    cursor: pointer;

    padding: 8px;

}


.menu-btn span {

    display: block;

    width: 28px;

    height: 2px;

    background: var(--gold);

    margin: 5px 0;

    transition: var(--transition);

}


/* =========================================
   HERO
========================================= */

.hero {

    min-height: 100vh;

    padding: 160px 8% 100px;

    display: flex;

    align-items: center;

    position: relative;

    background:

        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy),
            var(--navy-light)
        );

    overflow: hidden;

}


.hero::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -200px;

    top: 100px;

    border: 1px solid
        rgba(201, 164, 92, 0.25);

    border-radius: 50%;

}


.hero::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -80px;

    top: 200px;

    border: 1px solid
        rgba(201, 164, 92, 0.15);

    border-radius: 50%;

}


.hero-content {

    max-width: 720px;

    position: relative;

    z-index: 2;

}


.hero-label {

    color: var(--gold-light);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 4px;

}


.hero h1 {

    color: var(--white);

    font-size: clamp(55px, 8vw, 95px);

    line-height: 1;

    margin: 20px 0 25px;

}


.hero h1 span {

    color: var(--gold);

}


.hero-content p {

    max-width: 580px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 18px;

    margin-bottom: 35px;

}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {

    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;

}


.btn-primary,
.btn-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    border-radius: 4px;

    font-weight: 700;

    font-size: 14px;

    transition: var(--transition);

}


.btn-primary {

    background: var(--gold);

    color: var(--navy);

}


.btn-primary:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

}


.btn-whatsapp {

    border: 1px solid
        rgba(255, 255, 255, 0.3);

    color: var(--white);

}


.btn-whatsapp:hover {

    border-color: var(--gold);

    color: var(--gold);

    transform: translateY(-3px);

}


/* =========================================
   HERO SCROLL
========================================= */

.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 8%;

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.hero-scroll i {

    color: var(--gold);

}
/* =========================================
   ABOUT SECTION
========================================= */

.about {

    padding: 120px 8%;

    background: var(--white);

}


.about-container {

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;

}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image {

    position: relative;

}


.about-image::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    border: 2px solid var(--gold);

    top: 18px;

    left: 18px;

    z-index: 0;

}


.about-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 3px;

}


/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {

    max-width: 600px;

}


.about-content h2 {

    margin-bottom: 25px;

}


.about-content p {

    color: var(--muted);

    font-size: 16px;

    margin-bottom: 18px;

    max-width: 570px;

}


/* =========================================
   TEXT LINK
========================================= */

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 15px;

    color: var(--navy);

    font-size: 14px;

    font-weight: 700;

    border-bottom: 2px solid var(--gold);

    padding-bottom: 5px;

    transition: var(--transition);

}


.text-link i {

    color: var(--gold);

    transition: var(--transition);

}


.text-link:hover {

    color: var(--gold);

}


.text-link:hover i {

    transform: translateX(5px);

}


/* =========================================
   ABOUT MOBILE PREP
========================================= */

@media (max-width: 900px) {

    .about-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-content {

        max-width: 100%;

    }


    .about-image {

        max-width: 650px;

        margin: auto;

    }

}
/* =========================================
   SERVICES SECTION
========================================= */

.services {

    padding: 120px 8%;

    background: var(--light);

}


/* =========================================
   SERVICES HEADER
========================================= */

.services-header {

    max-width: 1180px;

    margin: 0 auto 55px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

}


.services-header h2 {

    max-width: 650px;

}


.services-header > p {

    max-width: 300px;

    color: var(--muted);

    font-size: 15px;

    text-align: right;

}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {

    position: relative;

    background: var(--white);

    padding: 35px 28px;

    min-height: 320px;

    border: 1px solid var(--border);

    overflow: hidden;

    transition: var(--transition);

}


.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: var(--gold);

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color:
        rgba(201, 164, 92, 0.35);

}


.service-card:hover::before {

    width: 100%;

}


/* =========================================
   SERVICE ICON
========================================= */

.service-icon {

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--navy);

    color: var(--gold);

    border-radius: 50%;

    font-size: 19px;

    margin-bottom: 28px;

    transition: var(--transition);

}


.service-card:hover .service-icon {

    background: var(--gold);

    color: var(--navy);

    transform: rotate(-5deg);

}


/* =========================================
   SERVICE NUMBER
========================================= */

.service-number {

    position: absolute;

    top: 28px;

    right: 25px;

    color:
        rgba(7, 26, 51, 0.10);

    font-family:
        'Playfair Display',
        serif;

    font-size: 38px;

    font-weight: 700;

}


/* =========================================
   SERVICE CONTENT
========================================= */

.service-card h3 {

    color: var(--navy);

    font-size: 24px;

    margin-bottom: 12px;

}


.service-card p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 25px;

}


/* =========================================
   SERVICE LINK
========================================= */

.service-card a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--navy);

    font-size: 13px;

    font-weight: 700;

    transition: var(--transition);

}


.service-card a i {

    color: var(--gold);

    transition: var(--transition);

}


.service-card a:hover {

    color: var(--gold);

}


.service-card a:hover i {

    transform: translateX(5px);

}


/* =========================================
   SERVICES RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 700px) {

    .services-header {

        flex-direction: column;

        align-items: flex-start;

    }


    .services-header > p {

        text-align: left;

        max-width: 500px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }

}
/* =========================================
   TEAM SECTION
========================================= */

.team {

    padding: 120px 8%;

    background: var(--white);

}


/* =========================================
   TEAM SECTION TITLE
========================================= */

.section-title {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}


.section-title h2 {

    margin-bottom: 18px;

}


.section-title p {

    color: var(--muted);

    max-width: 580px;

    margin: auto;

    font-size: 15px;

}


/* =========================================
   TEAM GRID
========================================= */

.team-grid {

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


/* =========================================
   TEAM CARD
========================================= */

.team-card {

    background: var(--light);

    border: 1px solid var(--border);

    transition: var(--transition);

}


.team-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

}


/* =========================================
   TEAM IMAGE
========================================= */

.team-image {

    position: relative;

    overflow: hidden;

    background: var(--navy);

}


.team-image img {

    width: 100%;

    height: 420px;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.team-card:hover .team-image img {

    transform: scale(1.04);

}


/* =========================================
   TEAM INFO
========================================= */

.team-info {

    padding: 25px 28px 30px;

}


.team-info span {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.team-info h3 {

    color: var(--navy);

    font-size: 25px;

    line-height: 1.2;

    margin: 8px 0;

}


.team-info p {

    color: var(--muted);

    font-size: 14px;

}


/* =========================================
   TEAM RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .team-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .team {

        padding: 90px 6%;

    }


    .team-grid {

        grid-template-columns: 1fr;

    }


    .team-image img {

        height: 380px;

    }

}
/* =========================================
   CONTACT SECTION
========================================= */

.contact {

    padding: 120px 8%;

    background: var(--navy);

    color: var(--white);

}


.contact-container {

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 80px;

    align-items: center;

}


/* =========================================
   CONTACT CONTENT
========================================= */

.contact-content .section-label {

    color: var(--gold-light);

}


.contact-content h2 {

    color: var(--white);

    margin-bottom: 25px;

}


.contact-content h2 span {

    color: var(--gold);

}


.contact-content > p {

    max-width: 570px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 16px;

    margin-bottom: 35px;

}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.contact-item {

    display: flex;

    align-items: center;

    gap: 16px;

    width: fit-content;

    transition: var(--transition);

}


.contact-item:hover {

    transform: translateX(5px);

}


.contact-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--gold);

    color: var(--navy);

    border-radius: 50%;

    font-size: 18px;

}


.contact-item span {

    display: block;

    color:
        rgba(255, 255, 255, 0.50);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 3px;

}


.contact-item strong {

    color: var(--white);

    font-size: 15px;

}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {

    background: var(--white);

    color: var(--navy);

    padding: 45px;

    border-top: 4px solid var(--gold);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);

}


.contact-card > span {

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.contact-card h3 {

    font-size: 32px;

    line-height: 1.2;

    margin: 12px 0 15px;

}


.contact-card p {

    color: var(--muted);

    font-size: 14px;

    margin-bottom: 25px;

}


/* =========================================
   CONTACT BUTTON
========================================= */

.contact-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 15px 20px;

    background: var(--navy);

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);

}


.contact-button i {

    color: var(--gold);

    font-size: 18px;

}


.contact-button:hover {

    background: var(--gold);

    color: var(--navy);

}


.contact-button:hover i {

    color: var(--navy);

}


/* =========================================
   CONTACT RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .contact-container {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .contact-card {

        padding: 35px 28px;

    }

}
/* =========================================
   FOOTER
========================================= */

.footer {

    background: var(--navy-dark);

    color: var(--white);

    padding: 70px 8% 25px;

}


.footer-container {

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 50px;

}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand img {

    width: 180px;

    margin-bottom: 15px;

}


.footer-brand p {

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer h4 {

    color: var(--gold);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-links a {

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 14px;

    transition: var(--transition);

}


.footer-links a:hover {

    color: var(--gold);

    transform: translateX(4px);

}


/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}


.footer-contact a {

    display: flex;

    align-items: center;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.65);

    font-size: 14px;

    transition: var(--transition);

}


.footer-contact a i {

    width: 20px;

    color: var(--gold);

}


.footer-contact a:hover {

    color: var(--white);

}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    max-width: 1180px;

    margin: auto;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom p {

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 12px;

}


.developer-credit a {

    color: var(--gold);

    transition: var(--transition);

}


.developer-credit a:hover {

    color: var(--gold-light);

}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.whatsapp-float {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #25D366;

    color: var(--white);

    border-radius: 50%;

    font-size: 30px;

    z-index: 999;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);

    transition: var(--transition);

}


.whatsapp-float:hover {

    transform:
        translateY(-5px)
        scale(1.05);

}


/* =========================================
   GENERAL HOVER POLISH
========================================= */

button,
a {

    -webkit-tap-highlight-color:
        transparent;

}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .footer-container {

        grid-template-columns: 1fr 1fr;

        gap: 40px;

    }


    .footer-brand {

        grid-column: 1 / -1;

    }


    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

}


@media (max-width: 550px) {

    .footer {

        padding: 60px 6% 25px;

    }


    .footer-container {

        grid-template-columns: 1fr;

    }


    .footer-brand {

        grid-column: auto;

    }


    .footer-bottom {

        align-items: center;

    }


    .whatsapp-float {

        width: 55px;

        height: 55px;

        right: 18px;

        bottom: 18px;

        font-size: 27px;

    }

}
/* =========================================
   MOBILE NAVIGATION
========================================= */

@media (max-width: 900px) {

    .navbar {
        min-height: 72px;
    }

    .logo img {
        width: 130px;
    }

    .menu-btn {
        display: block;
        position: relative;
        z-index: 1100;
    }

    .nav-links {

        position: fixed;

        top: 72px;
        left: 0;

        width: 100%;

        height: calc(100vh - 72px);

        background: var(--navy-dark);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: flex-start;

        gap: 0;

        padding: 30px 8%;

        transform: translateX(100%);

        opacity: 0;

        visibility: hidden;

        transition: var(--transition);

        overflow-y: auto;

    }

    .nav-links.active {

        transform: translateX(0);

        opacity: 1;

        visibility: visible;

    }

    .nav-links li {

        width: 100%;

        border-bottom:
            1px solid
            rgba(255,255,255,0.08);

    }

    .nav-links a {

        display: block;

        width: 100%;

        padding: 18px 0;

        font-size: 16px;

    }

    .nav-links a::after {
        display: none;
    }


    /* Hamburger animation */

    .menu-btn.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);

    }

    .menu-btn.active span:nth-child(2) {

        opacity: 0;

    }

    .menu-btn.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);

    }


    /* Prevent background scrolling */

    body.menu-open {

        overflow: hidden;

    }


    /* Hero */

    .hero {

        min-height: 90vh;

        padding:
            140px 7%
            100px;

    }

    .hero h1 {

        font-size:
            clamp(48px, 12vw, 72px);

    }

    .hero-content p {

        font-size: 16px;

    }


    /* About */

    .about {

        padding: 90px 7%;

    }

    .about-image img {

        height: 400px;

    }


    /* Services */

    .services {

        padding: 90px 7%;

    }


    /* Team */

    .team {

        padding: 90px 7%;

    }


    /* Contact */

    .contact {

        padding: 90px 7%;

    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 550px) {

    .navbar {

        width: 88%;

    }


    .logo img {

        width: 115px;

    }


    .hero {

        padding:
            125px 6%
            90px;

    }


    .hero h1 {

        font-size: 46px;

        line-height: 1.02;

    }


    .hero-content p {

        font-size: 15px;

        line-height: 1.7;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

        width: 100%;

    }


    .btn-primary,
    .btn-whatsapp {

        width: 100%;

    }


    .hero-scroll {

        display: none;

    }


    .about-image::before {

        top: 10px;

        left: 10px;

    }


    .about-image img {

        height: 350px;

    }


    .section-title {

        margin-bottom: 40px;

    }


    .section-title h2 {

        font-size: 38px;

    }


    .service-card {

        min-height: auto;

        padding: 30px 25px;

    }


    .team-image img {

        height: 350px;

    }


    .contact-card {

        padding: 30px 22px;

    }


    .contact-card h3 {

        font-size: 28px;

    }


    .whatsapp-float {

        width: 54px;

        height: 54px;

        right: 16px;

        bottom: 16px;

        font-size: 26px;

    }

}
/* =========================================
   OUR TEAM — FOUNDER
========================================= */

.team {

    padding: 120px 8%;

    background: var(--light);

}


/* =========================================
   FOUNDER LAYOUT
========================================= */

.team-founder {

    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: start;

}


/* =========================================
   FOUNDER IMAGE
========================================= */

.team-founder-image {

    position: sticky;

    top: 120px;

}


.team-founder-image::before {

    content: "";

    position: absolute;

    width: 100%;

    height: 100%;

    border: 2px solid var(--gold);

    top: 18px;

    left: 18px;

}


.team-founder-image img {

    position: relative;

    z-index: 1;

    width: 100%;

    height: 560px;

    object-fit: cover;

    object-position: center top;

}


/* =========================================
   FOUNDER CONTENT
========================================= */

.team-founder-content {

    padding-top: 5px;

}


.founder-role {

    display: inline-block;

    color: var(--gold);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;

}


.team-founder-content h3 {

    color: var(--navy);

    font-size: clamp(36px, 5vw, 56px);

    line-height: 1.05;

    margin-bottom: 20px;

}


.team-founder-content > p {

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 17px;

}


.team-founder-content .founder-lead {

    color: var(--navy);

    font-size: 19px;

    line-height: 1.6;

    font-weight: 500;

    margin-bottom: 25px;

}


/* =========================================
   FOUNDER STATS
========================================= */

.founder-stats {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin: 35px 0 45px;

}


.founder-stat {

    background: var(--navy);

    padding: 22px 18px;

    min-height: 130px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-bottom: 3px solid var(--gold);

}


.founder-stat strong {

    color: var(--gold);

    font-family:
        'Playfair Display',
        serif;

    font-size: 30px;

    line-height: 1;

    margin-bottom: 10px;

}


.founder-stat span {

    color:
        rgba(255,255,255,0.72);

    font-size: 11px;

    line-height: 1.5;

}


/* =========================================
   ACHIEVEMENTS
========================================= */

.founder-achievements {

    border-top:
        1px solid var(--border);

    padding-top: 30px;

}


.founder-achievements h4 {

    color: var(--navy);

    font-family:
        'Playfair Display',
        serif;

    font-size: 27px;

    margin-bottom: 25px;

}


.achievement {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 20px;

}


.achievement i {

    flex-shrink: 0;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--navy);

    color: var(--gold);

    border-radius: 50%;

    font-size: 14px;

}


.achievement p {

    color: var(--muted);

    font-size: 14px;

    line-height: 1.7;

    padding-top: 6px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .team-founder {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .team-founder-image {

        position: relative;

        top: auto;

        max-width: 650px;

        margin: auto;

        width: 100%;

    }


    .team-founder-image img {

        height: 520px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .team {

        padding: 90px 6%;

    }


    .team-founder {

        gap: 40px;

    }


    .team-founder-image::before {

        top: 10px;

        left: 10px;

    }


    .team-founder-image img {

        height: 430px;

    }


    .team-founder-content h3 {

        font-size: 38px;

    }


    .team-founder-content .founder-lead {

        font-size: 17px;

    }


    .founder-stats {

        grid-template-columns: 1fr;

        gap: 10px;

        margin: 30px 0 40px;

    }


    .founder-stat {

        min-height: auto;

        padding: 20px;

    }


    .achievement {

        gap: 12px;

    }

}
/* =========================================
   FINAL GLOBAL POLISH
========================================= */


/* =========================================
   HEADER SCROLL STATE
========================================= */

#header.scrolled {

    background: rgba(4, 16, 32, 0.98);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15);

}


/* =========================================
   FOCUS STATES
========================================= */

a:focus-visible,
button:focus-visible {

    outline: 2px solid var(--gold);

    outline-offset: 4px;

}


/* =========================================
   SELECTION
========================================= */

::selection {

    background: var(--gold);

    color: var(--navy);

}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {

    width: 8px;

}


::-webkit-scrollbar-track {

    background: var(--light);

}


::-webkit-scrollbar-thumb {

    background: var(--gold);

    border-radius: 10px;

}


::-webkit-scrollbar-thumb:hover {

    background: var(--navy);

}


/* =========================================
   MOBILE SPACING
========================================= */

@media (max-width: 600px) {

    h2 {

        font-size: 38px;

    }


    .section-label {

        font-size: 10px;

        letter-spacing: 2.5px;

    }


    .section-title p {

        font-size: 14px;

    }

}


/* =========================================
   REDUCE 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;

        scroll-behavior: auto !important;

    }

}
/* =========================================
   CONTACT SECTION
========================================= */

.contact {
    padding: 120px 8%;
    background: #f7f8fa;
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: stretch;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info {
    background: var(--navy);

    padding: 50px 45px;

    color: #ffffff;
}

.contact-eyebrow {
    display: inline-block;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;
}

.contact-info h3 {
    color: #ffffff;

    font-family:
        'Playfair Display',
        serif;

    font-size: 38px;

    margin-bottom: 35px;
}


/* =========================================
   CONTACT INFO BOX
========================================= */

.info-box {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.info-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);

    color: var(--gold);

    border: 1px solid
        rgba(212,175,55,0.35);

    border-radius: 50%;
}

.info-box h4 {
    color: var(--gold);

    font-size: 13px;

    margin-bottom: 6px;
}

.info-box p {
    color:
        rgba(255,255,255,0.75);

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}

.info-box a {
    color:
        rgba(255,255,255,0.85);

    text-decoration: none;

    transition: 0.3s ease;
}

.info-box a:hover {
    color: var(--gold);
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form {
    background: #ffffff;

    padding: 50px;

    border:
        1px solid
        rgba(0,0,0,0.08);

    box-shadow:
        0 20px 60px
        rgba(0,0,0,0.06);
}

.contact-form form {
    display: flex;

    flex-direction: column;

    gap: 18px;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;

    border:
        1px solid
        #dddddd;

    background: #ffffff;

    padding: 16px 18px;

    font-family: inherit;

    font-size: 14px;

    color: var(--navy);

    outline: none;

    transition: 0.3s ease;
}

.contact-form textarea {
    resize: vertical;

    min-height: 170px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(212,175,55,0.10);
}


/* =========================================
   FORM BUTTON
========================================= */

.contact-form .btn-primary {
    width: fit-content;

    border: none;

    cursor: pointer;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact {
        padding: 90px 7%;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .contact-info {
        padding: 45px 35px;
    }

    .contact-form {
        padding: 40px 35px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact {
        padding: 80px 6%;
    }

    .contact-info {
        padding: 35px 25px;
    }

    .contact-info h3 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form .btn-primary {
        width: 100%;

        justify-content: center;
    }

    .info-box {
        gap: 13px;
    }

    .info-icon {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

}
/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--navy);
    color: #ffffff;
    padding: 70px 8% 0;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.4fr 0.7fr 1fr;

    gap: 70px;

    padding-bottom: 55px;
}


/* =========================================
   FOOTER BRAND
========================================= */

.footer-brand img {
    width: 145px;
    max-width: 100%;
    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 320px;

    color:
        rgba(255,255,255,0.65);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FOOTER HEADINGS
========================================= */

.footer h4 {
    color: var(--gold);

    font-family:
        'Playfair Display',
        serif;

    font-size: 20px;

    margin-bottom: 22px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-links a {
    color:
        rgba(255,255,255,0.68);

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 12px;

    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);

    transform: translateX(4px);
}


/* =========================================
   FOOTER CONTACT
========================================= */

.footer-contact p {
    color:
        rgba(255,255,255,0.68);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.footer-contact a {
    display: block;

    color:
        rgba(255,255,255,0.68);

    text-decoration: none;

    font-size: 14px;

    margin-bottom: 12px;

    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);

    width: 20px;

    margin-right: 7px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    max-width: 1180px;

    margin: 0 auto;

    padding: 22px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.10);

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}

.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,0.50);

    font-size: 12px;
}

.developer-credit a {
    color: var(--gold);

    text-decoration: none;

    font-weight: 600;
}

.developer-credit span {
    color: var(--gold);
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25D366;

    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 29px;

    z-index: 9999;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.20);

    animation:
        whatsappPulse 2.5s infinite;

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================================
   WHATSAPP ANIMATION
========================================= */

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0
            rgba(37,211,102,0.45);
    }

    70% {
        box-shadow:
            0 0 0 14px
            rgba(37,211,102,0);
    }

    100% {
        box-shadow:
            0 0 0 0
            rgba(37,211,102,0);
    }

}


/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .footer {
        padding: 60px 7% 0;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;

        padding: 22px 0;
    }

}


/* =========================================
   FOOTER MOBILE
========================================= */

@media (max-width: 600px) {

    .footer {
        padding: 55px 6% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand img {
        width: 125px;
    }

    .footer-links,
    .footer-contact {
        width: 100%;
    }

    .footer-bottom {
        gap: 12px;
    }

    .footer-bottom p {
        line-height: 1.6;
    }

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 16px;
        bottom: 16px;

        font-size: 26px;
    }

}
/* =========================================
   ZMC ATTORNEYS
   COMPLETE MOBILE RESPONSIVE FIX
========================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


/* =========================================
   MOBILE — 768px
========================================= */

@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */

    body {
        font-size: 14px;
    }

    section {
        width: 100%;
        max-width: 100%;
    }

    .container,
    .about-container,
    .contact-container,
    .team-founder,
    .services-grid,
    .footer-container {
        width: 100%;
        max-width: 100%;
    }


    /* ---------- NAVIGATION ---------- */

    .navbar {
        width: 100%;
        min-height: 70px;
        padding: 0 20px;
    }

    .logo img {
        width: 115px;
        height: auto;
    }


    /* ---------- HERO ---------- */

    .hero {
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 120px 25px 70px;
    }

    .hero-content h1 {
        font-size: clamp(36px, 10vw, 52px);
        line-height: 1.08;
        word-wrap: break-word;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }


    /* ---------- SECTION HEADINGS ---------- */

    .section-title {
        width: 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .section-title p {
        font-size: 14px;
    }


    /* ---------- ABOUT ---------- */

    .about {
        padding: 75px 20px;
    }

    .about-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .about-image {
        width: 100%;
        max-width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        font-size: 34px;
    }


    /* ---------- SERVICES ---------- */

    .services {
        padding: 75px 20px;
    }

    .services-header {
        display: block;
        margin-bottom: 35px;
    }

    .services-header h2 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .services-header > p {
        max-width: 100%;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        width: 100%;
        min-height: auto;
        padding: 30px 25px;
    }


    /* ---------- TEAM ---------- */

    .team {
        padding: 75px 20px;
    }

    .team-founder {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .team-founder-image {
        width: 100%;
        max-width: 100%;
    }

    .team-founder-image img {
        width: 100%;
        height: auto;
    }

    .team-founder-content {
        width: 100%;
    }

    .team-founder-content h3 {
        font-size: 34px;
        line-height: 1.15;
    }

    .founder-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .founder-stat {
        width: 100%;
    }


    /* ---------- CONTACT ---------- */

    .contact {
        padding: 75px 20px;
    }

    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-info {
        width: 100%;
        padding: 35px 25px;
    }

    .contact-info h3 {
        font-size: 32px;
    }

    .contact-form {
        width: 100%;
        padding: 30px 20px;
    }

    .form-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        max-width: 100%;
    }

    .contact-form .btn-primary {
        width: 100%;
    }


    /* ---------- FOOTER ---------- */

    .footer {
        padding: 55px 20px 0;
    }

    .footer-container {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        width: 100%;
    }

    .footer-brand img {
        width: 125px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }


    /* ---------- WHATSAPP ---------- */

    .whatsapp-float {
        width: 54px;
        height: 54px;

        right: 15px;
        bottom: 15px;

        font-size: 25px;
    }

}


/* =========================================
   VERY SMALL PHONES — 480px
========================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 0 16px;
    }

    .logo img {
        width: 105px;
    }

    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .about,
    .services,
    .team,
    .contact {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 27px 22px;
    }

    .team-founder-content h3 {
        font-size: 30px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 25px 16px;
    }

    .footer {
        padding-left: 16px;
        padding-right: 16px;
    }

}


/* =========================================
   TOUCH DEVICES
========================================= */

@media (hover: none) {

    .service-card:hover {
        transform: none;
        box-shadow: none;
    }

    .btn-primary:hover {
        transform: none;
    }

}
/* =========================
   FOOTER SOCIAL MEDIA
========================= */

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-socials a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    font-size: 16px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px);

    background: #ffffff;
    color: #111111;

    border-color: #ffffff;
}

.footer-socials a:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .footer-socials {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

}
/* =========================
   NAVIGATION SOCIAL ICONS
========================= */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-socials a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    text-decoration: none;

    font-size: 14px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.nav-socials a:hover {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-3px);
}


/* =========================
   MOBILE NAVIGATION
========================= */

@media (max-width: 900px) {

    .nav-actions {
        gap: 12px;
    }

    .nav-socials {
        display: none;
    }

}
/* =========================
   MOBILE NAVIGATION FIX
========================= */

@media (max-width: 900px) {

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-button {
        display: none;
    }

    .menu-btn {
        display: flex;
        position: relative;
        z-index: 1001;
    }

}


/* =========================
   SMALL PHONES
========================= */

@media (max-width: 480px) {

    .navbar {
        padding-left: 18px;
        padding-right: 18px;
    }

    .logo img {
        max-width: 145px;
    }

    .menu-btn {
        width: 38px;
        height: 38px;
    }

}
.hero-slogan {
    position: relative;

    font-family: "Playfair Display", serif;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.55;
    font-weight: 500;

    max-width: 680px;
    margin: 22px 0 20px;

    padding-left: 22px;

    letter-spacing: 0.2px;
}

/* Elegant vertical accent */
.hero-slogan::before {
    content: "";
    position: absolute;

    left: 0;
    top: 5px;

    width: 3px;
    height: calc(100% - 10px);

    background: currentColor;
    border-radius: 10px;
}

/* Highlight the key phrase */
.hero-slogan span {
    display: inline-block;

    font-weight: 700;
    font-style: italic;

    margin-left: 4px;

    transition: transform 0.3s ease;
}

.hero-slogan:hover span {
    transform: translateX(4px);
}


/* Mobile */
@media (max-width: 600px) {

    .hero-slogan {
        font-size: 1.15rem;
        line-height: 1.5;

        margin: 18px 0;
        padding-left: 18px;
    }

}
.hero-slogan .gold-text {
    color: #c9a227;
    font-weight: 700;
}