﻿/* ============================================
  VETS 77 - MAIN STYLESHEET
   ============================================ */

/* RESET & BASE STYLES */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #001A4B;
    --color-secondary: #00A9C8;
    --color-dark: #1a1a1a;
    --color-light: #f5f5f5;
    --color-gray: #666666;
    --color-white: #ffffff;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;


    /* Spacing scale */
    --space-xs: 10px;
    --space-sm: 20px;
    --space-md: 40px;
    --space-lg: 60px;
    --space-xl: 80px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

html,
body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background: var(--color-white);
    line-height: 1.6;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background: var(--color-white);
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    gap: 20px;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-img {
    height: 70px;
    width: auto;
}

.nav-photo-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    height: 80px;
}

.company-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

/* ===== HEADER & NAVIGATION ===== */

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0 20px;

}

.nav-menu a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    padding-right: 22px;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
}

/* Tablet */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    
    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        height: 44px;
        width: auto;
    }

    .right-logo {
        display: none;
    }
    
    .nav-toggle {
        display: block;
        margin-left: auto;
        flex: 0 0 auto;
    }

    .left-logo {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        z-index: 2000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 0;
        font-size: 16px;
    }

    .nav-menu a::after,
    .nav-menu a.active::before {
        display: none;
    }
}


/* Centered, text-relative underline */
@media (min-width: 769px) {
    /* .nav-menu a.active::before {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 35%;
        transform: translateX(-50%);
        width: calc(100% - 22px);
        max-width: 70%;
        height: 2px;
        background-color: var(--color-primary);
        border-radius: 2px;
    } */

    .nav-menu a.active::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: calc(100% - 22px);
        max-width: 80%;
        height: 2px;
        background-color: var(--color-primary);
        border-radius: 2px;
    }

    .nav-menu a:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%);
        height: 18px;
        width: 2px;
        background-color: var(--color-primary);
    }
}

.card .features-list {
    text-align: left;
}

.card .features-list li {
    line-height: 1.4;
    padding: 6px 0;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.section {
    margin-top: var(--space-xs);
}

section[class*="hero"] h1 {
    font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    padding: 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition:
        transform 0.25s ease-out,
        box-shadow 0.25s ease-out,
        border-color 0.25s ease-out;
    text-decoration: none;
    display: inline-block;
    pointer-events: auto;
}

.btn-primary {
    background: white;
    color: var(--color-primary);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(26, 155, 142, 0.18);
    border-color: var(--color-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
}

.hero .btn-secondary {
    color: #fff;
    border-color: #fff;
}

.hero .btn-secondary:hover {
    background: #fff;
    color: var(--color-primary);
}

#service-delivery {
    scroll-margin-top: 90px;
}

#pricing-hero {
    scroll-margin-top: 30px;
}

/* ===== CONTENT SECTIONS ===== */
.hero+.container {
    padding-top: 24px;
}

.flagship-section+.pricing-preview {
    padding-top: 12px;
}

.pricing-preview+.solution-cta {
    margin-top: 12px;
}

.hpod-detail-grid+.container {
    padding-top: 24px;
}

.pricing-selector {
    margin-bottom: 24px;
}

.pricing-selector+.pricing-content {
    padding-top: 24px;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) 20px;
}

.container {
    position: relative;
    z-index: 1;
}

.hpod-detail-grid {
    margin-top: 24px;
}

.hpod-detail-grid .card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hpod-detail-grid .features-list li {
    padding: 6px 0;
    line-height: 1.4;
}

.hpod-detail-grid p {
    font-size: 15px;
    line-height: 1.6;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-gray);
    margin-bottom: 20px;
    text-align: center;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

.solution-cta {
    margin: 20px 0;
}

.solution-cta-text {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: var(--color-dark);
}

.ai-badge-link {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.solution-cta .ai-badge-link {
    font-size: 14px;
    line-height: 1.3;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 24px;
}

.page-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-nav>* {
    flex: 0 0 auto;
    /* ⬅ prevents stretch */
}

.page-nav:last-child {
    margin-bottom: 24px;
}

.grid {
    display: grid;
    gap: 30px;
    margin-top: 10px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* ===== CARD COMPONENTS ===== */
.card {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}


@media (hover: hover) {
    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(26, 155, 142, 0.15);
    }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
}

.card-svg {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.card p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ===== Card variant: narrative / text-heavy ===== */
.card-narrative {
    text-align: left;
}

.card-narrative p {
    text-align: center;
    text-justify: inter-word;
    line-height: 1.6;
}

.customer-success-card {
    padding: 32px;
}

.customer-success-card p {
    text-align: left;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.customer-success-card p strong {
    display: block;
    margin-bottom: 6px;
}

.leadership-section {
    padding: 80px 24px;
}

.leadership-text h3 {
    margin-bottom: 16px;
}

.leadership-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

.leadership-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.leadership-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.leadership-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.leadership-content h2 {
    margin-bottom: 16px;
}

.leadership-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

/* ===== IMAGE SECTION ===== */
.image-section {
    margin: 40px 0;
    text-align: center;
}

.image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ai-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 15px;
}

/* ===== FEATURES LIST ===== */
.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 16px;
}

.features-list li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: 700;
    font-size: 18px;
    width: 24px;
    flex-shrink: 0;
    text-align: left;
}


.features-list li strong {
    display: block;
    flex-shrink: 0;
    width: 150px;
    white-space: normal;
}

/* ===== Services page: desktop spacing cleanup ===== */

#services .section {
    margin-top: 32px;
}

#services .container-tight {
    margin-bottom: 28px;
}

#services .section-title {
    margin-top: 0;
}

#services .grid {
    margin-top: 4px;
}

#services .hpod-detail-grid {
    margin-top: 16px;
}

/* ===== PetOwners: tighten transition to "Who We Work With" ===== */

#petOwners p.section-subtitle[style] {
    margin-bottom: 4px;
}

#petOwners .petOwners-core {
    padding-top: 8px;
}

#petOwners .contact-info {
    margin-bottom: 8px;
}

#petOwners .container-tight {
    padding-top: 8px;
}

#petOwners .container-tight .section-title {
    margin-top: 8px;
}

#about .leadership-intro p:last-of-type {
    margin-bottom: 8px;
}

#about .leadership-section {
    padding-top: 24px;
    padding-bottom: 32px;
}

/* ===== About page: Leadership → Explore More spacing ===== */

#about .container-tight {
    padding-top: 8px;
}

#about .container-tight .section-title {
    margin-top: 8px;
}

.ceo-content p {
    margin-bottom: 12px;
}

.ceo-content p:last-child {
    margin-bottom: 0;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-content p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .mission-content p {
        text-align: left;
    }
}

/* ===== Leadership section ===== */

.leadership-intro {
    max-width: 800px;
    margin: 0 auto 32px;
}

.leadership-intro p {
    font-size: 16px;
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: justify;
}

/* CEO card emphasis */
.ceo-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(26, 155, 142, 0.3);
    box-shadow: 0 12px 30px rgba(26, 155, 142, 0.12);
}

.ceo-card p {
    text-align: justify;
    line-height: 1.6;
}

/* Slightly constrain CEO text width for readability */
.ceo-content {
    max-width: 540px;
}

.leadership-text {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}


/* ===== FOOTER ===== */
footer {
    background: var(--color-dark);
    color: white;
    padding: 30px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: white;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: #ccc;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--color-secondary);
}

.footer-bottom {
    text-align: center;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 13px;
    color: #888;
}

.footer-social {
    margin-top: 16px;
    margin-bottom: 8px;
    width: 60px;
    height: 60px;
    padding-left: 32px;
    justify-content: flex-start;
}

.footer-social svg {
    width: 50px;
    height: 50px;
}

.pricing-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-6px);
}

.pricing-detail {
    display: none;
    margin-top: 20px;
    scroll-margin-top: 110px;
}

/* .trust-strip {
    background: var(--color-light);
    border-radius: 12px;
    padding: 50px 30px;
    margin-top: 20px;
} */

/* .trust-item {
    text-align: center;
}

.trust-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
} */

/* .pricing-preview {
    margin-top: 10px;
}

.pricing-preview-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-preview-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
}

.pricing-preview-cta {
    text-align: center;
    margin-top: 30px;
} */

/* .flagship-section {
    margin-top: 20px;
} */

.video-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.petOwners-how {
    padding-bottom: 32px;
}

.petOwners-core {
    padding-top: 32px;
}

.petOwners-emerging {
    padding-top: 24px;
    background: #fafafa;
}

.petOwners-emerging+.container {
    padding-top: 32px;
}

.petOwners-principles {
    max-width: 800px;
    margin: 0 auto;
}

.petOwners-how+.petOwners-core {
    padding-top: 16px;
}

#about .card {
    max-width: 900px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section p {
    line-height: 1.5;
}

.footer-section a {
    display: block;
    margin: 6px 0;
}

.footer-section:last-child p {
    font-size: 14px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 52px;
    width: auto;
    flex-shrink: 0;
}

.footer-brand-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: white;
    padding: 24px 20px;
    text-align: center;
}

.about-hero+.container {
    padding-top: 24px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.value-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.value-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

/* ===== CONTACT SECTION ===== */

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-item h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--color-gray);
    margin: 5px 0;
}

/* ================================================================ RESPONSIVE ================================================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 15px;
    }
}


@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .nav-menu {
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .page-nav {
        flex-direction: column;
        gap: 12px;
    }

    .page-nav .btn {
        width: 100%;
        max-width: 320px;
    }

    .ceo-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .logo-img {
        height: 48px;
    }

    .mobile-logo {
        display: block;
        height: 44px;
        width: auto;
    }

    .left-logo .desktop-logo {
        display: none;
    }

    .left-logo .mobile-logo {
        display: block;
    }

    .company-name {
        font-size: 16px;
    }

    .leadership-card {
        padding: 24px;
    }

    .ceo-photo {
        width: 96px;
        height: 96px;
    }

    .footer-logo {
        height: 40px;
    }

    .footer-content {
        gap: 28px;
    }

    .card {
        padding: 22px;
    }

    .card-icon {
        margin-bottom: 14px;
    }

    .card-svg {
        margin-bottom: 14px;
    }

    .card h3 {
        font-size: 17px;
    }

    .grid-2 {
        gap: 30px;
    }

    .grid-2 p {
        font-size: 15px;
        line-height: 1.6;
    }

    header .nav-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 9999;
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        overflow: hidden;
        pointer-events: none;
        transition:
            max-height 0.7s ease,
            opacity 0.45s ease,
            transform 0.7s cubic-bezier(.16, 1, .3, 1);
    }

    header .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        max-height: 80vh;
        overflow-y: auto;
    }

    header .nav-menu a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
    }

    header .nav-menu a::after,
    header .nav-menu a::before {
        display: none;
    }

    .container,
    .container-tight {
        padding-left: 10px;
        padding-right: 10px;
    }

    .flagship-section,
    .pricing-preview,
    .solution-cta,
    .hero {
        padding-left: 10px;
        padding-right: 10px;
    }

    .video-cta-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .video-cta-subtitle {
        max-width: 160px;
        margin: 0 auto;
    }

    .video-cta-subtitle div {
        font-size: 12px;
        line-height: 1.35;
        white-space: nowrap;
    }

    .flagship-section .card img {
        object-position: 46% 45%;
    }

    .section-subtitle,
    .hero p {
        padding-left: 0;
        padding-right: 0;
    }

    .grid,
    .grid-2,
    .grid-3,
    .hpod-detail-grid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .grid .card,
    .grid-2 .card,
    .grid-3 .card,
    .hpod-detail-grid .card {
        width: 100%;
    }

    #services>div[style*="text-align: center"]>p:last-of-type {
        padding-left: 10px;
        padding-right: 10px;
    }

    .customer-success-card {
        margin-left: 10px;
        margin-right: 10px;
    }

    .leadership-section .leadership-cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .leadership-section .leadership-card {
        width: 100%;
    }

    .about-actions .btn {
        padding-left: 16px;
        padding-right: 16px;
    }

    header .nav-menu .cta-button {
        background: none;
        padding: 12px 0;
        border-radius: 0;
        font-weight: 600;
        color: var(--color-secondary);
        margin-left: 0;
    }

    header .nav-menu .cta-button:hover {
        background: none;
        opacity: 0.85;
    }

    header .nav-menu a.cta-button {
        background: none;
        color: #1a9b8e;
        font-weight: 600;
        padding: 12px 0;
    }
}

     /* Table Styles - Matches your screenshot */
        .pricing-table {
            max-width: 600px;
            margin: 20px auto;
            font-family: 'Poppins', sans-serif;
            border-collapse: collapse;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            background: white;
        }
        .pricing-table th,
        .pricing-table td {
            padding: 12px 16px;
            text-align: left;
            border: 1px solid #ddd;
            font-size: 14px;
        }
        .pricing-table th {
            background: #001A4B; /* Your primary blue */
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
        }
        .pricing-table td {
            background: #f9f9f9;
            transition: background 0.2s;
        }
        .pricing-table tr:hover td {
            background: #e3f4ff;
        }
        .pricing-table tr:nth-child(even) td {
            background: #f5f5f5;
        }
        .service-name {
            font-weight: 500;
            color: #001A4B;
        }
        .price {
            font-weight: 600;
            color: #00A9C8; /* Secondary blue */
            font-size: 15px;
        }
        .sub-price {
            font-size: 13px;
            color: #666;
            font-weight: 400;
        }
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .pricing-table {
                font-size: 13px;
                margin: 10px;
            }
            .pricing-table th,
            .pricing-table td {
                padding: 10px 8px;
            }
        }