* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #ffffff;
    padding: 20px 0;
    border-bottom: 4px solid #2E7D32;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bp-icon {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #4CAF50, #8BC34A, #FFF176);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 16px;
}

/* New logo image styling */
.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    /* soften corners slightly if image is rectangular */
}

.logo-text h1,
.logo-text .site-title,
.logo-text .logo-title {
    color: #1B5E20;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: bold;
    line-height: 1.1;
}

.logo-text p {
    color: #388E3C;
    font-size: 14px;
}

/* Navigation */
.nav {
    background: linear-gradient(to right, #2E7D32, #1B5E20);
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    flex: 1;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-align: center;
    background: #2E7D32;
    border-right: 1px solid #1B5E20;
    transition: background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    background: #1B5E20;
}

.nav-link.active {
    background: #0B3D14;
}

/* Page Header */
.page-header {
    background: linear-gradient(to bottom, #7CB342 0%, #2E7D32 55%, #0B3D14 100%);
    padding: 30px 0;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 36px;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    background: linear-gradient(to bottom, #7CB342 0%, #2E7D32 55%, #0B3D14 100%);
    padding: 30px 0;
    /* normalized to match section spacing */
    color: white;
}

.main-content.white {
    background: white;
    color: #333;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.content-grid.contact {
    grid-template-columns: 1fr 350px;
}

.content-grid.services {
    grid-template-columns: 1fr 280px;
}

/* Hero Section (Home Page) */
.hero-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-image {
    width: 350px;
    height: 200px;
    border-radius: 15px;
    border: 3px solid white;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

/* Team Section */
.team-section h2 {
    color: #1B5E20;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    color: #2E7D32;
    font-size: 20px;
}

.team-content {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.team-image {
    width: 250px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-text {
    flex: 1;
}

.team-text p {
    margin-bottom: 15px;
    color: #333;
    line-height: 1.6;
}

.services-list {
    margin: 20px 0;
}

.services-list h3 {
    color: #1B5E20;
    margin-bottom: 15px;
}

.services-list ul {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.services-list li:before {
    content: "•";
    color: #2E7D32;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.cta-text {
    margin-top: 20px;
    color: #333;
}

.cta-link {
    color: #1B5E20;
    text-decoration: underline;
}

/* Services Tables */
.services-intro {
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

.services-intro p {
    margin-bottom: 15px;
}

.services-intro .highlight {
    color: #1B5E20;
    font-weight: bold;
}

.services-tables {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.services-table {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.table-header {
    background: #2E7D32;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    text-align: center;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background: #f9f9f9;
}

.service-name {
    flex: 1;
    padding: 8px 12px;
    font-size: 14px;
}

.service-price {
    width: 80px;
    padding: 8px 12px;
    text-align: right;
    font-weight: bold;
    color: #1B5E20;
}

.highlight-service {
    background: #fff3cd !important;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

/* Disclaimer Section */
.disclaimer-section h2 {
    color: #1B5E20;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-content {
    color: #333;
    line-height: 1.6;
}

.disclaimer-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.disclaimer-content .highlight {
    color: #1B5E20;
    font-weight: bold;
}

/* Contact Form */
.contact-section h2 {
    color: #1B5E20;
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-intro {
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form,
.booking-form {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.form-header {
    color: white;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .form-header {
    background: #2E7D32;
}

.booking-form .form-header {
    background: #f0f0f0;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.form-intro {
    padding: 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.form-section {
    margin: 0;
}

.section-header {
    background: #2E7D32;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    margin: 0;
}

.section-content,
.form-content {
    background: #f5f5dc;
    padding: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.booking-form .form-row {
    grid-template-columns: 120px 1fr;
}

.form-label {
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.required {
    color: #d32f2f;
}

.form-input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.form-input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 2px rgba(27, 94, 32, 0.15);
}

.form-textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    resize: vertical;
    min-height: 120px;
    font-family: Arial, sans-serif;
}

.booking-form .form-textarea {
    min-height: 100px;
}

.form-textarea:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 2px rgba(27, 94, 32, 0.15);
}

.message-row {
    grid-template-columns: 1fr;
    gap: 5px;
}

.character-limit {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-footer {
    padding: 20px;
    background: white;
    border-top: 1px solid #ddd;
    text-align: right;
}

.required-note {
    font-size: 12px;
    color: #666;
    float: left;
    margin-top: 8px;
}

.submit-btn {
    background: #2E7D32;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

.submit-btn:hover {
    background: #1B5E20;
}

/* Sidebar */
.sidebar {
    background: white;
    border-radius: 10px;
    padding: 20px;
    color: #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar.multiple {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: none;
    box-shadow: none;
    padding: 0;
}

.sidebar-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
    background: #2E7D32;
    color: white;
    padding: 10px 15px;
    margin: -20px -20px 20px -20px;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card .sidebar-header {
    margin: 0;
    padding: 15px;
    border-radius: 0;
}

.sidebar-card .sidebar-header.find {
    background: #1B5E20;
}

.sidebar-content {
    padding: 20px;
    color: #333;
}

.sidebar p,
.sidebar-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
}

.contact-info,
.contact-details {
    font-weight: bold;
    color: #1B5E20;
}

.map-placeholder {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px 0;
}

.map-placeholder img {
    /* retain full coverage for any static fallback image */
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Available */
.services-available {
    background: #2E7D32;
    color: white;
    padding: 20px;
}

.available-services-list {
    list-style: none;
    padding: 0;
}

.available-services-list li {
    padding: 8px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.available-services-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: white;
    font-weight: bold;
}

/* Buttons */
.book-online-btn {
    background: #2E7D32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    float: right;
    margin-top: 10px;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.sidebar-card .book-online-btn {
    width: 100%;
    float: none;
    margin: 15px 0;
}

.book-online-btn:hover {
    background: #1B5E20;
}

.find-us-btn,
.enlarge-btn {
    background: #2E7D32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.find-us-btn:hover,
.enlarge-btn:hover {
    background: #1B5E20;
}

/* Services Grid */
/* Section wrapper for services area */
section.services-grid {
    margin-top: 0;
    /* align spacing with main content bottom padding */
    padding: 30px 0;
    background: white;
}

/* Grid layout inside the services section */
section.services-grid .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-header {
    padding: 15px;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-header.checks {
    background: #2E7D32;
}

.service-header.tokens {
    background: #E65100;
}

.service-header.find {
    background: #1565C0;
}

.service-content {
    padding: 20px;
    color: #333;
}

.service-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.service-btn {
    background: #2E7D32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-sizing: border-box;
}

.service-btn:hover {
    background: #1B5E20;
}

/* Footer */
.footer {
    background: #eeeeee;
    padding: 20px 0;
    text-align: center;
    color: #444;
    font-size: 12px;
    border-top: 1px solid #cccccc;
}

.footer a {
    color: #1B5E20;
    text-decoration: underline;
}

/* Clickable phone number styling */
.phone-number {
    color: #1565C0;
    /* blue */
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.phone-number:hover {
    color: #0D47A1;
}

.phone-number:focus-visible {
    outline: 2px solid #1565C0;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .content-grid,
    .content-grid.contact,
    .content-grid.services {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar,
    .sidebar.multiple {
        order: -1;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-menu {
        flex-direction: column;
        border: 1px solid #1B5E20;
        border-radius: 10px;
        overflow: hidden;
        background: #2E7D32;
    }

    .nav-link {
        border-right: none;
        border-bottom: 1px solid #388E3C;
        background: #2E7D32;
        padding: 14px 16px;
    }

    .nav-menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .nav-link.active {
        background: #1B5E20;
        position: relative;
    }

    .nav-link.active:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 0;
        box-shadow: inset 0 -4px 0 #0B3D14;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        max-width: 350px;
    }

    .team-content {
        flex-direction: column;
    }

    .team-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    /* Ensure full image visible on smaller screens (avoid cropping heads) */
    .team-image img {
        object-fit: contain;
    }

    /* Reorder on mobile: show team section first before sidebars */
    body.team-page .content-grid {
        display: flex;
        flex-direction: column;
    }

    body.team-page .team-section {
        order: 0;
    }

    body.team-page .sidebar.multiple,
    body.team-page .sidebar,
    body.team-page .sidebar-card {
        order: 1;
    }

    /* Slightly reduce map height on smaller screens for fit */
    /* map height now handled by aspect-ratio wrapper (.map-responsive) */

    .services-tables {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row,
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .form-label {
        margin-bottom: 5px;
    }

    .page-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .logo-text h1 {
        font-size: 24px;
    }

    .nav-link {
        padding: 12px 10px;
        font-size: 14px;
    }

    .hero-text h2 {
        font-size: 16px;
    }

    .page-title {
        font-size: 24px;
    }

    .team-section h2,
    .disclaimer-section h2 {
        font-size: 20px;
    }

    .service-name {
        font-size: 13px;
    }

    .service-price {
        width: 70px;
        font-size: 13px;
    }

    .contact-form,
    .booking-form {
        margin: 0 -10px;
    }

    .section-content,
    .form-content {
        padding: 15px;
    }

    /* map height now handled by aspect-ratio wrapper (.map-responsive) */
}

/* Accessibility: clear focus styles */
:focus-visible {
    outline: 2px solid #1565C0;
    outline-offset: 2px;
}

/* Modal popup for validation */
#bp-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
}

.bp-modal {
    background: #fff;
    color: #333;
    border-radius: 10px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
}

.bp-modal-title {
    margin: 0;
    padding: 14px 18px;
    background: #2E7D32;
    color: #fff;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
}

.bp-modal-body {
    padding: 16px 18px;
}

.bp-modal-body ul {
    margin: 0;
    padding-left: 18px;
}

.bp-modal-actions {
    padding: 12px 18px 16px;
    text-align: right;
}

.bp-modal-actions .bp-modal-ok {
    background: #2E7D32;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.bp-modal-actions .bp-modal-ok:hover {
    background: #1B5E20;
}

/* Hidden honeypot field (replacing inline style) */
.hp-trap {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Single column row variant (replacing inline style) */
.form-row.single-col {
    grid-template-columns: 1fr;
}

/* Centered narrow container (replacing inline style on thank-you page) */
.sidebar.centered {
    max-width: 680px;
    margin: 0 auto;
}

/* Map iframe reset (was inline border:0) */
.map-embed {
    border: 0;
}

/* Responsive map container (16:9 ratio) */
.map-responsive {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
}

.map-responsive>.map-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}