/* ===== NIKAVET — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Custom Properties ===== */
:root {
    --green: #4CAF50;
    --green-dark: #388E3C;
    --green-light: #E8F5E9;
    --green-gradient: linear-gradient(135deg, #4CAF50, #66BB6A);
    --white: #FFFFFF;
    --bg: #FFFFFF;
    --bg-alt: #F8F9FA;
    --bg-card: #FFFFFF;
    --text: #2C3E50;
    --text-muted: #7F8C8D;
    --text-light: #BDC3C7;
    --border: #EEEEEE;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --font: 'Inter', sans-serif;
    --max-width: 1200px;
    --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

a {
    color: var(--green);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--green-dark);
}

/* ===== Container ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-logo span {
    color: var(--green);
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    padding: 8px 14px;
    border-radius: 50px;
    transition: all var(--transition);
    font-size: 14px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--green);
    background: var(--green-light);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a::after {
    content: ' ▾';
    font-size: 11px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 0;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-alt);
}

/* Mobile menu */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    background: var(--green-gradient);
    color: var(--white);
    text-align: center;
    padding: 60px 0 40px;
}

.page-title h1 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 8px;
}

.page-title p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    font-family: var(--font);
}

.btn-primary {
    background: var(--green-gradient);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.45);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Hero Section ===== */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.85) 100%), url('../img/hero-bg.png') center/cover no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08), transparent 70%);
    border-radius: 50%;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 20px;
    color: var(--text);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Grid System ===== */
.grid {
    display: grid;
    gap: 32px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

/* ===== Cards ===== */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Feature cards */
.feature-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--green-gradient);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon span {
    filter: brightness(10);
}

.feature-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* ===== Staff Cards ===== */
.staff-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.staff-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top;
    border-radius: 0;
}

.staff-info {
    padding: 24px;
}

.staff-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.staff-role {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.staff-info p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Reviews ===== */
.review-box {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--green);
    transition: all var(--transition);
}

.review-box:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-name {
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 14px;
}

.review-text {
    color: var(--text-muted);
    line-height: 1.6;
}

.review-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: border-color var(--transition);
}

.form-control:focus {
    border-color: var(--green);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 32px;
}

.price-table {
    width: 100%;
    min-width: 600px;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 0;
}

.price-table thead th {
    background: var(--green-gradient);
    color: var(--white);
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.price-table tbody td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--green-light);
}

.price-table .category-row td {
    background: var(--bg-alt);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.price-section {
    margin-bottom: 48px;
}

.price-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* ===== Contact Info ===== */
.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-block h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-block p {
    color: var(--text-muted);
    font-size: 15px;
}

.contact-block a {
    color: var(--text);
    font-weight: 600;
}

.contact-block a:hover {
    color: var(--green);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== About page ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-content img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.about-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-text p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ===== Grooming ===== */
.grooming-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.grooming-intro img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.grooming-text h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.grooming-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.grooming-includes {
    background: var(--green-light);
    border-radius: var(--radius);
    padding: 24px;
    margin-top: 16px;
}

.grooming-includes h4 {
    margin-bottom: 12px;
    color: var(--green-dark);
}

.grooming-includes li {
    list-style: none;
    padding: 6px 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 24px;
}

.grooming-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

/* ===== Promotions ===== */
.promo-banner {
    background: var(--green-gradient);
    border-radius: var(--radius);
    padding: 48px;
    color: var(--white);
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.promo-banner h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 16px;
}

.promo-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 24px;
}

.promo-price {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    margin: 8px;
    backdrop-filter: blur(5px);
}

/* ===== News cards ===== */
.news-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.news-card-body {
    padding: 24px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.news-card .news-date {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.news-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.news-card .read-more {
    display: inline-block;
    margin-top: 16px;
    font-weight: 600;
    font-size: 14px;
}

/* ===== Instagram ===== */
.instagram-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    padding: 16px 24px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    transition: all var(--transition);
    width: fit-content;
    margin-top: 24px;
}

.instagram-link:hover {
    background: var(--green-light);
    color: var(--green);
}

/* ===== Footer ===== */
.footer {
    background: var(--text);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    padding: 4px 0;
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--green);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--green);
    color: var(--white);
}

/* CouchCMS footer credit banner is blended in footer.php */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .about-content,
    .grooming-intro {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .booking-section {
        grid-template-columns: 1fr !important;
        padding: 24px !important;
        gap: 24px !important;
    }

    .booking-section>div:last-child>div {
        padding: 20px !important;
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .section {
        padding: 60px 0;
    }

    .grooming-intro {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .price-table {
        font-size: 13px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 10px 12px;
    }

    .promo-banner {
        padding: 32px 20px;
    }

    .promo-banner h2 {
        font-size: 24px;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 40px 24px;
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 18px;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        background: var(--bg-light);
        width: 100%;
    }

    .nav-dropdown>a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .grid-5 {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Global Booking Modal ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-alt);
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.modal-close {
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.modal-close:hover {
    color: #e74c3c;
}

.modal-body {
    padding: 24px;
}

.modal-body .form-group {
    margin-bottom: 16px;
}

.modal-body label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.modal-body .form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font);
    background: #fff;
}

.modal-body .form-control:focus {
    border-color: var(--green);
    outline: none;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23b0bec5%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 16px top 50%;
    background-size: 12px auto;
    padding-right: 40px;
}

/* Specific Home Banner Styles */
.hero-staff-banner {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 40px -15px rgba(34, 197, 94, 0.2);
    border: 1px solid #bbf7d0;
    position: relative;
    overflow: hidden;
}

.hero-staff-banner::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-staff-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-staff-content h3 {
    font-size: 32px;
    color: #166534;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-staff-content p {
    font-size: 18px;
    color: #15803d;
    margin-bottom: 24px;
}

.hero-staff-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-service-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-service-buttons .btn {
    font-size: 15px;
    padding: 12px 24px;
    background: #fff;
    color: var(--green-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-service-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    background: var(--green-light);
}

@media (max-width: 768px) {
    .hero-staff-banner {
        flex-direction: column;
        padding: 32px 24px;
        text-align: center;
    }

    .hero-staff-content h3 {
        font-size: 26px;
    }

    .hero-staff-buttons {
        justify-content: center;
    }

    .hero-service-buttons .btn {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .desktop-pdf {
        display: block !important;
    }
}