/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ===== THIN TEAL LINE AT VERY TOP ===== */
body::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: #2cc5e3;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

/* Push header down so line doesn't overlap */
.site-header {
    position: sticky;
    top: 4px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Top bar */
.top-bar {
    background-color: #333;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.phone-info {
    color: #ccc;
    font-size: 13px;
    font-family: 'Lato', sans-serif;
}

    .phone-info a {
        color: #2cc5e3;
        font-weight: 700;
    }

        .phone-info a:hover {
            text-decoration: underline;
        }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #2cc5e3;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    transition: background 0.2s;
}

    .social-links a:hover {
        background: #1aa8c4;
    }

/* Main header */
.main-header {
    background: #fff;
    border-bottom: 2px solid #eee;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo {
    height: 51px;
    width: auto;
}

/* Nav */
.main-nav {
    display: flex;
    align-items: center;
}

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

    .nav-menu li a {
        display: block;
        padding: 8px 14px;
        font-family: 'Oswald', sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #444;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: color 0.2s;
        border-bottom: 3px solid transparent;
    }

        .nav-menu li a:hover,
        .nav-menu li a.active {
            color: #2cc5e3;
            border-bottom-color: #2cc5e3;
        }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    height: 55vw;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.06);
    pointer-events: none;
}

/* Hero content wrapper — covers full banner area */
.hero-content {
}

.here-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .here-list li:last-child {
        border-bottom: none;
    }

    .here-list li a {
        color: #2cc5e3;
        font-size: 15px;
        font-weight: 400;
        font-family: 'Lato', sans-serif;
        text-decoration: underline;
        text-decoration-color: rgba(44,197,227,0.5);
        transition: color 0.2s;
    }

        .here-list li a:hover {
            color: #fff;
        }

    .here-list li .fa-check {
        color: #2cc5e3;
        font-size: 16px;
        flex-shrink: 0;
        margin-left: 12px;
    }


/* ===== ATTORNEY SECTION ===== */
.attorney-section {
    background: rgba(255,255,255,0.5);
    padding: 90px 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

    .section-title h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 26px;
        font-weight: 600;
        color: #333;
        white-space: nowrap;
        text-align: center;
    }

.title-line {
    flex: 1;
    height: 2px;
    background: #e0dede;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

    .title-line.dark {
        background: #555;
        border-color: #555;
    }

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

.attorney-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.attorney-photo {
    flex: 0 0 450px;
    max-width: 450px;
    overflow: hidden;
}

    .attorney-photo img {
        width: 100%;
        transition: transform 0.4s ease;
    }

    .attorney-photo:hover img {
        transform: scale(1.04);
    }

.attorney-bio {
    flex: 1;
}

    .attorney-bio p {
        margin-bottom: 18px;
        color: #444;
        line-height: 1.75;
        font-size: 15px;
    }

.btn-read-more {
    display: inline-block;
    background: #2cc5e3;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 10px 28px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.2s;
}

    .btn-read-more:hover {
        background: #1aa8c4;
        transform: translateY(-1px);
    }

/* ===== PRACTICE AREAS SECTION ===== */
.practice-areas-section {
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 75px 0 0;
    background-color: #404040;
}

.practice-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40,40,40,0.72);
}

.practice-areas-section .container {
    position: relative;
    z-index: 2;
}

.practice-areas-section .section-title {
    margin-bottom: 30px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}

.practice-card {
    color: #f7f7f7;
    text-align: center;
}

    .practice-card a {
        color: #fff;
        display: block;
        margin-bottom: 12px;
    }

        .practice-card a:hover h3 {
            color: #2cc5e3;
        }

.practice-icon {
    margin-bottom: 12px;
    overflow: hidden;
}

    .practice-icon i {
        font-size: 50px;
        color: #fff;
        display: inline-block;
        transition: transform 0.35s ease, color 0.35s ease;
    }

/* On hover: slide icon to the right and turn teal */
.practice-card a:hover .practice-icon i {
    color: #2cc5e3;
    transform: translateX(10px);
}

.practice-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.practice-card p {
    font-size: 14px;
    color: #f0f0f0;
    line-height: 1.65;
    text-align: center;
}

/* ===== TEAL CONTACT FOOTER BAR ===== */
.no-fees-section {
    background-color: #2cc5e3;
    padding: 0;
}

.no-fees-inner {
    display: flex;
    align-items: stretch;
    min-height: 150px;
}

/* Left half — "No Fees" text (homepage) or blank (inner pages) */
.no-fees-text {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 40px 40px 30px;
}

.no-fees-heading {
    font-family: 'Lato', sans-serif;
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    line-height: 1.2;
}

    .no-fees-heading span {
        font-weight: 700;
    }

/* Right half — address block */
.contact-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

    .contact-info-block h4 {
        font-family: 'Lato', sans-serif;
        font-size: 26px;
        font-weight: 400;
        color: #fff;
        margin-bottom: 6px;
        display: block;
    }

    .contact-info-block .address-line {
        font-family: 'Lato', sans-serif;
        font-size: 22px;
        font-weight: 400;
        color: #fff;
        display: block;
        line-height: 1.4;
        text-align: center;
    }

/* Inner pages: address only, centered across full width */
.no-fees-section.address-only .no-fees-inner {
    justify-content: flex-end;
}

.no-fees-section.address-only .no-fees-text {
    display: none;
}

.no-fees-section.address-only .contact-info-block {
    flex: 1;
}

/* ===== FOOTER WIDGET AREA ===== */
.site-footer {
    background: #fff;
    padding: 30px 0 24px;
    border-top: 1px solid #e8e8e8;
}

.footer-inner {
    text-align: left;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

    .footer-links a {
        color: #555;
        font-size: 14px;
        font-family: 'Lato', sans-serif;
        transition: color 0.2s;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #2cc5e3;
        }

.call-today {
    color: #111;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    margin-bottom: 20px;
}

    .call-today strong {
        font-weight: 700;
    }

.pee-dee h3 {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #2cc5e3;
    margin-bottom: 8px;
}

.pee-dee p {
    color: #747474;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
}

/* ===== COPYRIGHT BAR ===== */
.copyright-bar {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 14px 0;
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: #888;
    font-family: 'Lato', sans-serif;
}

    .copyright-inner a {
        color: #888;
    }

        .copyright-inner a:hover {
            color: #2cc5e3;
        }

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #2cc5e3;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s;
}

    .footer-social a:hover {
        background: #1aa8c4;
    }

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .no-fees-inner {
        flex-direction: column;
    }

    .no-fees-text,
    .contact-info-block {
        padding: 30px 20px;
        text-align: center;
        align-items: center;
    }

    .no-fees-heading {
        font-size: 26px;
        text-align: center;
    }

    .contact-info-block .address-line {
        font-size: 18px;
    }
}

.im-here-box {
    background-color: rgba(0, 0, 0, 0.71);
    position: absolute;
    left: 48%;
    top: 44%;
    padding: 1% 1.5% 2%;
}

    .im-here-box h1 {
        color: white;
        font-size: 1em;
        font-weight: normal;
    }

    .im-here-box i.fas {
        color: white;
    }
/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
}

@media (max-width: 768px) {
    /* Mobile nav */
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 2px solid #eee;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        z-index: 999;
    }

        .nav-menu.open {
            display: flex;
        }

        .nav-menu li {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

            .nav-menu li a {
                padding: 14px 20px;
                border-bottom: none;
            }

    .main-header {
        position: relative;
    }
}

@media only screen and (max-width: 640px) {
    @media (max-width: 600px) {
        .attorney-section {
            padding: 60px 0;
        }
    }

    .im-here-box {
        width: 100%;
        height: 20vw;
    }

    .hero-content .im-here-box {
        background-color: rgba(0, 0, 0, 0.71);
        position: absolute;
        left: 48%;
        top: 44%;
        padding: 1% 1.5% 2%;
    }

        .hero-content .im-here-box h1 {
            font-size: 3vw;
            font-weight: 400;
            margin-top: 0;
            margin-bottom: 2%;
        }

        .hero-content .im-here-box .florenList {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .hero-content .im-here-box ul li {
            margin-bottom: 4%;
            position: relative;
            padding-right: 8%;
        }

            .hero-content .im-here-box ul li a {
                font-size: 1.5vw;
                line-height: 1;
                text-decoration: underline;
            }

            .hero-content .im-here-box ul li .fontawesome-icon {
                float: right;
                font-size: 1.5vw;
                position: absolute;
                right: 0;
                top: 0;
                margin-right: 0;
            }

            .hero-content .im-here-box ul li:last-child {
                margin-bottom: 0;
            }

        .hero-content .im-here-box ul.florenList {
        }
}

@media only screen and (max-width: 1280px) {
    .hero-content {
        height: 60vw;
    }

    .practiceArea {
        top: 15vw;
        right: 9vw;
    }

        .practiceArea li a {
            font-size: 1.1vw;
        }

    .hero-content .im-here-box ul li {
        line-height: 1.5;
    }
}

@media only screen and (max-width: 1024px) {
    .hero-content .im-here-box {
        width: 36%;
    }

    .practiceArea li {
        line-height: 1.2;
    }

    .hero-content .im-here-box ul li a {
        font-size: 1.5vw;
    }

    .hero-content .im-here-box ul li .fontawesome-icon {
        top: 30%;
    }
}

@media only screen and (max-width: 640px) {
    .hero-content {
        height: 57vw;
    }

    .practiceArea {
        top: 14vw;
        right: 6vw;
    }

        .practiceArea li {
            line-height: 0.8;
        }

            .practiceArea li a {
                font-size: 1.4vw;
            }

    .hero-content .im-here-box ul li {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 480px) {
    .practiceArea li {
        line-height: 0.5;
    }

        .practiceArea li a {
            font-size: 1.6vw;
        }

    .hero-content .im-here-box {
        width: 46%;
    }

        .hero-content .im-here-box ul li a {
            font-size: 1.5vw;
        }

        .hero-content .im-here-box ul li .fontawesome-icon {
            top: 50%;
        }
}

.practice-area-list {
    position: absolute;
    right: 10.5vw;
    padding: 0;
    margin: 0;
    top: 12vw;
}

    .practice-area-list li {
        list-style: none;
        line-height: 1.6;
    }

        .practice-area-list li a {
            color: #fff;
            font-size: 17px;
        }


@media only screen and (max-width: 1680px) {
    .practice-area-list {
        right: 9.5vw;
        top: 6.5vw;
    }
}

@media only screen and (max-width: 1600px) {
    .practice-area-list {
        top: 12vw;
    }
}

@media only screen and (max-width: 1440px) {
    .practice-area-list {
        right: 8.5vw;
    }
}

@media only screen and (max-width: 1366px) {
    .practice-area-list {
        top: 11.5vw;
        right: 7.5vw;
    }
}

@media only screen and (max-width: 1280px) {
    .heroBanner {
        height: 60vw;
    }

    .practice-area-list {
        top: 11vw;
        right: 9vw;
    }

        .practice-area-list li a {
            font-size: 1.1vw;
        }

    .heroBanner .im-here-box ul li {
        line-height: 1.5;
    }
}

@media only screen and (max-width: 1024px) {
    .heroBanner .im-here-box {
        width: 36%;
    }

    .practice-area-list li {
        line-height: 1.2;
    }

    .heroBanner .im-here-box ul li a {
        font-size: 1.5vw;
    }

    .heroBanner .im-here-box ul li .fontawesome-icon {
        top: 30%;
    }
}

@media only screen and (max-width: 640px) {
    .heroBanner {
        height: 57vw;
    }

    .practice-area-list {
        /* top: 14vw; */
        right: 6vw;
    }

        .practice-area-list li {
            line-height: 0.8;
        }

            .practice-area-list li a {
                font-size: 1.4vw;
            }
}

@media only screen and (max-width: 480px) {
    .practice-area-list li {
        line-height: 0.5;
    }

        .practice-area-list li a {
            font-size: 1.6vw;
        }
}
