/* ============================================================
   Stephen Russell Pet Sitting - Complete Design System
   ============================================================
   A modern, mobile-first CSS design system.
   No frameworks — pure custom CSS.
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS (Custom Properties)
   ============================================================ */
:root {
    /* Brand Greens */
    --color-primary:       #2D6A4F;
    --color-primary-dark:  #1B4332;
    --color-light-green:   #52B788;
    --color-accent-green:  #95D5B2;
    --color-pale-green:    #D8F3DC;
    --color-pale-green-bg: #F0FFF4;

    /* Neutrals */
    --color-white:      #FFFFFF;
    --color-off-white:  #F8FAF9;
    --color-dark-slate: #1B2A2A;
    --color-text:       #2D3436;
    --color-muted:      #636E72;
    --color-light-gray: #E8EDEC;
    --color-border:     #DEE2E1;

    /* Semantic */
    --color-error:   #D63031;
    --color-warning: #FDCB6E;
    --color-success: #00B894;
    --color-info:    #0984E3;

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --line-height: 1.6;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm:  0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md:  0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-nav: 0 2px 8px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Layout */
    --container-max: 1200px;
    --navbar-height: 70px;
    --sidebar-width: 260px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: var(--line-height);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    text-decoration: underline;
    color: var(--color-primary-dark);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--color-dark-slate);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-size: 1rem;
    line-height: var(--line-height);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.125rem;
    color: var(--color-muted);
    line-height: 1.7;
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: 0.875rem;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    user-select: none;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn:focus-visible {
    outline: 3px solid var(--color-accent-green);
    outline-offset: 2px;
}

/* Primary */
.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-white);
}

/* Secondary */
.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Outline */
.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-pale-green);
    color: var(--color-primary);
}

/* Danger */
.btn-danger {
    background-color: var(--color-error);
    color: var(--color-white);
    border-color: var(--color-error);
}

.btn-danger:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    color: var(--color-white);
}

/* Sizes */
.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-light-gray);
    z-index: 1000;
    height: var(--navbar-height);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Brand --- */
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-brand:hover {
    text-decoration: none;
}

.navbar-logo {
    height: 64px;
    width: auto;
    display: block;
}

/* --- Menu Links --- */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-md);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.navbar-menu a:hover {
    color: var(--color-primary);
    background-color: var(--color-pale-green-bg);
    text-decoration: none;
}

.navbar-menu a.active {
    color: var(--color-primary);
    background-color: var(--color-pale-green);
    font-weight: 600;
}

/* --- CTA Button --- */
.navbar-cta-item {
    margin-left: 0.75rem;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background-color: var(--color-primary);
    color: #fff !important;
    padding: 0.5rem 1.125rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(45, 106, 79, 0.2);
}

.navbar-cta:hover {
    background-color: var(--color-primary-dark);
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(45, 106, 79, 0.25);
}

.navbar-cta:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(45, 106, 79, 0.2);
}

/* Hamburger Toggle */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-dark-slate);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
    padding: 4rem 0 5rem;
    background: linear-gradient(135deg, var(--color-pale-green) 0%, var(--color-pale-green-bg) 100%);
    text-align: center;
}

.hero.hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0 7rem;
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 43, 43, 0.65) 0%, rgba(45, 106, 79, 0.45) 100%);
    z-index: 1;
}

.hero.hero-bg .container {
    position: relative;
    z-index: 2;
}

.hero.hero-bg h1 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero.hero-bg .lead {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hero .lead {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
}

.hero .btn {
    margin-top: 2rem;
}

/* ============================================================
   7. CARDS
   ============================================================ */
.card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-light-gray);
    overflow: hidden;
    transition: box-shadow var(--transition-base), transform var(--transition-base);
    position: relative;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.card-body {
    padding: 1.5rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background-color: var(--color-pale-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon img,
.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    line-height: 1.4;
}

/* ============================================================
   8. SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.services-grid .card {
    padding: 1.75rem 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid .card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
}

.services-grid .card-icon img,
.services-grid .card-icon svg {
    width: 28px;
    height: 28px;
}

.services-grid .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-grid .card-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex: 1;
}

.services-grid .card .btn {
    margin-top: auto;
}

.services-grid .card-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.services-grid .card-body p {
    font-size: 0.9375rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.services-grid .card-body a {
    font-size: 0.9375rem;
    font-weight: 600;
}

/* ============================================================
   9. HOW IT WORKS — TIMELINE
   ============================================================ */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.timeline-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--color-muted);
    font-size: 0.9375rem;
}

/* ============================================================
   10. SECTIONS
   ============================================================ */
.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--color-off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.0625rem;
}

/* ============================================================
   11. AREAS SERVED
   ============================================================ */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.area-tag {
    display: inline-block;
    background-color: var(--color-pale-green);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

.area-tag:hover {
    background-color: var(--color-accent-green);
    color: var(--color-primary-dark);
    text-decoration: none;
}

/* ============================================================
   12. TRUST BADGES
   ============================================================ */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-item .card-icon {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
}

.trust-item h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--color-muted);
    font-size: 0.9375rem;
}

/* ============================================================
   13. CONTACT FORM
   ============================================================ */
.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
    color: var(--color-dark-slate);
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.form-control.error {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(214, 48, 49, 0.1);
}

.form-control::placeholder {
    color: #B2BEC3;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636E72' d='M6 8.825L0.575 3.4l1.05-1.05L6 6.725l4.375-4.375 1.05 1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    appearance: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.form-select.error {
    border-color: var(--color-error);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: var(--color-error);
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    min-height: 1.2em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

/* ============================================================
   14. CONTACT INFO BLOCK
   ============================================================ */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-info-item svg,
.contact-info-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-info a {
    color: var(--color-primary);
    font-weight: 500;
}

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

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
    background-color: #1B2A2A;
    color: #b0bfbf;
    padding: 0;
    font-size: 0.9rem;
}

.footer-contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-link:hover {
    color: var(--color-accent-green, #52B788);
    text-decoration: none;
}

.footer-contact-link svg {
    opacity: 0.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
}

.footer h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #8fa3a3;
    margin: 0 0 1rem;
}

.footer-address {
    font-style: normal;
    font-size: 0.85rem;
    color: #8fa3a3;
    margin-bottom: 1.25rem;
}

.footer-address span {
    display: block;
    line-height: 1.6;
}

.footer a {
    color: #c8d8d8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.88rem;
    color: #8fa3a3;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #8fa3a3;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
    background: var(--color-primary, #2D6A4F);
    color: #fff;
}

.footer-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-area-tag {
    display: inline-block;
    padding: 0.3rem 0.7rem;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.06);
    color: #8fa3a3;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s, color 0.2s;
}

.footer-area-tag:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.8rem;
    color: #5e7575;
}

.footer-bottom p {
    margin: 0.15rem 0;
}

/* ============================================================
   16. ALERTS / FLASH MESSAGES
   ============================================================ */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border-left: 4px solid transparent;
    font-size: 0.9375rem;
    position: relative;
}

.alert-success {
    background-color: #E6FFF5;
    border-left-color: var(--color-success);
    color: #0A6B4C;
}

.alert-error {
    background-color: #FFEAEA;
    border-left-color: var(--color-error);
    color: #A52020;
}

.alert-info {
    background-color: #E8F4FD;
    border-left-color: var(--color-info);
    color: #0767B2;
}

.alert-warning {
    background-color: #FFF9E6;
    border-left-color: var(--color-warning);
    color: #8B6914;
}

/* ============================================================
   17. ADMIN LAYOUT
   ============================================================ */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    background-color: var(--color-dark-slate);
    color: var(--color-white);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 900;
    overflow-y: auto;
}

.admin-sidebar-brand {
    padding: 1.25rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    text-decoration: none;
}

.admin-sidebar-brand:hover {
    text-decoration: none;
    color: var(--color-white);
}

.admin-sidebar-nav {
    list-style: none;
    padding: 1rem 0.75rem;
    margin: 0;
    flex: 1;
}

.admin-sidebar-nav li {
    margin-bottom: 0.25rem;
}

.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.admin-sidebar-nav a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    text-decoration: none;
}

.admin-sidebar-nav a.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.admin-sidebar-nav a svg,
.admin-sidebar-nav a img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.8;
}

/* Main Content */
.admin-main {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 2rem;
    background-color: var(--color-off-white);
    overflow-y: auto;
    min-height: 100vh;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0;
}

/* Admin Cards */
.admin-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.admin-stat {
    text-align: center;
    padding: 1.5rem 1rem;
}

.admin-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.admin-stat .stat-label {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* ============================================================
   18. TABLE (Admin)
   ============================================================ */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th {
    background-color: var(--color-off-white);
    padding: 0.75rem;
    border-bottom: 2px solid var(--color-border);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
    white-space: nowrap;
}

.table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-light-gray);
    vertical-align: middle;
    font-size: 0.9375rem;
}

.table tr:hover td {
    background-color: var(--color-pale-green-bg);
}

.table tr:last-child td {
    border-bottom: none;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
    white-space: nowrap;
}

.badge-new {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.badge-contacted {
    background-color: #FEF3C7;
    color: #92400E;
}

.badge-scheduled {
    background-color: #D1FAE5;
    color: #065F46;
}

.badge-completed {
    background-color: var(--color-light-gray);
    color: var(--color-dark-slate);
}

/* ============================================================
   19. ADMIN LOGIN
   ============================================================ */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-pale-green) 0%, var(--color-pale-green-bg) 100%);
    padding: 1.5rem;
}

.login-card {
    background-color: var(--color-white);
    max-width: 400px;
    width: 100%;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.login-card h1 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-card .lead {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9375rem;
}

.login-card .form-group:last-of-type {
    margin-bottom: 1.5rem;
}

.login-card .btn {
    width: 100%;
}

/* ============================================================
   19b. ADMIN ENQUIRY CARDS
   ============================================================ */
.enquiry-card {
    padding: 0;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.enquiry-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: background-color 0.15s ease;
    gap: 1rem;
    user-select: none;
}

.enquiry-summary:hover {
    background-color: var(--color-pale-green-bg);
}

.enquiry-summary-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.enquiry-summary-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.enquiry-summary-info strong {
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.enquiry-summary-info .text-sm {
    color: var(--color-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.enquiry-summary-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.enquiry-chevron {
    font-size: 0.7rem;
    color: var(--color-muted);
    transition: transform 0.25s ease;
    line-height: 1;
}

.enquiry-detail {
    border-top: 1px solid var(--color-light-gray);
    padding: 1.5rem;
    background-color: var(--color-off-white);
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.enquiry-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .enquiry-detail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.enquiry-detail-section h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.enquiry-field {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.enquiry-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.enquiry-field a {
    color: var(--color-primary);
    text-decoration: none;
}

.enquiry-field a:hover {
    text-decoration: underline;
}

.enquiry-message-box {
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}

.enquiry-message-box h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.enquiry-message-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.enquiry-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-light-gray);
    flex-wrap: wrap;
}

/* ============================================================
   20. ADMIN SETTINGS
   ============================================================ */
.settings-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.settings-section h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */

/* Text Alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Text Color */
.text-muted { color: var(--color-muted); }
.text-green { color: var(--color-primary); }
.text-white { color: var(--color-white); }
.text-error { color: var(--color-error); }

/* Text Size */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }

/* Margin Top */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Margin Bottom */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Margin X Auto */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Flexbox */
.d-flex       { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Visibility */
.hidden  { display: none !important; }
.visible { display: block !important; }

/* ============================================================
   22. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for children */
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================
   23. RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero {
        padding: 5rem 0 6rem;
    }

    .hero.hero-bg {
        padding: 7rem 0 8rem;
        min-height: 480px;
    }

    /* Services: 2 columns */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Trust: 3 columns */
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Form row: 2 columns */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer: 4 columns */
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }

    /* Stats grid: keep 2 cols but allow 4 on wider */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================================
   24. RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    /* Services: 4 columns */
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Timeline: Horizontal */
    .timeline {
        flex-direction: row;
        max-width: 100%;
        gap: 0;
        align-items: flex-start;
        justify-content: center;
    }

    .timeline-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        gap: 1rem;
        position: relative;
        padding: 0 1.5rem;
    }

    /* Connecting lines between circles */
    .timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        left: calc(50% + 30px);
        width: calc(100% - 60px);
        height: 2px;
        background-color: var(--color-accent-green);
    }

    /* Admin sidebar visible */
    .admin-sidebar {
        display: flex;
    }

    .admin-main {
        margin-left: var(--sidebar-width);
    }

    /* Stats: 4 columns */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================================
   25. RESPONSIVE — LARGE DESKTOP (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .hero h1 {
        font-size: 3.25rem;
    }

    .section {
        padding: 6rem 0;
    }

    .admin-main {
        padding: 2.5rem;
    }
}

/* ============================================================
   26. RESPONSIVE — MOBILE ONLY (below 768px)
   ============================================================ */
@media (max-width: 767px) {
    /* Show hamburger */
    .navbar-toggle {
        display: flex;
    }

    /* Slide-down mobile menu */
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        padding: 0.5rem 1.25rem 1.25rem;
        gap: 0.25rem;
        z-index: 999;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        padding: 0;
    }

    .navbar-menu a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: var(--radius-md);
        font-size: 0.95rem;
        border-bottom: none;
    }

    .navbar-menu a:hover,
    .navbar-menu a.active {
        background-color: var(--color-pale-green);
    }

    .navbar-cta-item {
        margin-left: 0;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--color-light-gray);
    }

    .navbar-cta {
        display: block;
        text-align: center;
        width: 100%;
        border-bottom: none !important;
    }

    /* Admin: sidebar overlay on mobile */
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform var(--transition-base);
    }

    .admin-sidebar.active {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
        padding: 1.25rem;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-header h1 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   27. PRINT STYLES
   ============================================================ */
@media print {
    .navbar,
    .footer,
    .btn,
    .admin-sidebar {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .section {
        padding: 1rem 0;
    }

    .admin-main {
        margin-left: 0;
    }
}


/* ========================================
   28. Page-Specific Component Styles
   ======================================== */

/* --- Page Hero (inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--color-pale-green, #D8F3DC), var(--color-pale-green-bg, #F0FFF4));
    padding: 3rem 0;
    text-align: center;
}

.page-hero.page-hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 43, 43, 0.65) 0%, rgba(45, 106, 79, 0.45) 100%);
    z-index: 1;
}

.page-hero.page-hero-bg .container {
    position: relative;
    z-index: 2;
}

.page-hero.page-hero-bg h1 {
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.page-hero.page-hero-bg .lead {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.page-hero h1 {
    font-size: 2.25rem;
    color: var(--color-dark-slate, #1B2A2A);
    margin-bottom: 0.5rem;
}

.page-hero .lead {
    max-width: 600px;
    margin: 0 auto;
}

/* --- Hero Content Layout --- */
.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

/* --- Breadcrumb --- */
.breadcrumb-bar {
    background: var(--color-off-white, #F8FAF9);
    border-bottom: 1px solid var(--color-border, #DEE2E1);
    padding: 0.75rem 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: var(--color-muted, #636E72);
}

.breadcrumb a {
    color: var(--color-primary, #2D6A4F);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb [aria-current="page"] {
    color: var(--color-muted, #636E72);
}

/* --- Benefits Grid (Why In-Home Care) --- */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-border, #DEE2E1);
    transition: box-shadow 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-pale-green, #D8F3DC);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-icon img {
    width: 28px;
    height: 28px;
}

/* --- Card Extensions --- */
.card-lg {
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-lg .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.card-lg .card-icon img,
.card-lg .card-icon svg {
    width: 30px;
    height: 30px;
}

.card-lg .card-text {
    flex: 1;
}

.card-lg .btn {
    margin-top: auto;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark-slate, #1B2A2A);
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--color-muted, #636E72);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.services-grid-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Trust Section --- */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-border, #DEE2E1);
}

.trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-pale-green, #D8F3DC);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.trust-icon img {
    width: 28px;
    height: 28px;
}

/* --- Section CTA (Final Call-to-Action) --- */
.section-cta {
    background: var(--color-primary, #2D6A4F);
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.section-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.section-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.section-cta .btn-primary {
    background: #fff;
    color: var(--color-primary, #2D6A4F);
}

.section-cta .btn-primary:hover {
    background: var(--color-pale-green, #D8F3DC);
}

/* --- Service Detail Page --- */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.service-detail-content {
    min-width: 0;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-pale-green, #D8F3DC);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon img {
    width: 32px;
    height: 32px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text, #2D3436);
    margin-bottom: 2rem;
}

.service-cta-box {
    background: var(--color-pale-green, #D8F3DC);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.service-cta-box h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-cta-box p {
    margin-bottom: 1.25rem;
    color: var(--color-text, #2D3436);
}

/* --- Service Detail Sidebar --- */
.service-detail-sidebar {
    min-width: 0;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.sidebar-logo img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.service-detail-sidebar h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text, #2D3436);
    transition: background-color 0.2s ease;
}

.sidebar-service-link:hover {
    background: var(--color-pale-green, #D8F3DC);
}

.sidebar-service-link img {
    flex-shrink: 0;
}

.sidebar-areas {
    margin-top: 1.5rem;
}

.sidebar-areas h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/* --- Contact Page Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 3fr 2fr;
    }
}

.contact-form-col h1 {
    margin-bottom: 0.5rem;
}

.contact-form-col .lead {
    margin-bottom: 2rem;
}

.contact-info-col {
    align-self: start;
}

.contact-info-card {
    background: var(--color-off-white, #F8FAF9);
    border: 1px solid var(--color-border, #DEE2E1);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info-card h2 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-info-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--color-primary, #2D6A4F);
    text-decoration: none;
}

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

.contact-info-note {
    background: var(--color-pale-green, #D8F3DC);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-dark-slate, #1B2A2A);
}

/* ============================================================
   29. TESTIMONIALS
   ============================================================ */

/* Homepage testimonial cards */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: left;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--color-border, #DEE2E1);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.testimonial-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.03);
}

.testimonial-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.testimonial-stars {
    margin-bottom: 0.75rem;
}

.testimonial-stars .star {
    color: #FDCB6E;
    font-size: 1.1rem;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text, #2D3436);
    margin: 0 0 1.25rem 0;
    flex: 1;
    font-style: italic;
}

.testimonial-author-name {
    padding-top: 1rem;
    border-top: 1px solid var(--color-light-gray, #E8EDEC);
}

.testimonial-author-name strong {
    display: block;
    font-size: 0.9rem;
    color: var(--color-dark-slate, #1B2A2A);
}

.testimonial-pet {
    display: block;
    font-size: 0.8rem;
    color: var(--color-muted, #636E72);
    margin-top: 0.125rem;
}

/* Admin testimonial styles */
.testimonial-admin-card {
    padding: 0;
    overflow: hidden;
}

.testimonial-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-thumb {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-thumb-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-pale-green, #D8F3DC);
    color: var(--color-primary, #2D6A4F);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-edit {
    border-top: 1px solid var(--color-light-gray, #E8EDEC);
    padding: 1.25rem;
    background: var(--color-off-white, #F8FAF9);
}

/* ============================================================
   30. GALLERY
   ============================================================ */

/* Homepage gallery mosaic */
.gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
    }
}

.gallery-item-large {
    aspect-ratio: auto;
    min-height: 300px;
}

@media (min-width: 768px) {
    .gallery-item-large {
        min-height: 100%;
    }
}

.gallery-item-large img {
    height: 100%;
}

.gallery-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0.75rem 0.75rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* Admin gallery grid */
.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .gallery-admin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-admin-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-admin-item {
    padding: 0 !important;
    overflow: hidden;
}

.gallery-admin-img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.gallery-admin-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-admin-info {
    padding: 0.75rem;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    font-size: 0.9rem;
    padding: 1rem 0 0;
    opacity: 0.85;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10001;
    background: none;
    border: none;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 1rem;
    opacity: 0.6;
    transition: opacity 0.2s;
    z-index: 10001;
}

.lightbox-nav:hover {
    opacity: 1;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

/* ============================================================
   31. WHY CHOOSE US
   ============================================================ */
.why-choose-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-choose-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.why-choose-badge {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark-slate, #1B2A2A);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.why-choose-content {
    text-align: left;
}

.why-choose-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted, #636E72);
    margin-bottom: 0.5rem;
}

.why-choose-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-dark-slate, #1B2A2A);
    margin: 0 0 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .why-choose-heading {
        font-size: 2.5rem;
    }
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--color-border, #DEE2E1);
    transition: box-shadow 0.3s ease;
}

.why-choose-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.why-choose-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary, #2D6A4F);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

.why-choose-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-dark-slate, #1B2A2A);
    margin-bottom: 0.25rem;
}

.why-choose-item p {
    font-size: 0.88rem;
    color: var(--color-muted, #636E72);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   32. FAQ SECTION
   ============================================================ */
.faq-section {
    margin-top: 3rem;
    max-width: 800px;
}

.faq-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark-slate, #1B2A2A);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--color-border, #DEE2E1);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item[open] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark-slate, #1B2A2A);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary, #2D6A4F);
    flex-shrink: 0;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text, #2D3436);
}

.faq-answer p {
    margin: 0;
}
