/* Three Bees Psychology - Main Stylesheet */

:root {
    --honey: #FFD89C;
    --honey-dark: #FFC96B;
    --honey-light: #FFE9C7;    /* pale honey tint: soft borders, form states */
    --golden-amber: #C8861A;   /* vivid amber: decorative borders & accents */
    --amber-text: #8A6914;     /* amber dark enough for text on light backgrounds (WCAG AA) */
    --deep-earth: #5C6F6F;
    --forest: #587474;         /* secondary text — darkened from #7A9B9B for WCAG AA contrast */
    --cream: #FFF8EC;
    --warm-white: #FFFEF9;
    --charcoal: #4A4A4A;
    --sage: #B8D4C8;
    --accent-amber: #FFE4B5;
    --soft-peach: #FFE5D9;
    --warm-pink: #FFD6D1;
    --soft-blue: #D4E7F7;
    --lavender: #E8D8F0;
    --mint: #D8F0E3;
}

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

body {
    font-family: var(--font-body);
    color: var(--deep-earth);
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--cream) 30%, var(--soft-blue) 70%, var(--lavender) 100%) fixed;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Navigation */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(249, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.nav-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 1.75rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-earth);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(255, 216, 156, 0.4));
}

.nav-links {
    display: flex;
    gap: 0.4rem;
    list-style: none;
}

.nav-links a {
    color: var(--forest);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    position: relative;
    transition: color 0.25s ease, background-color 0.25s ease,
                transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover {
    color: var(--charcoal);
    background-color: rgba(255, 216, 156, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 201, 107, 0.4);
}

.nav-links a.active {
    color: var(--charcoal);
    background-color: var(--honey);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 201, 107, 0.5);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--honey-dark);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 0;
    background: linear-gradient(135deg, var(--soft-peach) 0%, var(--cream) 30%, var(--soft-blue) 70%, var(--lavender) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 216, 156, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
    padding-top: 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    display: block;
    width: clamp(200px, 28vw, 340px);
    height: auto;
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 6px 16px rgba(74, 74, 74, 0.12));
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8),
                 0 0 40px rgba(255, 255, 255, 0.9);
}

.hero .subheading {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--forest);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.85;
}

/* Hero audience-split CTAs */
.hero-cta-paths {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.cta-path {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    padding: 2rem 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.2);
}

.cta-path-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--amber-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cta-path h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--deep-earth);
    margin-bottom: 0.75rem;
}

.cta-path p {
    font-size: 1rem;
    color: var(--forest);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-path-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    font-size: 1rem;
    color: var(--forest);
    opacity: 0.5;
    font-style: italic;
    min-width: 40px;
}

/* Larger CTA buttons */
.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

/* Outline button variant */
.btn-outline {
    background: transparent;
    color: var(--deep-earth);
    border: 2px solid var(--deep-earth);
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--deep-earth);
    color: var(--cream);
    transform: translateY(-2px);
}

/* Sticky floating CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--honey);
    color: var(--deep-earth);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(255, 200, 100, 0.5);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta:hover {
    background: var(--honey-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 200, 100, 0.6);
}

/* Social proof / testimonials */
.social-proof {
    padding: 4rem 5%;
    background: var(--deep-earth);
    max-width: 100%;
    margin: 0;
}

.social-proof .section-title {
    color: var(--cream);
}

.social-proof .section-title::after {
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: rgba(255,255,255,0.07);
    border-left: 4px solid var(--honey);
    border-radius: 0 12px 12px 0;
    padding: 1.75rem;
    margin: 0;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--cream);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.9rem;
    color: var(--honey);
    font-style: normal;
}

/* Contact form row layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}@media (max-width: 768px) {
    .hero-cta-paths {
        flex-direction: column;
    }
    .cta-path-divider {
        padding: 0.5rem 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: var(--font-body);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.btn-primary {
    background: var(--honey);
    color: var(--deep-earth);
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255, 216, 156, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--honey-dark);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 216, 156, 0.4);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--honey);
}

.btn-secondary:hover {
    background: var(--honey);
    color: var(--deep-earth);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 216, 156, 0.3);
}

.supporting-text {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 4rem 5rem;
    background: #FFFFFF;
    border-left: none;
    border-top: 6px solid var(--honey);
    font-size: 1.2rem;
    line-height: 2;
    color: var(--deep-earth);
    border-radius: 0;
    box-shadow: 0 -10px 40px rgba(255, 216, 156, 0.4);
    position: relative;
    z-index: 1;
}

/* Preview Cards (Homepage) */
.home-preview {
    padding: 4rem 5%;
    max-width: 100%;
    margin: 0 auto;
}

.preview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.preview-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.2);
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    border-top: 4px solid var(--honey);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 216, 156, 0.3);
}

.preview-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.preview-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

.preview-card p {
    color: var(--forest);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.preview-link {
    color: var(--honey-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Section Styles */
section {
    padding: 4rem 5%;
    max-width: 100%;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--deep-earth);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
}

/* Anchor offset for sticky nav */
[id] {
    scroll-margin-top: 120px;
}

/* About Section */
.about-content {
    max-width: 100%;
    margin: 0 auto;
}

.profile-card {
    background: white;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.15);
    border-top: 4px solid var(--honey);
}

.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--honey);
    box-shadow: 0 4px 20px rgba(255, 216, 156, 0.3);
}

.profile-title {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.profile-title h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
}

.profile-degrees {
    font-size: 0.95rem;
    color: var(--forest);
    letter-spacing: 0.05em;
    margin-bottom: 0.4rem;
    opacity: 0.85;
}

.profile-subtitle {
    font-size: 1.3rem;
    color: var(--honey-dark);
    font-weight: 500;
    margin: 0;
}

.qualifications-list {
    background: var(--warm-white);
    border-left: 4px solid var(--golden-amber, var(--honey-dark));
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
}

.qualifications-list h4 {
    font-size: 1rem;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

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

.qualifications-list li {
    padding: 0.3rem 0;
    font-size: 1rem;
    color: var(--forest);
}

.profile-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
}

.profile-card p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--forest);
    margin-bottom: 1.5rem;
}

.mission {
    background: var(--deep-earth);
    color: var(--cream);
    padding: 3rem;
    margin: 3rem 0;
    border-left: 6px solid var(--accent-amber);
    font-size: 1.25rem;
    line-height: 1.9;
    font-style: italic;
    border-radius: 12px;
}

/* Services Section */
.services-content {
    max-width: 100%;
    margin: 0 auto;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--forest);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-category {
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.15);
    border-top: 4px solid var(--honey);
}

.bee-pillar {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: transparent;
    border-top: 2px solid var(--honey);
    border-radius: 0;
}

.bee-pillar-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.bee-pillar h3 {
    font-size: 1.2rem;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
}

.bee-pillar p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.hive-quote {
    margin: 2rem 0 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--golden-amber);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    background: var(--warm-white);
    border-radius: 0 8px 8px 0;
}

/* Accreditation grid */
.accreditation-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: center;
    justify-content: center;
}

.accreditation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    width: 120px;
}

.accreditation-logo {
    width: 100px;
    height: 80px;
    object-fit: contain;
}

.placeholder-logo {
    background: var(--warm-white);
    border: 2px dashed var(--golden-amber);
    border-radius: 8px;
    padding: 0.5rem;
    opacity: 0.5;
}

.accreditation-item span {
    font-size: 0.8rem;
    color: var(--forest);
    line-height: 1.3;
}

/* Acknowledgement of Country */
.footer-acknowledgement {
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-acknowledgement p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.75;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Fees callout */
.fees-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--deep-earth);
    color: var(--cream);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.fees-callout h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--honey);
    margin-bottom: 0.5rem;
}

.fees-callout p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.fees-callout-text {
    flex: 1;
    min-width: 250px;
}

/* Three-phased approach grid */
.phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.phase-card {
    background: var(--warm-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    border-top: 4px solid var(--golden-amber);
}

.phase-number {
    display: inline-block;
    background: var(--amber-text);
    color: var(--cream);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.phase-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--deep-earth);
}

.phase-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Hived approach callout */
.hived-approach {
    margin-top: 2rem;
    padding: 1.75rem 2rem;
    background: var(--deep-earth);
    color: var(--cream);
    border-radius: 12px;
    text-align: center;
}

.hived-approach h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--honey);
}

.hived-approach p {
    font-size: 1.05rem;
    font-style: italic;
}@media (max-width: 768px) {
    .phases-grid {
        grid-template-columns: 1fr;
    }
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.info-card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-amber);
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
}

.info-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--forest);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--honey) 0%, var(--accent-amber) 100%);
    border-radius: 12px;
}

.services-cta p {
    font-size: 1.4rem;
    color: var(--deep-earth);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* FAQ Styles */
.faq-category {
    margin-bottom: 4rem;
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--deep-earth);
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--honey);
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 216, 156, 0.15);
    border-left: 4px solid var(--honey);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(255, 216, 156, 0.25);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--deep-earth);
    font-weight: 600;
    text-align: left;
    padding: 2rem 2.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--cream);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--honey-dark);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2.5rem;
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--forest);
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 2000px;
    padding: 0 2.5rem 2rem 2.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.9;
}

.faq-answer li {
    margin-bottom: 0.75rem;
}

.faq-answer strong {
    color: var(--deep-earth);
    font-weight: 600;
}

/* Blog Section */
.blog-content {
    max-width: 100%;
    margin: 0 auto;
}

.blog-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--forest);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--cream);
    color: var(--forest);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.filter-btn:hover {
    border-color: var(--honey);
    color: var(--deep-earth);
}

.filter-btn.active {
    background: var(--honey);
    border-color: var(--honey);
    color: var(--deep-earth);
    font-weight: 500;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.15);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(255, 216, 156, 0.25);
}

.blog-card.featured {
    grid-column: span 2;
    flex-direction: row;
}

.blog-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card.featured .blog-card-content {
    width: 50%;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    color: var(--honey-dark);
    font-weight: 600;
}

.blog-date, .blog-read-time {
    color: var(--sage);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--deep-earth);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card.featured .blog-title {
    font-size: 2rem;
}

.blog-excerpt {
    color: var(--forest);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-read-more {
    color: var(--honey-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--deep-earth);
}

/* Map embed */
.map-embed {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.2);
}

/* Contact Section */
.contact-content {
    max-width: 100%;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--forest);
    margin-bottom: 3rem;
}

form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 216, 156, 0.15);
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    font-size: 1.1rem;
    color: var(--deep-earth);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    border: 2px solid var(--cream);
    background: var(--warm-white);
    color: var(--deep-earth);
    transition: all 0.3s ease;
    border-radius: 8px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--honey);
    background: white;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

.contact-details {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
}

.contact-details p {
    font-size: 1.15rem;
    color: var(--forest);
    margin: 0.75rem 0;
}

.contact-details a {
    color: var(--honey-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--deep-earth);
}

/* Footer */
footer {
    background: var(--deep-earth);
    color: var(--cream);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 216, 156, 0.2);
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-brand .logo img {
    width: 70px;
    height: 70px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--honey);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--honey);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 216, 156, 0.1);
    border: 2px solid rgba(255, 216, 156, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.social-links a:hover {
    background: var(--honey);
    border-color: var(--honey);
    color: var(--deep-earth);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Decorative Elements */
.honeycomb-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.015;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(60deg, var(--honey) 0px, transparent 2px, transparent 40px),
        repeating-linear-gradient(-60deg, var(--honey) 0px, transparent 2px, transparent 40px);
    z-index: -1;
}

/* =============================================================================
   FLOATING BEES
   ============================================================================= */
/* Beehives flanking the home-page tabs (bees fly into these — see scripts.js) */
.hives {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    pointer-events: none;
    z-index: 1001;
}
.hive {
    position: absolute;
    top: 16px;
    width: 52px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(92, 61, 46, 0.18));
    animation: hiveBob 3.6s ease-in-out infinite;
}
.hive-left  { left: 5%; }
.hive-right { right: 5%; animation-delay: 1.2s; }
@keyframes hiveBob {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-3px) rotate(2deg); }
}@media (max-width: 768px) { .hives { display: none; } }

.floating-bees {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.floating-bee {
    position: absolute;
    opacity: 0;
    stroke-linecap: round;
    stroke-linejoin: round;
    animation-iteration-count: infinite;
}

@keyframes beeBuzz {
    0%   { transform: rotate(-8deg) scale(1.15); }
    25%  { transform: rotate(8deg)  scale(1.15); }
    50%  { transform: rotate(-6deg) scale(1.1);  }
    75%  { transform: rotate(6deg)  scale(1.1);  }
    100% { transform: rotate(0deg)  scale(1);    }
}

.floating-bee.released {
    animation: beeBuzz 0.35s ease-in-out 3 !important;
    opacity: 0.7 !important;
}

.bee-bubble {
    position: fixed;
    background: #fffef5;
    border: 2px solid var(--honey, #F5C518);
    border-radius: 18px;
    padding: 9px 16px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-earth, #5C3D2E);
    white-space: nowrap;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    animation: bubblePop 2.8s ease forwards;
}

/* Speech bubble tail pointing downward toward the bee */
.bee-bubble::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    border: 9px solid transparent;
    border-top-color: var(--honey, #F5C518);
}
.bee-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #fffef5;
    z-index: 1;
}

@keyframes bubblePop {
    0%   { transform: scale(0.4) translateY(12px); opacity: 0; }
    12%  { transform: scale(1.12) translateY(-4px); opacity: 1; }
    20%  { transform: scale(1) translateY(0);       opacity: 1; }
    70%  { transform: scale(1) translateY(0);       opacity: 1; }
    100% { transform: scale(0.85) translateY(-16px); opacity: 0; }
}

.floating-bee:nth-child(1)  { width: 180px; left: 5%;  animation-duration: 32s; animation-delay: 0s;   animation-name: beeDrift1; }
.floating-bee:nth-child(2)  { width: 120px; left: 20%; animation-duration: 40s; animation-delay: 8s;   animation-name: beeDrift2; }
.floating-bee:nth-child(3)  { width: 200px; left: 38%; animation-duration: 36s; animation-delay: 14s;  animation-name: beeDrift3; }
.floating-bee:nth-child(4)  { width: 100px; left: 55%; animation-duration: 44s; animation-delay: 4s;   animation-name: beeDrift1; }
.floating-bee:nth-child(5)  { width: 160px; left: 70%; animation-duration: 34s; animation-delay: 20s;  animation-name: beeDrift2; }
.floating-bee:nth-child(6)  { width: 90px;  left: 86%; animation-duration: 48s; animation-delay: 10s;  animation-name: beeDrift3; }
.floating-bee:nth-child(7)  { width: 140px; left: 12%; animation-duration: 42s; animation-delay: 26s;  animation-name: beeDrift2; }
.floating-bee:nth-child(8)  { width: 170px; left: 50%; animation-duration: 30s; animation-delay: 18s;  animation-name: beeDrift1; }

@keyframes beeDrift1 {
    0%   { transform: translate(0, 110vh) rotate(-10deg); opacity: 0; }
    5%   { opacity: 0.35; }
    50%  { transform: translate(40px, 50vh) rotate(8deg); opacity: 0.3; }
    95%  { opacity: 0.2; }
    100% { transform: translate(-20px, -10vh) rotate(-5deg); opacity: 0; }
}
@keyframes beeDrift2 {
    0%   { transform: translate(0, 105vh) rotate(5deg); opacity: 0; }
    5%   { opacity: 0.3; }
    40%  { transform: translate(-50px, 55vh) rotate(-12deg); opacity: 0.28; }
    80%  { transform: translate(30px, 20vh) rotate(6deg); opacity: 0.22; }
    100% { transform: translate(10px, -10vh) rotate(0deg); opacity: 0; }
}
@keyframes beeDrift3 {
    0%   { transform: translate(0, 108vh) rotate(0deg); opacity: 0; }
    5%   { opacity: 0.32; }
    35%  { transform: translate(60px, 60vh) rotate(15deg); opacity: 0.28; }
    70%  { transform: translate(-30px, 30vh) rotate(-8deg); opacity: 0.24; }
    100% { transform: translate(20px, -10vh) rotate(5deg); opacity: 0; }
}

/* Section logo watermarks */
.section-logo-watermark {
    position: relative;
    overflow: hidden;
}

.section-logo-watermark::before {
    display: none;
}

.section-logo-watermark > * {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .logo img {
        width: 80px;
        height: 80px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .supporting-text {
        padding: 2.5rem 2rem;
        font-size: 1.05rem;
        line-height: 1.8;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .profile-card, form, .service-category {
        padding: 2rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .profile-title {
        min-width: 100%;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 2rem;
    }

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

    .blog-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .blog-card.featured .blog-image {
        width: 100%;
        height: 250px;
    }

    .blog-card.featured .blog-card-content {
        width: 100%;
    }

    .blog-filters {
        gap: 0.75rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .newsletter-section {
        padding: 3rem 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .preview-cards {
        grid-template-columns: 1fr;
    }
}
