/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */
.services-page {
    background:
        radial-gradient(circle at top right, rgba(137, 167, 122, 0.18), transparent 28%),
        linear-gradient(180deg, #f7faf6 0%, #ffffff 18%, #f7faf6 100%);
}

.services-page .section-header,
.services-page .section-header.text-center,
.services-page .services-faq-header {
    text-align: left;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
}

.services-page .section-header .section-description,
.services-page .services-faq-header .section-description {
    margin-left: 0;
    margin-right: 0;
}

.services-page-header {
    height: auto;
    min-height: 720px;
    padding: 200px 0 170px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(10, 15, 12, 0.84) 0%, rgba(16, 24, 20, 0.72) 40%, rgba(16, 24, 20, 0.38) 100%),
        radial-gradient(circle at top right, rgba(159, 184, 145, 0.18), transparent 24%),
        url('assets/blog_elderly.png');
    background-position: center, top right, center;
    background-size: cover, auto, cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.services-page-header .page-header-content {
    max-width: 760px;
    padding: 36px;
    border-radius: 32px;
    /* -webkit-backdrop-filter: blur(6px); */
}

.services-overview {
    position: relative;
    margin-top: -110px;
    padding-bottom: 120px;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: stretch;
    border-radius: 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.97);    
    border: 1px solid rgba(137, 167, 122, 0.14);
    box-shadow: var(--shadow-xl);
}

.services-overview-copy {
    padding: 28px;
}

.services-overview-copy .section-description + .section-description {
    margin-top: 20px;
}

.services-overview-actions {
    margin-top: 32px;
}

.services-overview-visual {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 28px;
}

.services-overview-image-frame {
    position: relative;
    height: 100%;
    min-height: 540px;
}

.services-overview-image-frame::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 180px;
    height: 180px;
    border-radius: 36px;
    background: rgba(227, 238, 219, 0.75);
    filter: blur(4px);
}

.services-overview-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.service-cards-section,
.benefits-section,
.booking-steps-section {
    padding: 120px 0;
}

.service-cards-section {
    background: transparent;
}

.why-choose-services,
.importance-section {
    padding: 120px 0;
    background-color: rgba(255, 255, 255, 0.8);
}

.service-carousel {
    max-width: 1280px;
    margin: 0 auto;
}

.service-carousel-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.service-carousel-nav {
    display: flex;
    gap: 12px;
}

.service-carousel-viewport {
    overflow: hidden;
}

.service-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.service-carousel-slide {
    flex: 0 0 calc((100% - 48px) / 3);
    width: calc((100% - 48px) / 3);
    padding: 6px 0;
}

.service-carousel-slide .service-feature-card {
    min-height: 470px;
    aspect-ratio: auto;
    margin: 0;
    justify-content: flex-start;
    padding: 34px 30px 22px;
    background: var(--white);
    border: 1px solid rgba(137, 167, 122, 0.18);
    box-shadow: none;
}

.service-carousel-slide .service-feature-card:hover {
    box-shadow: none;
    transform: translateY(-4px);
}

.service-carousel-slide .service-feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 26px;
    border-radius: 24px;
    font-size: 28px;
    background: linear-gradient(180deg, #f1f5ed 0%, #ebf1e5 100%);
    color: var(--primary-color);
}

.service-carousel-slide .service-feature-card h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 18px;
    max-width: 260px;
}

.service-carousel-slide .service-feature-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #536173;
}

.service-carousel-slide .service-feature-card .btn-primary,
.service-carousel-slide .service-feature-card .btn-secondary {
    margin-top: 18px;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 16px;
}

.service-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.service-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: rgba(137, 167, 122, 0.28);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-carousel-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.benefits-scroll-layout {
    display: block;
}

.benefits-scroll-card {
    position: sticky;
    top: 112px;
    margin-bottom: 16vh;
}

.benefits-scroll-card:last-child {
    margin-bottom: 0;
}

.benefits-scroll-card-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.44fr);
    gap: 28px;
    align-items: center;
    padding: 24px 26px;
    border-radius: 26px;
    border: 1px solid rgba(137, 167, 122, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 246, 0.96));
    box-shadow: 0 18px 44px rgba(16, 24, 20, 0.08);
    opacity: 0.78;
    transform: translateY(10px) scale(0.985);
    transition: transform 0.4s ease, opacity 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefits-scroll-card.is-active .benefits-scroll-card-inner {
    opacity: 1;
    transform: translateY(0) scale(1);
    border-color: rgba(137, 167, 122, 0.32);
    box-shadow: 0 24px 54px rgba(16, 24, 20, 0.12);
}

.benefits-scroll-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.benefits-scroll-index {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f1725;
}

.benefits-scroll-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.3vw, 32px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #0f1725;
}

.benefits-scroll-card p {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.65;
    color: #4e5d70;
}

.benefits-scroll-media {
    min-width: 0;
}

.benefits-scroll-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(137, 167, 122, 0.14);
    background: linear-gradient(180deg, rgba(247, 250, 246, 0.88), rgba(235, 243, 229, 0.72));
}

.benefits-scroll-copy {
    min-width: 0;
}

.benefits-scroll-card.is-active .benefits-scroll-media img {
    transform: scale(1);
}

.benefits-scroll-media img {
    transition: transform 0.45s ease, opacity 0.35s ease;
}

.benefits-scroll-card:not(.is-active) .benefits-scroll-media img {
    transform: scale(0.985);
    opacity: 0.96;
}

.benefits-scroll-list {
    position: relative;
}

.benefits-scroll-card .benefits-scroll-card-inner {
    overflow: hidden;
}

.service-feature-card,
.benefit-card,
.importance-card,
.booking-step-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(137, 167, 122, 0.14);
    box-shadow: 0 20px 50px rgba(16, 24, 20, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-feature-card:hover,
.benefit-card:hover,
.importance-card:hover,
.booking-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(16, 24, 20, 0.12);
    border-color: rgba(116, 148, 101, 0.42);
}

.service-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf6 100%);
}

.service-feature-card.featured {
    background: linear-gradient(180deg, #eef5e7 0%, #dbe8cf 100%);
}

.service-feature-icon,
.benefit-icon,
.importance-icon {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    margin-bottom: 26px;
    font-size: 28px;
    color: var(--primary-dark);
    background-color: rgba(137, 167, 122, 0.12);
}

.service-feature-card h3,
.benefit-card h3,
.importance-card h3,
.booking-step-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 14px;
}

.service-feature-card p,
.benefit-card p,
.importance-card p,
.booking-step-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

.service-feature-card .btn-primary,
.service-feature-card .btn-secondary {
    margin-top: 28px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 32px;
    align-items: stretch;
    border-radius: 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(137, 167, 122, 0.14);
    box-shadow: var(--shadow-xl);
}

.why-choose-copy {
    padding: 28px;
}

.why-choose-copy .section-description + .section-description {
    margin-top: 18px;
}

.why-choose-actions {
    margin-top: 28px;
}

.why-choose-photo {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-radius: 28px;
}

.why-choose-photo-frame {
    position: relative;
    height: 100%;
    min-height: 540px;
}

.why-choose-photo-frame::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 180px;
    height: 180px;
    border-radius: 36px;
    background: rgba(227, 238, 219, 0.75);
    filter: blur(4px);
}

.why-choose-photo-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.benefits-section {
    padding: 88px 0 92px;
    background: linear-gradient(180deg, rgba(239, 245, 234, 0.76) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.benefits-section .section-header {
    margin-bottom: 34px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.benefit-card {
    padding: 32px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ef 100%);
}

.benefit-card:nth-child(2n) {
    background: linear-gradient(180deg, #eef5e9 0%, #ffffff 100%);
}

.benefit-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
}

.benefit-card-wide .benefit-icon {
    margin-bottom: 0;
}

.importance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.importance-card {
    min-height: 420px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    background-color: #dfe9d8;
}

.importance-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1), filter 0.45s ease;
}

.importance-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 37, 0.06) 0%, rgba(15, 23, 37, 0.2) 42%, rgba(9, 15, 12, 0.84) 100%),
        linear-gradient(180deg, rgba(137, 167, 122, 0.05) 0%, rgba(137, 167, 122, 0.22) 100%);
    z-index: 1;
    transition: opacity 0.35s ease;
}

.importance-card-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 24px;
    color: var(--white);
    transform: translateY(0);
    transition: transform 0.35s ease;
}

.importance-card h3 {
    color: var(--white);
    margin-bottom: 0;
}

.importance-card p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 26ch;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(16px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
}

.importance-card.is-visible p {
    max-height: 180px;
    opacity: 1;
    margin-top: 12px;
    transform: translateY(0);
}

.importance-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(16, 24, 20, 0.16);
    border-color: rgba(137, 167, 122, 0.38);
}

.importance-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.importance-card:hover::before {
    opacity: 0.98;
    background:
        linear-gradient(180deg, rgba(15, 23, 37, 0.04) 0%, rgba(35, 58, 26, 0.24) 38%, rgba(28, 45, 21, 0.88) 100%),
        linear-gradient(180deg, rgba(137, 167, 122, 0.1) 0%, rgba(137, 167, 122, 0.34) 100%);
}

.importance-card:hover .importance-card-overlay {
    transform: translateY(-4px);
}

.importance-card:hover h3 {
    color: #f4f8f1;
}

.booking-steps-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 10%, rgba(137, 167, 122, 0.18), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f3f8ef 100%);
}

.booking-steps-section::before {
    content: "";
    position: absolute;
    inset: 78px 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(137, 167, 122, 0.28), transparent);
}

.booking-steps-section .container {
    position: relative;
    z-index: 1;
}

.booking-steps-section .section-header {
    align-items: center;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.booking-steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 18px;
}

.booking-steps-grid::before {
    content: "";
    position: absolute;
    top: 68px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, rgba(137, 167, 122, 0), rgba(137, 167, 122, 0.42), rgba(137, 167, 122, 0));
}

.booking-step-card {
    display: block;
    min-height: 330px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(137, 167, 122, 0.18);
    box-shadow: 0 18px 44px rgba(22, 34, 17, 0.06);
}

.booking-step-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -52px;
    width: 148px;
    height: 148px;
    border-radius: 50%;
    background: rgba(137, 167, 122, 0.1);
}

.booking-step-card.featured {
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(58, 84, 48, 0.96), rgba(116, 148, 101, 0.94)),
        #749465;
    border-color: rgba(77, 113, 64, 0.32);
    box-shadow: 0 26px 60px rgba(47, 69, 39, 0.22);
}

.booking-step-card.featured::after {
    background: rgba(255, 255, 255, 0.12);
}

.booking-step-number {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    padding: 8px 14px;
    border-radius: 999px;
    margin: 0 0 42px;
    background-color: #eef3ea;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.booking-step-card.featured .booking-step-number {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.16);
}

.booking-step-card h3,
.booking-step-card p {
    position: relative;
    z-index: 1;
}

.booking-step-card h3 {
    max-width: 310px;
    margin-bottom: 16px;
    font-size: clamp(23px, 2vw, 30px);
}

.booking-step-card p {
    max-width: 360px;
    font-size: 16px;
}

.booking-step-card.featured h3,
.booking-step-card.featured p {
    color: #ffffff;
}

.booking-step-card.featured p {
    opacity: 0.88;
}

.booking-steps-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

.booking-steps-action .btn-primary {
    min-height: 56px;
    padding: 16px 24px;
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(116, 148, 101, 0.24);
}

.services-faq {
    background-color: #ffffff;
    padding-top: 40px;
}

.services-faq .faq-desc-area {
    max-width: 620px;
}

@media (max-width: 1200px) {
    .service-carousel {
        max-width: 100%;
    }

    .service-carousel-slide {
        flex: 0 0 calc((100% - 24px) / 2);
        width: calc((100% - 24px) / 2);
    }

    .benefits-scroll-card h3 {
        font-size: clamp(22px, 2.2vw, 28px);
    }

    .benefits-scroll-card-inner {
        grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
        gap: 22px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .importance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .services-page-header {
        min-height: 640px;
        padding: 180px 0 140px;
    }

    .services-overview {
        margin-top: -80px;
        padding-bottom: 100px;
    }

    .services-overview-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .service-cards-section,
    .why-choose-services,
    .benefits-section,
    .importance-section,
    .booking-steps-section {
        padding: 100px 0;
    }

    .booking-steps-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .booking-steps-grid::before {
        display: none;
    }

    .booking-step-card {
        min-height: auto;
    }

}

@media (max-width: 768px) {
    .services-page-header {
        min-height: 580px;
        padding: 150px 0 120px;
    }

    .services-page-header .page-header-content {
        padding: 24px;
        border-radius: 24px;
    }

    .services-overview {
        margin-top: -60px;
        padding-bottom: 80px;
    }

    .services-overview-copy,
    .why-choose-copy,
    .service-feature-card,
    .benefit-card,
    .importance-card,
    .booking-step-card {
        padding: 26px;
        border-radius: 24px;
    }

    .benefits-grid,
    .importance-grid,
    .booking-steps-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .benefit-card-wide .benefit-icon {
        margin-bottom: 26px;
    }

    .services-overview-image-frame {
        min-height: 360px;
    }

    .services-overview-image-frame img {
        min-height: 336px;
        border-radius: 20px;
    }

    .services-overview-grid {
        padding: 14px;
        gap: 18px;
        border-radius: 24px;
    }

    .services-overview-copy {
        padding: 12px;
    }

    .why-choose-grid {
        padding: 14px;
        gap: 18px;
        border-radius: 24px;
    }

    .why-choose-copy {
        padding: 12px;
    }

    .benefits-scroll-card {
        position: relative;
        top: auto;
        margin-bottom: 18px;
    }

    .benefits-scroll-card-inner {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px 22px 24px;
        border-radius: 22px;
    }

    .benefits-scroll-card-head {
        gap: 12px;
        margin-bottom: 14px;
    }

    .benefits-scroll-index {
        font-size: 18px;
    }

    .benefits-scroll-card h3 {
        font-size: 24px;
    }

    .benefits-scroll-card p {
        font-size: 15px;
    }

    .benefits-scroll-media img {
        min-height: 240px;
        border-radius: 18px;
    }

    .service-feature-card h3,
    .benefit-card h3,
    .importance-card h3,
    .booking-step-card h3 {
        font-size: 22px;
    }

    .importance-card {
        min-height: 360px;
        padding: 0;
    }

    .importance-card-overlay {
        padding: 20px;
    }

    .importance-card p {
        max-width: none;
    }

    .why-choose-photo-frame {
        min-height: 360px;
    }

    .why-choose-photo-frame img {
        min-height: 336px;
        border-radius: 20px;
    }

    .service-carousel-header {
        margin-bottom: 18px;
    }

    .service-carousel-track {
        gap: 18px;
    }

    .service-carousel-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .service-carousel-slide .service-feature-card {
        max-width: none;
        aspect-ratio: auto;
        min-height: 0;
    }
}

:root {
    /* Brand Colors */
    --primary-color: #89A77A;
    --primary-dark: #749465;
    --primary-light: #9fb891;
    --secondary-color: #000000;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Fonts */
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Inter', sans-serif;
    --body-font-size: 16px;


    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--body-font-size);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   HEADER STYLES
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        -webkit-backdrop-filter 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        border-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
}

.header.scrolled .logo a,
.header.scrolled .nav-link {
    color: var(--secondary-color);
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--secondary-color);
}

.header:not(.scrolled) .logo a,
.header:not(.scrolled) .nav-link {
    color: var(--white);
}

.header:not(.scrolled) .mobile-menu-toggle span {
    background-color: var(--white);
}

.header:not(.scrolled) .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.header:not(.scrolled) .btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.header:not(.scrolled) .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.header:not(.scrolled) .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.header:not(.scrolled) .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo,
.header-cta {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-cta {
    justify-content: flex-end;
    gap: 12px;
}

.nav {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo a:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo .logo-sticky {
    display: none;
}

.header.scrolled .logo .logo-default {
    display: none;
}

.header.scrolled .logo .logo-sticky {
    display: block;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.25s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.dropdown-icon {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    box-shadow: var(--shadow-xl);
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        visibility 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: top center;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-link {
    display: block;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        color 0.2s cubic-bezier(0.25, 1, 0.5, 1),
        transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.dropdown-link:hover {
    background-color: #EBECED;
    color: var(--primary-color);
    transform: translateX(4px);
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.btn-primary {
    color: var(--white);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    /* Explicit brand border */
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(137, 167, 122, 0.3);
}

.btn-secondary:hover {
    background-color: #f0f4ee;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.phone-icon {
    flex-shrink: 0;
}

/* Nav CTA (inside menu for mobile) */
.nav-cta {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   HERO SECTION STYLES
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    isolation: isolate;
}

.hero .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 0 60px 0;
    /* Reduced from 100px to sit lower */
    text-align: left;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 20px;
    margin-left: -1px;
    /* Optical alignment correction for letter-spacing */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    /* Reduced from 18px */
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-hero-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-hero-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(137, 167, 122, 0.35);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */
@media (max-width: 1024px) {
    .header-content {
        padding: 16px 0;
    }

    .header-cta {
        display: none;
    }

    .logo {
        flex: 1;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1002;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        display: block;
        background-color: var(--white);
        border: 1px solid var(--gray-200);
        border-radius: 20px;
        padding: 56px 12px 12px;
        box-shadow: var(--shadow-xl);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px) scale(0.95);
        transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1),
            visibility 0.4s cubic-bezier(0.25, 1, 0.5, 1),
            transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .mobile-menu-toggle.active {
        position: fixed;
        top: 98px;
        right: 32px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .header .mobile-menu-toggle.active span {
        background-color: var(--gray-900);
    }

    .nav .nav-link,
    .nav .dropdown-link {
        color: var(--gray-800) !important;
        justify-content: space-between;
        padding: 14px 16px;
        width: 100%;
    }

    .nav .nav-link:hover,
    .nav .nav-link:active,
    .nav .dropdown-link:hover,
    .nav .dropdown-link:active {
        background-color: #f0f4ee !important;
        /* Very light brand-tinted gray */
        color: var(--primary-color) !important;
    }

    .nav .btn-primary,
    .nav .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        border-radius: 12px;
        margin-top: 8px;
        font-size: 16px;
    }

    .nav .btn-primary {
        background-color: var(--primary-color) !important;
        color: var(--white) !important;
    }

    .nav .btn-secondary {
        background-color: transparent !important;
        color: var(--primary-color) !important;
        border: 2px solid var(--primary-color) !important;
    }

    .nav-cta {
        display: block;
        padding: 16px 8px 8px;
        margin-top: 12px;
        border-top: 1px solid var(--gray-100);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        border-radius: 12px;
        font-size: 16px;
        font-weight: 600;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        background-color: transparent;
    }

    .nav-item.dropdown-active .dropdown-menu {
        max-height: 800px;
        padding-bottom: 8px;
        margin-top: -2px;
        pointer-events: auto;
    }

    .dropdown-link {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 500;
        color: var(--gray-600) !important;
    }

    .dropdown-icon {
        margin-left: auto;
    }

    .hero-content {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 11px;
    }
}

/* ===================================
   ABOUT US SECTION STYLES
   =================================== */
.about {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.about-content {
    flex: 1;
    max-width: 560px;
}

.about-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.about-title .highlight {
    color: var(--primary-color);
}

.about-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-btn {
    margin-top: 24px;
}

.about-footer {
    display: flex;
    margin: 24px 0 0;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background-color: #f0f4ee;
    border-radius: 100px;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}

.cert-badge:hover {
    background-color: #e5ebd9;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.12);
}

.cert-badge svg {
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.cert-badge:hover svg {
    transform: scale(1.1) rotate(5deg);
}

/* Collage */
.about-visual {
    flex: 1;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
}

.collage-item {
    position: absolute;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-item:hover {
    transform: scale(1.03);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-item.large {
    top: 50px;
    left: 0;
    width: 320px;
    height: 400px;
    z-index: 1;
}

.collage-single {
    max-width: 560px;
    height: 560px;
}

.collage-single .collage-item.large {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.collage-item.small-top {
    top: 0;
    right: 0;
    width: 240px;
    height: 240px;
    z-index: 2;
    border: 8px solid var(--white);
}

.collage-item.small-bottom {
    bottom: 0;
    right: 40px;
    width: 200px;
    height: 200px;
    z-index: 3;
    border: 8px solid var(--white);
}

@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column-reverse;
        /* Image first on mobile */
        gap: 60px;
        text-align: left;
    }

    .about-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-title {
        font-size: 36px;
    }

    .about-badges {
        justify-content: flex-start;
    }

    .about-visual {
        width: 100%;
        height: 520px;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .about {
        padding: 80px 0;
    }

    .collage {
        height: 400px;
    }

    .collage-item.large {
        width: 240px;
        height: 300px;
    }

    .collage-single {
        height: min(420px, 88vw);
        max-width: min(420px, 88vw);
    }

    .collage-single .collage-item.large {
        width: 100%;
        height: 100%;
    }

    .collage-item.small-top {
        width: 180px;
        height: 180px;
    }

    .collage-item.small-bottom {
        width: 140px;
        height: 140px;
        right: 0;
    }
}

/* ===================================
   SHARED SECTION HEADERS
   =================================== */
.section-header {
    max-width: 800px;
    margin-bottom: 60px;
    text-align: left;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.section-title .highlight {
    color: var(--primary-color);
}

.section-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 600px;
}

/* ===================================
   SPECIALIZED CARE SECTION STYLES
   =================================== */
.specialized-care {
    padding: 120px 0;
    background-color: var(--white);
}

.care-slider-container {
    position: relative;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.care-slider {
    overflow: hidden;
    width: 100%;
}

/* Ensure section container doesn't center the slider track unnecessarily */
.specialized-care .container {
    padding: 0 24px;
    max-width: 1280px;
}

.care-slider-track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.care-card {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards by default on large screens */
    min-width: 0;
    position: relative;
    height: 415px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.slider-nav {
    position: absolute;
    top: -90px;
    right: 0;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-800);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.15);
    box-shadow: 0 6px 12px rgba(137, 167, 122, 0.3);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Responsive card sizing */
@media (max-width: 1200px) {
    .care-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 cards */
        height: 380px;
    }
}

@media (max-width: 900px) {
    .care-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 cards */
        height: 360px;
    }

    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .specialized-care {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .care-card {
        flex: 0 0 85%;
        height: 380px;
        border-radius: 16px;
    }

    .care-slider {
        padding: 0 24px;
    }

    .section-header .slider-nav,
    .care-slider-container .slider-nav {
        display: none;
    }

    .care-info {
        padding: 24px 20px;
    }

    .care-name {
        font-size: 20px;
    }

    .care-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .specialized-care {
        padding: 60px 0 50px;
    }

    .section-subtitle {
        font-size: 11px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .care-card {
        flex: 0 0 90%;
        height: 340px;
        border-radius: 14px;
    }

    .care-slider {
        padding: 0 16px;
    }

    .care-info {
        padding: 20px 16px;
    }

    .care-name {
        font-size: 18px;
    }

    .care-desc {
        font-size: 16px;
        line-height: 1.4;
    }

    .care-arrow {
        width: 38px;
        height: 38px;
        top: 16px;
        right: 16px;
    }

    .care-arrow svg {
        width: 20px;
        height: 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow svg {
        width: 18px;
        height: 18px;
    }
}

/* Care Card Content Aesthetics */
.care-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.care-card:hover img {
    transform: scale(1.12);
}

.care-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px;
    z-index: 4;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    transition: background 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.care-card:hover .care-info {
    background: transparent;
}

.care-desc {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    margin-top: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.care-card:hover .care-desc {
    opacity: 1;
    max-height: 100px;
    margin-top: 15px;
}

.care-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 4;
    /* Above the overlay */
    transition: all var(--transition-normal);
}

.care-arrow svg {
    transition: transform var(--transition-normal);
}

.care-card:hover .care-arrow {
    background-color: rgba(255, 255, 255, 0.3);
}

.care-card:hover .care-arrow svg {
    transform: rotate(45deg);
}

.care-tag {
    display: inline-block;
    padding: 8px 18px;
    background-color: #1a2e2e;
    border-radius: 100px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.care-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.care-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(137, 167, 122, 0.85);
    /* Increased opacity for clear visibility */
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: top 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.care-card:hover .care-overlay {
    top: 0;
}

.overlay-content {
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.care-card:hover .overlay-content {
    opacity: 1;
}

.overlay-content p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 32px;
}

/* ===================================
   WHY CHOOSE US SECTION STYLES
   =================================== */
.why-choose {
    position: relative;
    min-height: 620px;
    /* Specific height requested */
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    color: var(--white);
    overflow: hidden;
    padding: 40px 0;
}

.why-choose-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.15;
}

.ornament-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose .container {
    position: relative;
    z-index: 2;
}

.why-choose-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    /* Further reduced to fit 620px height */
    gap: 40px;
}

.why-subtitle {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.8;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}

.header-right {
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.why-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: #3C5A3E;
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Why Cards */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--white);
    padding: 32px 28px;
    /* Slightly reduced for a neater look */
    border-radius: 24px;
    color: var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-card-icon-wrapper {
    margin-bottom: 24px;
}

.why-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    /* Added for Font Awesome icons */
}

/* Icon specific background colors (light tints) */
.home-icon,
.yoga-icon,
.recovery-icon,
.friendly-icon {
    background-color: #f0f4ee;
    color: var(--primary-color);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.why-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Responsive Why Choose Us */
@media (max-width: 1024px) {
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-title {
        font-size: 32px;
    }

    .why-choose {
        padding: 80px 0;
    }
}

/* ===================================
   TEAM SECTION STYLES
   =================================== */
.team {
    padding: 100px 0;
    background-color: var(--white);
}

.team-header {
    margin-bottom: 60px;
}

.team-subtitle {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.team-title span {
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    position: relative;
    width: 100%;
    padding-top: 125%;
    /* Aspect ratio for profile photos */
    background: #E8D5C4;
    /* Soft beige dummy background shape */
}

.team-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* Decorative shape in background */
.team-photo::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(137, 167, 122, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.team-info-box {
    position: absolute;
    bottom: 12px;
    left: 10%;
    width: 80%;
    background-color: var(--white);
    padding: 6px 12px;
    border-radius: 10px;
    text-align: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0px;
}

.team-role {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
}

/* Responsive Team Section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team {
        padding: 60px 0;
    }

    .team-title {
        font-size: 28px;
    }
}

/* ===================================
   CSR COLLABORATIONS STYLES
   =================================== */
.csr {
    padding: 30px 0;
    background-color: #F8FAF7;
    /* Very light brand green tint */
    border-bottom: 1px solid rgba(137, 167, 122, 0.1);
}

.csr-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.csr-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 300px;
}

.csr-label {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color) !important;
    /* Lighter Green */
    /* text-transform: uppercase; */
    letter-spacing: 1px;
    white-space: nowrap;
    margin: 0;
}

.csr-label span {
    color: var(--secondary-color);
}

.csr-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--gray-600);
    margin: 0;
}

.csr-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 30px;
}

.csr-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    filter: none;
    /* Removed grayscale */
    opacity: 1;
    /* Full opacity */
}

.csr-logo:hover {
    transform: scale(1.1);
}

.csr-logo img {
    max-width: 140px;
    height: 45px;
    object-fit: contain;
}

/* Responsive CSR */
@media (max-width: 1024px) {
    .csr-wrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .csr-logos {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .csr-logo img {
        max-width: 120px;
        height: 35px;
    }
}

/* ===================================
   FAQ SECTION STYLES
   =================================== */
.faq {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.faq-title span {
    color: var(--primary-color);
}

.faq-desc-area {
    flex: 1;
    max-width: 450px;
    padding-bottom: 8px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-100);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.faq-icon {
    flex: 0 0 auto;
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    color: var(--gray-400);
    transition: all 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--primary-color);
}

.faq-item:hover .faq-icon {
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    padding-bottom: 24px;
}

/* Open State */
.faq-item.active .faq-answer {
    max-height: 200px;
    /* Large enough for content */
}

.faq-item.active .faq-icon {
    color: var(--primary-color);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-color);
}

/* Responsive FAQ */
@media (max-width: 1024px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .faq-desc-area {
        max-width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ===================================
   INSURANCE PARTNERS STYLES
   =================================== */
.insurance {
    padding: 100px 0;
    background-color: #F8FAF7;
    /* Consistent with CSR background */
}

.insurance-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.insurance-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
}

.insurance-title span {
    color: var(--primary-color);
}

.insurance-desc-area {
    max-width: 450px;
    padding-bottom: 8px;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.insurance-logo {
    background-color: var(--white);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.insurance-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.insurance-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Insurance */
@media (max-width: 1024px) {
    .insurance-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .insurance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .insurance-grid {
        grid-template-columns: 1fr;
    }

    .insurance-title {
        font-size: 32px;
    }
}

/* ===================================
   TESTIMONIALS SECTION STYLES
   =================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-header {
    text-align: left;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 10px;
}

.testimonials-title span {
    color: var(--primary-color);
}

.testimonials-slider {
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.03s linear;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc(25% - 18px);
    /* 4 cards per view */
    background-color: var(--white);
    padding: 30px;
    border: 1px solid var(--gray-100);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

/* Highlight Utilities */
.highlight-green,
.highlight-pink,
.highlight-blue,
.highlight-black {
    background-color: #000000;
    color: #FFFFFF;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-info h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.testimonial-info p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-600);
}

/* Responsive Testimonials */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px); /* 2 cards per view on tablet */
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(100% - 0px); /* 1 card per view on mobile */
    }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* ===================================
   INSIGHTS SECTION (BLOGS, NEWS, EVENTS)
   =================================== */
.insights {
    padding: 100px 0;
    background-color: var(--gray-50);
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.insights-title-area {
    flex: 1;
}

.insights-actions {
    flex-shrink: 0;
    padding-bottom: 10px;
}

.insights-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.insights-title span {
    color: var(--primary-color);
}

.insights-desc-area {
    max-width: 550px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Base Insight Card (Used on Home Page) */
.insight-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.insight-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-image img {
    transform: scale(1.1);
}

.insight-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    color: var(--white);
    z-index: 10;
}

.tag-blog {
    background-color: var(--primary-color);
}

.tag-news {
    background-color: var(--secondary-color);
}

.tag-event {
    background-color: #6366f1;
}

.insight-content {
    padding: 30px;
}

.insight-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray-600);
    font-family: var(--font-body);
}

.insight-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.insight-title-link {
    margin-bottom: 15px;
}

.insight-title-link a,
.insight-title a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.insight-title-link a:hover,
.insight-title a:hover {
    color: var(--primary-color);
}

.insight-excerpt {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.insight-more {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.insight-more:hover {
    gap: 12px;
    color: var(--primary-color);
}

/* Redesigned Blog Page Styles - Modern UI */
.blogs-page {
    background-color: #f8faf9; /* Subtle off-white/greenish tint */
    padding: 80px 0 120px;
}



/* Blog Controls */
.blog-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 30px;
}

.search-container {
    flex: 1;
    max-width: 650px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper i {
    position: absolute;
    left: 16px;
    color: var(--gray-400);
    font-size: 14px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 14px;
    background-color: var(--gray-50);
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(137, 167, 122, 0.1);
}

.filter-dropdowns {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Custom Dropdown Styling (Shadcn-inspired) */
.custom-dropdown {
    position: relative;
    width: 200px;
}

.dropdown-trigger {
    width: 100%;
    padding: 10px 16px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-trigger:hover,
.custom-dropdown.open .dropdown-trigger {
    background-color: #f0f4ee;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.dropdown-trigger:hover i,
.custom-dropdown.open .dropdown-trigger i {
    color: var(--primary-color);
}

.dropdown-trigger i {
    font-size: 12px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
}

.custom-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 6px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #f0f4ee;
    color: var(--primary-color);
}

.dropdown-item.active {
    background-color: transparent;
    color: var(--primary-color);
    font-weight: 700;
}

.dropdown-item.active::after {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
    font-size: 12px;
}

/* Enhanced Grid & Cards */
.blogs-page .insights-grid {
    gap: 40px;
}

.blogs-page .insight-card {
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blogs-page .insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-200);
}

.blogs-page .insight-image {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blogs-page .insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blogs-page .insight-card:hover .insight-image img {
    transform: scale(1.08);
}

.card-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.blogs-page .insight-content {
    padding: 32px; /* Uniform generous padding */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blogs-page .insight-content > * {
    margin: 0;
}

.blogs-page .insight-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.blogs-page .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.blogs-page .meta-item i {
    color: var(--primary-color);
    font-size: 12px;
}

.blogs-page .insight-date {
    display: none; /* Replaced by meta-item */
}

.blogs-page .insight-title {
    margin-bottom: 15px;
}

.blogs-page .insight-title a {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blogs-page .insight-title a:hover {
    color: var(--primary-color);
}

.blogs-page .insight-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-image {
        height: 320px;
    }
    .featured-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .blog-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    .filter-dropdowns {
        flex-direction: column;
        gap: 12px;
    }
    .custom-dropdown {
        width: 100%;
    }
    .search-container {
        max-width: 100%;
    }
    .featured-title {
        font-size: 28px;
    }
}

/* Pagination */
.pagination {
    margin-top: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    border-color: var(--gray-400);
    background-color: var(--gray-50);
}

.page-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.page-number.active {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

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

.page-number:hover:not(.active):not(.dots) {
    background-color: var(--gray-100);
}

.page-number.dots {
    cursor: default;
}



/* Responsive Insights */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .insights-title {
        font-size: 32px;
    }
}

/* ===================================
   SOCIAL MEDIA PRESENCE
   =================================== */
.social-presence {
    padding: 100px 0;
    background-color: #F8FAF7;
    overflow: hidden;
}

.social-presence-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 52px;
}

.social-presence-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0;
}

.social-presence-title span {
    color: var(--primary-color);
}

.social-presence-description {
    max-width: 460px;
    margin: 0;
}

.social-reels-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.social-reel-card {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 8px;
    background-color: #101010;
    border: 1px solid rgba(16, 24, 20, 0.12);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.social-reel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.18);
}

.social-reel-card video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #101010;
}

@media (max-width: 1024px) {
    .social-reels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 720px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .social-presence {
        padding: 70px 0;
    }

    .social-presence-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 32px;
    }

    .social-presence-title {
        font-size: 32px;
    }

    .social-reels-grid {
        display: flex;
        gap: 16px;
        max-width: none;
        margin: 0 -20px;
        padding: 0 20px 8px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .social-reel-card {
        flex: 0 0 min(74vw, 300px);
        scroll-snap-align: start;
    }
}

/* ===================================
   FOOTER STYLES
   =================================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 40px;
    font-family: var(--font-body);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 25px;
}

.footer-about {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.4;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray-300);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    .footer-legal {
        justify-content: flex-start;
    }
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.page-header {
    position: relative;
    height: 591.6px;
    display: flex;
    align-items: flex-end; /* Move to bottom */
    padding-bottom: 80px; /* Give some breathing space at bottom */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    text-align: left;
    color: var(--white);
    width: 100%;
}

.page-header .container {
    width: 100%;
}

.contact-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/contact_header_bg.png');
}

.careers-page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/careers_hero_bg.png');
}

.management-page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/careers_hero_bg.png');
}

.about-page-header {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/careers_hero_bg.png');
}

.blogs-page-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/contact_header_bg.png');
}

.page-header-content {
    max-width: 850px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin: 24px 0 32px; /* Increased top/bottom margin */
}

.page-title .highlight {
    color: var(--primary-light);
    /* Lighter green for dark bg */
}

.page-header .section-subtitle {
    color: var(--primary-light);
    letter-spacing: 2px;
}

.page-header .section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0 0 48px; /* Added more space below description */
    text-align: left;
    max-width: 700px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-page-section {
    padding: 120px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-card:hover {
    background-color: #f0f4ee;
    /* Very light brand-tinted gray/green */
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background-color: #f0f4ee;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.contact-text p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.5;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.map-link:hover {
    gap: 12px;
}

/* Contact Form Area */
.contact-form-card {
    padding: 50px;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.form-title span {
    color: var(--primary-color);
}

.form-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(137, 167, 122, 0.1);
}

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    user-select: none;
}

.custom-select {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--gray-900);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-select-trigger:hover {
    background-color: #f0f4ee;
    border-color: var(--primary-color);
}

.custom-select.open .custom-select-trigger {
    background-color: var(--white);
    border-color: var(--primary-color);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 0 0 4px rgba(137, 167, 122, 0.1);
}

.custom-select .arrow {
    transition: transform 0.3s ease;
    color: var(--gray-600);
}

.custom-select.open .arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid var(--gray-200);
    border-top: 0;
    background: var(--white);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 280px;
    overflow-y: auto;
}

.custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-option {
    position: relative;
    display: block;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-option:hover {
    background-color: #EBECED;
    /* Same as menu dropdown */
    color: var(--primary-color);
    padding-left: 24px;
    /* Subtle movement like menu dropdown */
}

.custom-option.selected {
    background-color: #f0f4ee;
    color: var(--primary-color);
}

.submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 18px;
}

/* Map Section */
.section-map {
    padding-bottom: 100px;
}

.map-container {
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.map-pin {
    position: relative;
    color: var(--primary-color);
    font-size: 40px;
    z-index: 2;
    transform: translateY(-20px);
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: pinPulse 2s infinite;
    z-index: -1;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.map-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: var(--white);
    padding: 24px;
    border-radius: 20px;
    max-width: 320px;
    pointer-events: auto;
    box-shadow: var(--shadow-xl);
}

.map-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-card p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 16px;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-area {
        order: 2;
    }

    .contact-form-area {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 40px;
    }

    .contact-form-card {
        padding: 30px;
    }

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

/* ===================================
   CAREERS PAGE STYLES
   =================================== */
.careers-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.75)), url('assets/careers_hero_bg.png');
}

.header-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.careers-why {
    padding: 120px 0;
    background-color: var(--gray-50);
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

/* Open Positions */
.openings {
    padding: 120px 0;
    background-color: var(--white);
}

.openings-header .section-title span {
    color: var(--primary-color);
}

.openings-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.openings-header {
    text-align: left;
    margin-bottom: 60px;
}

.openings-header .section-description {
    margin-left: 0;
    margin-right: auto;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-card-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4ee;
    border-radius: 16px;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-card:hover {
    background-color: #f0f4ee;
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.why-card:hover .why-card-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotate(10deg) scale(1.1);
}

.position-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.position-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
}

.position-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.position-actions {
    display: flex;
    gap: 12px;
}

/* Toggle Button Style */
.btn-outline {
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.btn-outline.active i {
    transform: rotate(180deg);
}

/* Expandable Description */
.job-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: #fcfdfb;
    border-top: 1px solid transparent;
}

.job-description.active {
    max-height: 1000px;
    border-top: 1px solid var(--gray-100);
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.description-col h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--gray-900);
    margin-bottom: 24px;
    font-weight: 800;
}

.description-col ul {
    list-style: none;
    padding: 0;
}

.description-col ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.description-col ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.pos-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f0f4ee;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.pos-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--gray-900);
}
/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.modal-container {
    background-color: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow-y: auto;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--gray-400);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--gray-900);
}

.modal-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.modal-header {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

.modal-header::before {
    content: 'APPLICATION FORM';
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--gray-400);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.application-form .form-group {
    margin-bottom: 24px;
}

.application-form label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--gray-700);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.required-marker {
    color: #dc2626;
}

.application-form input,
.application-form textarea {
    width: 100%;
    padding: 16px;
    background-color: #f9fafb;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--gray-900);
    transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(137, 167, 122, 0.1);
}

.application-form textarea {
    height: 120px;
    resize: none;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload-wrapper:hover {
    border-color: var(--primary-color);
    background-color: #fcfdfb;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.file-upload-content span {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 4px;
}

.file-upload-content small {
    color: var(--gray-400);
}

.modal-submit {
    width: 100%;
    padding: 18px;
    font-size: 16px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .modal-container {
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
}
.pos-meta {
    display: flex;
    gap: 24px;
    color: var(--gray-600);
    font-size: 14px;
}

.pos-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pos-meta i {
    color: var(--primary-color);
}

.openings-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gray-100);
}

.link-primary {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: underline;
    font-size: 18px;
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/ornament-curly.png');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-banner h2 span {
    color: var(--primary-color);
}

.cta-banner p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

@media (max-width: 991px) {
    .page-header {
        height: auto;
        min-height: 450px;
        padding: 160px 0 60px;
    }

    .page-title {
        font-size: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-card {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 40px;
    }

    .page-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-hero-primary,
    .hero-buttons .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

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

    /* Careers Mobile Fixes */
    .position-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px;
    }

    .position-actions {
        width: 100%;
        flex-direction: column;
    }

    .position-actions button,
    .position-actions a {
        width: 100%;
        justify-content: center;
    }

    .description-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 24px;
    }

    .modal-container {
        padding: 30px 20px;
        width: 95%;
        border-radius: 20px;
    }

    .modal-header h2 {
        font-size: 24px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
    }

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

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .contact-info-card {
        flex-direction: column;
        padding: 24px;
    }

    .contact-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* ===================================
   PRIVACY POLICY & LEGAL PAGES
   =================================== */

/* ===================================
   PRIVACY POLICY & LEGAL PAGES (PREMIUM)
   =================================== */

/* ===================================
   PRIVACY POLICY & LEGAL PAGES (PLAIN & READABLE)
   =================================== */
.privacy-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('assets/contact_header_bg.png');
}

.legal-content {
    background-color: var(--white);
    padding: 100px 0;
    font-family: var(--font-body);
}

.legal-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Sidebar */
.legal-sidebar {
    width: 280px;
    position: sticky;
    top: 120px;
    flex-shrink: 0;
}

.sidebar-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background-color: #f0f4ee;
    color: var(--primary-color);
}

.sidebar-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

/* Plain Content Area */
.legal-main {
    flex: 1;
    max-width: 800px;
}

.legal-intro {
    margin-bottom: 40px;
}

.last-updated {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.legal-subsection h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
    margin: 30px 0 15px;
}

.legal-main p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.legal-main strong {
    color: var(--secondary-color);
}

/* Plain List */
.plain-list {
    list-style: disc; /* Back to basics */
    margin-left: 20px;
    margin-bottom: 20px;
}

.plain-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 10px;
    padding-left: 10px;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .legal-layout {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 80px; /* Extra space for bottom nav */
    }
    
    .legal-sidebar {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        top: auto;
        background-color: var(--white);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 1000;
        padding: 12px 0;
    }

    .sidebar-box {
        background: transparent;
        padding: 0 15px;
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .sidebar-title {
        display: none;
    }

    .sidebar-nav {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        gap: 10px;
        padding-bottom: 5px;
        scrollbar-width: none; /* Hide scrollbar Firefox */
        -ms-overflow-style: none; /* Hide scrollbar IE/Edge */
    }

    .sidebar-nav::-webkit-scrollbar {
        display: none; /* Hide scrollbar Chrome/Safari */
    }

    .sidebar-link {
        padding: 10px 18px;
        border: 1px solid var(--gray-200);
        background-color: var(--gray-50);
        font-size: 13px;
        border-radius: 100px; /* Pill shape for tabs */
    }

    .sidebar-link.active {
        border-color: var(--primary-color);
    }
}

@media (max-width: 768px) {
    .legal-content {
        padding: 50px 0;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .lead-text {
        font-size: 18px;
    }
}

/* ===================================
   MANAGEMENT PAGE REDESIGN (PREMIUM)
   =================================== */

/* Elegant Chairman Layout */
.chairman-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f9fafb, var(--white));
}

.chairman-container {
    background-color: var(--white);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    display: flex;
    gap: 70px;
    align-items: center;
    border: 1px solid var(--gray-100);
    max-width: 1200px;
    margin: 0 auto;
}

.chairman-image-side {
    flex: 1;
    position: relative;
    max-width: 450px;
}

.chairman-photo-frame {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-xl);
}

.chairman-photo-frame img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.chairman-text-side {
    flex: 1.2;
}

.chairman-badge-new {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f4ee;
    color: var(--primary-color);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chairman-name-main {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 10px;
}

.chairman-designation {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.chairman-designation::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--gray-200);
}

.chairman-message-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
}

.chairman-message-body p {
    margin-bottom: 25px;
}

/* Premium Team Redesign (Alternating Profiles) */
.team-section-premium {
    padding: 120px 0;
    background-color: var(--white);
    overflow: hidden;
}

.team-member-profile {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 120px;
}

.team-member-profile:last-child {
    margin-bottom: 0;
}

.team-member-profile:nth-child(even) {
    flex-direction: row-reverse;
}

.profile-visual {
    flex: 1;
    position: relative;
    max-width: 550px;
}

.profile-image-container {
    position: relative;
    z-index: 2;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.profile-image-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.profile-visual:hover img {
    transform: scale(1.05);
}

.profile-ornament {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 300px;
    height: 300px;
    background-color: #f0f4ee;
    border-radius: 100px;
    z-index: 1;
}

.team-member-profile:nth-child(even) .profile-ornament {
    left: auto;
    right: -40px;
}

.profile-content {
    flex: 1.2;
}

.profile-role-pill {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.profile-name-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 30px;
}

.profile-bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
}

.profile-bio-text p {
    margin-bottom: 20px;
}

.profile-linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: transparent;
    border: 1px solid #0077b5;
    color: #0077b5;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.profile-linkedin-btn:hover {
    background-color: #0077b5;
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2);
}

.profile-linkedin-btn i {
    font-size: 18px;
}

/* Values Section */
.values-strip {
    padding: 30px 0;
    background-color: #F8FAF7;
    border-bottom: 1px solid rgba(137, 167, 122, 0.1);
}

.values-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 320px;
    flex: 0 0 320px;
}

.values-label {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    white-space: nowrap;
    margin: 0;
}

.values-label span {
    color: var(--secondary-color);
}

.values-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.4;
    color: var(--gray-600);
    margin: 0;
}

.values-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 30px;
}

.value-item {
    text-align: center;
    color: var(--secondary-color);
    flex: 1;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
}

.value-item i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--secondary-color);
}

.value-item p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive Management */
@media (max-width: 1024px) {
    .chairman-container {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
        border-radius: 20px;
        text-align: left;
    }
    
    .chairman-image-side {
        max-width: 100%;
    }
    
    .chairman-photo-frame img {
        height: 500px;
    }

    .chairman-designation {
        justify-content: flex-start;
    }

    .team-member-profile {
        flex-direction: column !important;
        gap: 40px;
        text-align: left;
        margin-bottom: 80px;
    }

    .profile-visual {
        max-width: 100%;
        width: 100%;
    }

    .profile-image-container img {
        height: 450px;
    }

    .profile-ornament {
        width: 200px;
        height: 200px;
        top: -20px;
        left: -10px;
    }

    .team-member-profile:nth-child(even) .profile-ornament {
        right: -10px;
    }

    .profile-name-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .values-wrapper {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .values-content {
        flex: initial;
        max-width: 420px;
        align-items: center;
    }

    .values-grid {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .value-item {
        flex: 0 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    .chairman-name-main {
        font-size: 32px;
    }
    
    .profile-name-title {
        font-size: 28px;
    }

    .profile-image-container img {
        height: 350px;
    }

    .values-grid {
        gap: 20px;
    }

    .value-item {
        flex: 0 1 100%;
    }

    .values-label {
        font-size: 28px;
        white-space: normal;
    }

    .chairman-container {
        padding: 30px 20px;
    }
}

/* ===================================
   ABOUT US PAGE STYLES
   =================================== */
.about-intro-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-intro-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-intro-image {
    flex: 1;
    position: relative;
}

.about-intro-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
}

.experience-float-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.experience-float-badge h3 {
    font-size: 32px;
    line-height: 1;
}

.experience-float-badge p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-intro-content {
    flex: 1.2;
}

/* Pillar Cards (Mission/Vision) */
.pillars-section {
    padding: 80px 0;
    background-color: var(--gray-50);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.pillar-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--gray-100);
    transition: all 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background-color: #f0f4ee;
    color: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

.pillar-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Specialty List (What makes us special) */
.feature-highlight-section {
    padding: 120px 0;
}

.feature-list {
    margin-top: 60px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    border-radius: 30px;
    height: 400px;
    object-fit: cover;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
}

/* Stats Counter Area */
.stats-counter-strip {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: var(--white);
}

/* Community Programmes Slider */
.community-programmes {
    padding: 120px 0;
    background-color: var(--gray-50);
    overflow: hidden;
}

.community-slider-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.community-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.community-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.community-slide {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 10px;
}

.community-impact-card {
    background-color: var(--white);
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
}

.community-impact-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.community-impact-image {
    background-color: #f0f4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
}

.community-impact-image img {
    width: 80%;
    height: auto;
    object-fit: contain;
}

/* Slider Controls */
.community-slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.community-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.community-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.arrow-prev { left: -70px; }
.arrow-next { right: -70px; }

@media (max-width: 1024px) {
    .community-impact-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .community-impact-image {
        order: -1; 
        padding: 40px 20px; /* Reduced vertical padding */
    }
    .community-impact-content {
        padding: 40px 30px; /* Reduced padding on mobile */
        justify-content: flex-start; /* Switch to flex-start for tighter look */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .community-programmes { padding: 60px 0; }
    .community-impact-content h3 { font-size: 26px !important; margin-bottom: 10px; }
    .community-impact-image { padding: 30px 20px; }
    .community-impact-image img { width: 70%; max-height: 60px; }
}

@media (max-width: 480px) {
    .community-impact-content h3 { font-size: 22px !important; }
    .community-impact-image img { width: 80%; }
}

/* Responsive About */
@media (max-width: 1024px) {
    .about-intro-grid, .feature-row, .community-impact-card {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-img img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-img img {
        height: 300px;
    }

    .about-intro-content h2 {
        font-size: 36px;
    }
    
    .community-impact-content {
        padding: 40px 24px;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   UNIVERSAL MOBILE OPTIMIZATION
   =================================== */

@media (max-width: 768px) {
    /* Global Spacing & Layout */
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0 !important;
    }

    /* Responsive Typography */
    h1, .page-title { font-size: 34px !important; line-height: 1.2 !important; }
    h2, .section-title { font-size: 28px !important; line-height: 1.3 !important; }
    h3 { font-size: 22px !important; }
    p, .section-description { font-size: 15px !important; line-height: 1.6 !important; }

    /* Navigation & Header */
    .header .container {
        padding: 8px 16px;
    }

    .mobile-menu-toggle {
        width: 44px;
        height: 44px;
    }

    /* Blog Controls & Search */
    .blog-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-bottom: 24px;
        margin-bottom: 40px;
    }

    .search-container {
        max-width: 100% !important;
        width: 100%;
    }

    .search-input-wrapper input {
        height: 48px; /* Increased touch target */
        font-size: 16px; /* Prevent iOS zoom */
        padding: 12px 16px 12px 48px;
    }

    .filter-dropdowns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .custom-dropdown {
        width: 100% !important;
    }

    .dropdown-trigger {
        height: 48px; /* Increased touch target */
        font-size: 15px;
        padding: 0 16px;
    }

    .custom-dropdown .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        margin-top: 4px;
        box-shadow: none;
        border: 1px solid var(--gray-100);
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: none; /* Controlled by open class */
    }

    .custom-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 12px 16px;
        font-size: 15px;
    }

    /* Blog Cards (Stacked Layout) */
    .insights-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }

    .blogs-page .insight-card {
        flex-direction: column !important;
        width: 100% !important;
    }

    .blogs-page .insight-image {
        height: 220px !important;
        width: 100% !important;
    }

    .blogs-page .insight-content {
        padding: 24px !important;
    }

    .blogs-page .insight-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Pagination (Mobile Friendly) */
    .pagination {
        flex-direction: column;
        gap: 24px;
        padding: 30px 16px;
    }

    .page-numbers {
        order: -1;
        gap: 10px;
    }

    .pagination-btn {
        width: 100%;
        justify-content: center;
        height: 48px;
    }
}

/* Touch Target Fixes for Modern Mobile Browsers */
@media (pointer: coarse) {
    .nav-link, .dropdown-link, .footer-links a, .filter-btn, .pagination-btn {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ===================================
   BLOG POST PAGE
   =================================== */
.blog-post-page {
    position: relative;
    overflow-x: visible;
    background: var(--gray-50);
    padding-top: 96px;
}

.blog-post-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 640px;
    background:
        radial-gradient(circle at top right, rgba(159, 184, 145, 0.14), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(180deg, #78916b 0, var(--primary-dark) 180px, #2f4527 100%);
    pointer-events: none;
}

.blog-post-hero {
    position: relative;
    color: var(--white);
    padding: 72px 0 46px;
}

.blog-post-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
}

.blog-post-hero-copy {
    max-width: 980px;
    margin: 0 auto;
    padding-bottom: 12px;
    text-align: center;
}

.blog-post-chip {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 9px 14px;
    margin-bottom: 18px;
}

.blog-post-kicker {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 18px;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
    max-width: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.76);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-body);
    margin-bottom: 24px;
}

.blog-post-meta span {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-post-meta i {
    font-size: 0.95em;
    opacity: 0.9;
}

.blog-post-meta span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.44);
    transform: translateY(-50%);
}

.blog-post-cover .container {
    max-width: 1200px;
}

.blog-post-cover-frame {
    position: relative;
    z-index: 1;
    padding: 14px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    box-shadow: 0 26px 70px rgba(22, 35, 22, 0.12);
}

.blog-post-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 55px rgba(17, 24, 39, 0.12);
}

.blog-post-content-wrap {
    position: relative;
    padding: 52px 0 110px;
}

.related-articles {
    padding: 0 0 110px;
}

.related-articles-head {
    max-width: 780px;
    margin: 0 0 38px;
    text-align: left;
}

.related-articles-head .section-title {
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.related-articles-head .section-title span {
    color: var(--primary-dark);
}

.related-articles-head .section-description {
    max-width: 640px;
    color: var(--gray-600);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.related-articles .insight-card {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(30, 44, 30, 0.08);
}

.related-articles .insight-image {
    height: 250px;
}

.related-articles .insight-content {
    padding: 26px;
}

.blog-post-layout {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.blog-post-toc {
    position: static;
    align-self: start;
    order: 2;
    margin-top: 6px;
    width: 100%;
    max-width: 100%;
}

.blog-post-content {
    order: 1;
    flex: 0 1 auto;
}

.blog-toc-panel {
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(137, 167, 122, 0.18);
    border-radius: 18px;
    padding: 22px 18px;
    box-shadow: 0 18px 40px rgba(31, 41, 55, 0.06);
}

.blog-toc-heading {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.blog-toc-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    margin-top: 0;
    padding: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-toc-list::-webkit-scrollbar {
    display: none;
    height: 0;
}

.blog-toc-list::-webkit-scrollbar-track {
    background: rgba(137, 167, 122, 0.1);
    border-radius: 999px;
}

.blog-toc-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 999px;
}

.blog-toc-list li {
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.blog-toc-link {
    min-width: 190px;
    max-width: min(340px, 68vw);
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    text-decoration: none;
    line-height: 1.25;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    border-bottom: 2px solid transparent;
    border-radius: 18px;
    padding: 8px 14px;
    background: rgba(137, 167, 122, 0.08);
    box-shadow: inset 0 0 0 1px rgba(137, 167, 122, 0.12);
    transition: var(--transition-normal);
}

.blog-toc-link:hover {
    color: var(--primary-dark);
    background: rgba(137, 167, 122, 0.08);
}

.blog-toc-link.active {
    color: var(--white);
    font-weight: 600;
    border-bottom-color: transparent;
    background: var(--primary-dark);
    box-shadow: 0 8px 18px rgba(47, 69, 39, 0.18);
}

.blog-toc-cta {
    margin-top: 18px;
    padding: 20px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(145deg, var(--primary-dark), #2f4527);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 44px rgba(47, 69, 39, 0.18);
}

.blog-toc-cta-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.blog-toc-cta p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 16px;
}

.blog-toc-cta-button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-normal);
}

.blog-toc-cta-button:hover {
    color: var(--white);
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(137, 167, 122, 0.28);
}

.appointment-modal {
    z-index: 1200;
}

.appointment-modal-container {
    max-width: 860px;
}

.appointment-modal-header {
    margin-bottom: 28px;
}

.appointment-modal-header::before {
    content: 'APPOINTMENT FORM';
}

.appointment-modal-header h2 span {
    color: var(--secondary-color);
}

.appointment-modal-header p {
    color: var(--gray-600);
    margin-top: 8px;
}

.blog-post-content {
    background: var(--white);
    border: 1px solid rgba(137, 167, 122, 0.14);
    border-radius: 26px;
    box-shadow: 0 28px 60px rgba(30, 44, 30, 0.08);
    padding: clamp(32px, 4vw, 52px);
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.blog-post-lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 30px;
}

.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.58rem, 2.2vw, 1.96rem);
    line-height: 1.2;
    color: var(--secondary-color);
    margin-top: 6px;
    margin-bottom: 16px;
    scroll-margin-top: 132px;
    overflow-wrap: break-word;
}

.blog-post-content h2:not(:first-child) {
    margin-top: 52px;
}

.blog-post-content p {
    font-size: 17px;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 16px;
    overflow-wrap: break-word;
}

.blog-post-content > * {
    max-width: 100%;
}

.blog-post-list {
    margin: 0 0 20px 0;
    padding-left: 22px;
}

.blog-post-list li {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: 8px;
}

.blog-post-callout {
    margin: 28px 0 8px;
    padding: 22px 24px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(137, 167, 122, 0.12), rgba(137, 167, 122, 0.06));
    border: 1px solid rgba(137, 167, 122, 0.2);
}

.blog-post-callout strong {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.04em;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.blog-post-callout p {
    margin-bottom: 0;
    color: var(--gray-700);
}

.blog-post-footer {
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid rgba(137, 167, 122, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.blog-post-tags,
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-post-tags span,
.blog-post-share span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-post-tags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-dark);
    text-decoration: none;
    border: 1px solid rgba(137, 167, 122, 0.2);
    border-radius: 999px;
    background: rgba(137, 167, 122, 0.08);
    transition: var(--transition-fast);
}

.blog-post-tags a:hover {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.blog-post-share a {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--primary-dark);
    border: 1px solid rgba(137, 167, 122, 0.45);
    background: rgba(137, 167, 122, 0.14);
    transition: var(--transition-fast);
}

.blog-post-copy {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(137, 167, 122, 0.45);
    background: rgba(137, 167, 122, 0.14);
    color: var(--primary-dark);
    font: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.blog-post-copy.copied {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.blog-post-share a:hover {
    color: var(--white);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

@media (min-width: 1181px) {
    .blog-post-layout {
        display: grid;
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 42px;
    }

    .blog-post-toc {
        position: sticky;
        top: 122px;
        order: 0;
        margin-top: 0;
    }

    .blog-post-content {
        order: 0;
    }

    .blog-toc-list {
        flex-direction: column;
        gap: 8px;
        scrollbar-width: auto;
        overflow-x: visible;
        margin-top: 0;
        padding: 0;
        scroll-snap-type: none;
    }

    .blog-toc-list li {
        flex: 0 1 auto;
        scroll-snap-align: none;
    }

    .blog-toc-link {
        min-width: 0;
        max-width: none;
        min-height: 0;
        display: block;
        font-weight: 400;
        color: var(--gray-700);
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        border-left: 2px solid transparent;
        border-radius: 10px;
        border-bottom: 0;
        padding: 10px 12px;
        background: transparent;
        box-shadow: none;
    }

    .blog-toc-link.active {
        color: var(--primary-dark);
        font-weight: 600;
        border-left-color: var(--primary-color);
        background: rgba(137, 167, 122, 0.14);
        box-shadow: none;
    }
}

@media (max-width: 1180px) {
    .blog-post-page {
        background: var(--gray-50);
        padding-top: 84px;
        padding-bottom: 124px;
    }

    .blog-post-page::before {
        height: 560px;
        background:
            radial-gradient(circle at top right, rgba(159, 184, 145, 0.14), transparent 28%),
            linear-gradient(180deg, #78916b 0, var(--primary-dark) 160px, #2f4527 100%);
    }

    .blog-post-hero {
        padding: 54px 0 42px;
    }

    .blog-post-title {
        max-width: 760px;
    }

    .blog-post-content-wrap {
        padding-top: 28px;
    }

    .blog-post-content-wrap .container {
        width: 100%;
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-post-content {
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .blog-toc-panel {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 10px;
        z-index: 900;
        overflow: hidden;
        background: var(--white);
        border-color: rgba(137, 167, 122, 0.28);
        border-radius: 999px;
        padding: 6px;
        box-shadow: 0 12px 28px rgba(31, 41, 55, 0.14);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .blog-toc-panel.is-hidden-after-content {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(14px);
    }

    .blog-toc-heading {
        display: none;
    }

    .blog-toc-heading::after {
        content: none;
    }

    .blog-post-content h2 {
        scroll-margin-top: 100px;
    }

    .blog-toc-link {
        width: max-content;
        min-width: 0;
        max-width: 76vw;
        white-space: nowrap;
    }
}

@media (max-width: 640px) {
    .blog-post-hero {
        padding: 40px 0 28px;
    }

    .blog-post-page::before {
        height: 500px;
    }

    .blog-post-page {
        padding-bottom: 136px;
    }

    .blog-post-meta {
        font-size: 12px;
        gap: 14px;
    }

    .blog-post-cover-frame {
        padding: 8px;
        border-radius: 18px;
    }

    .blog-post-content-wrap .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .blog-post-cover img {
        border-radius: 14px;
    }

    .blog-post-content {
        border-radius: 14px;
        padding: 20px;
    }

    .blog-toc-panel {
        left: 18px;
        right: 18px;
        bottom: 10px;
        padding: 5px;
    }

    .blog-post-lead {
        font-size: 17px;
        line-height: 1.75;
    }

    .blog-toc-list {
        margin-left: -2px;
        margin-right: -2px;
    }

    .blog-toc-link {
        width: max-content;
        min-width: 0;
        max-width: 76vw;
        min-height: 42px;
        padding: 7px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .blog-toc-cta {
        padding: 20px 18px;
    }

    .blog-toc-cta-label {
        font-size: 17px;
    }

    .blog-toc-cta p {
        font-size: 14px;
    }

    .blog-toc-cta-button {
        min-height: 48px;
        font-size: 14px;
    }

    .blog-post-footer {
        align-items: flex-start;
    }
}

/* Services page final overrides placed last so shared page-header rules don't win */
.page-header.services-page-header {
    height: auto;
    min-height: 720px;
    padding: 200px 0 170px;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(10, 15, 12, 0.84) 0%, rgba(16, 24, 20, 0.72) 40%, rgba(16, 24, 20, 0.38) 100%),
        radial-gradient(circle at top right, rgba(159, 184, 145, 0.18), transparent 24%),
        url('assets/blog_elderly.png');
    background-position: center, top right, center;
    background-size: cover, auto, cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.services-page-header .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.45);
    background-color: transparent;
}

.services-page-header .btn-secondary:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.services-page .services-faq-header {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .page-header.services-page-header {
        min-height: 640px;
        padding: 180px 0 140px;
    }
}

@media (max-width: 768px) {
    .page-header.services-page-header {
        min-height: 580px;
        padding: 150px 0 120px;
    }
}

@media (max-width: 782px) {
    .header.scrolled {
        position: fixed;
        top: 0 !important;
        left: 0;
        right: 0;
    }
}

.footer-legal.menu {
    list-style: none;
}

.footer-legal.menu li {
    margin: 0;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination .page-numbers li {
    margin: 0;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--white);
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--gray-100);
}

.pagination .page-numbers .current,
.pagination .page-numbers a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.insight-meta {
    gap: 20px;
}

.insight-meta .meta-item,
.insight-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insight-meta i {
    color: var(--primary-color);
}