/* =========================================
   PROFESSIONAL BUSINESS & TAX SERVICES
   PBTS_FLA LLC
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1c2a38;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}


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

.header {
    background: #ffffff;
    border-bottom: 1px solid #e8edf1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    line-height: 1.1;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
    flex-shrink: 0;
}

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

.logo-main {
    font-size: 18px;
    font-weight: 700;
    color: #173b57;
}

.logo-sub {
    font-size: 14px;
    color: #6b7782;
    margin-top: 3px;
}

nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

nav a {
    font-size: 15px;
    color: #42505c;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #173b57;
}

.nav-button {
    background: #173b57;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.nav-button:hover {
    background: #0f2d43;
}


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

.hero {
    background: #f3f7fa;
    min-height: 570px;
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

.hero-text {
    max-width: 760px;
}

.hero-logo {
    width: 285px;
    height: 285px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.eyebrow {
    color: #527995;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.hero h1 {
    color: #173b57;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.hero-description {
    color: #566572;
    font-size: 19px;
    max-width: 700px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.button.primary {
    background: #173b57;
    color: #ffffff;
}

.button.primary:hover {
    background: #0f2d43;
}

.button.secondary {
    background: #ffffff;
    border: 1px solid #cbd6de;
    color: #173b57;
}

.button.secondary:hover {
    background: #eef3f6;
}

.location {
    margin-top: 25px;
    font-size: 14px;
    color: #6b7782;
}


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

.section {
    padding: 95px 0;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 50px;
}

.section-heading h2 {
    color: #173b57;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-heading p {
    color: #687682;
    font-size: 17px;
}


/* =========================================
   SERVICES
   ========================================= */

.services {
    background: #ffffff;
}

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

.service-card {
    border: 1px solid #e2e8ed;
    padding: 35px 30px;
    background: #ffffff;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #c4d3de;
    box-shadow: 0 10px 30px rgba(20, 50, 70, 0.08);
}

.service-mark {
    color: #527995;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.service-card h3 {
    color: #173b57;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    color: #687682;
    font-size: 15px;
    padding: 10px 0 10px 20px;
    border-top: 1px solid #edf0f2;
    position: relative;
}

.service-card li:first-child {
    border-top: none;
}

.service-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #527995;
    font-weight: bold;
}


/* =========================================
   ABOUT
   ========================================= */

.about {
    background: #f3f7fa;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
}

.about-heading h2 {
    color: #173b57;
    font-size: 38px;
    line-height: 1.2;
}

.about-text {
    color: #5f6d78;
    font-size: 16px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-points {
    margin-top: 35px;
    display: grid;
    gap: 20px;
}

.about-points div {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 15px;
    border-top: 1px solid #d7e0e6;
    padding-top: 15px;
}

.about-points strong {
    color: #173b57;
}

.about-points span {
    color: #687682;
}


/* =========================================
   CALL TO ACTION
   ========================================= */

.cta {
    background: #173b57;
    color: #ffffff;
    padding: 75px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.cta .eyebrow {
    color: #b6d0df;
}

.cta h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.cta p {
    color: #d4e0e7;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.button.white {
    background: #ffffff;
    color: #173b57;
}

.button.white:hover {
    background: #edf3f6;
}

.button.outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.button.outline:hover {
    background: #ffffff;
    color: #173b57;
}


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

.contact {
    background: #ffffff;
}

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

.contact-card {
    border-top: 3px solid #173b57;
    background: #f6f8fa;
    padding: 30px;
}

.contact-card h3 {
    color: #173b57;
    margin-bottom: 15px;
}

.contact-card p {
    color: #64727d;
    margin-bottom: 20px;
}

.contact-card a {
    color: #416e8b;
    font-weight: 600;
}

.contact-card p a {
    font-weight: normal;
}


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

.footer {
    background: #102b40;
    color: #ffffff;
    padding: 35px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-name {
    font-weight: 700;
    font-size: 16px;
}

.footer p {
    color: #b9c7d1;
    font-size: 13px;
    margin-top: 5px;
}

.footer-right {
    text-align: right;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

    nav {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        padding: 30px 26px;
    }

    .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }

    .hero-logo {
        width: 190px;
        height: 190px;
        align-self: center;
    }

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

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

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


/* =========================================
   MOBILE PHONE
   ========================================= */

@media (max-width: 600px) {

    .container {
        width: 90%;
    }

    .header {
        position: relative;
    }

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

    .brand {
        gap: 8px;
    }

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

    .logo-main {
        font-size: 16px;
    }

    .logo-sub {
        font-size: 12px;
    }

    .nav-button {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 55px 0;
    }

    .hero-logo {
        width: 155px;
        height: 155px;
    }

    .eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .hero h1 {
        font-size: 36px;
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.65;
    }

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

    .hero-buttons .button {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

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

    .service-card {
        padding: 28px 24px;
    }

    .service-card h3 {
        font-size: 21px;
    }

    .service-card li {
        font-size: 14px;
        line-height: 1.5;
    }

    .about-grid {
        gap: 30px;
    }

    .about-heading h2 {
        font-size: 30px;
    }

    .about-points div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 30px;
    }

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

    .cta-buttons .button {
        width: 100%;
        text-align: center;
    }

    .contact-card {
        padding: 25px;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-content {
        flex-direction: column;
    }

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