/* ==========================================================
   CALL AND RELIEF - ABOUT US PAGE STYLESHEET (about.css)
   Pixel-perfect design matching user specification
   ========================================================== */

/* --- Hero Section (Picture covering whole hero like home page) --- */
.about-hero {
    position: relative;
    min-height: 540px;
    display: flex;
    align-items: center;
    background-color: #071629;
    overflow: hidden;
    padding: 80px 0 90px 0;
}

.about-hero-bg-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('hero-bg.jpg');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
}

.about-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #071629 38%, rgba(7, 22, 41, 0.94) 52%, rgba(7, 22, 41, 0.65) 75%, rgba(7, 22, 41, 0.25) 100%);
}

.about-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 650px;
}

.about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 24px;
}

.about-breadcrumbs a {
    color: #94a3b8;
    transition: var(--transition-fast);
}

.about-breadcrumbs a:hover {
    color: var(--color-white);
}

.about-breadcrumbs .crumb-sep {
    font-size: 11px;
    color: #64748b;
}

.about-breadcrumbs .crumb-current {
    color: var(--color-white);
    font-weight: 600;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.12;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.about-hero-title .text-green {
    color: var(--color-primary);
    display: inline-block;
}

.about-hero-subtitle {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 500;
    color: #e2e8f0;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.about-hero-divider {
    width: 72px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

/* --- Section 1: Who We Are --- */
.who-we-are-section {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.who-we-are-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.section-badge {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.who-we-are-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.22;
    color: var(--color-navy);
    margin-bottom: 24px;
}

.who-we-are-text-block p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.who-we-are-text-block p:last-child {
    margin-bottom: 0;
}

.who-we-are-image-wrapper {
    position: relative;
}

.who-we-are-image-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10, 34, 64, 0.12);
    height: 480px;
    background-color: #f1f5f9;
}

.who-we-are-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform var(--transition-smooth);
}

.who-we-are-image-card:hover img {
    transform: scale(1.03);
}

/* Floating Badge: Family Owned & Operated */
.family-floating-badge {
    position: absolute;
    bottom: -18px;
    right: -14px;
    background-color: var(--color-white);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    padding: 12px 24px;
    box-shadow: 0 12px 28px rgba(10, 34, 64, 0.16);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-3.5deg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    z-index: 3;
}

.family-floating-badge:hover {
    transform: rotate(0deg) scale(1.04);
    box-shadow: 0 16px 32px rgba(112, 164, 59, 0.3);
}

.family-badge-icon {
    color: var(--color-primary);
    font-size: 20px;
}

.family-badge-text {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.2px;
    white-space: nowrap;
}

/* --- Section 2: Our Approach (What Makes Us Different) --- */
.our-approach-section {
    background-color: #f6f9f5;
    padding: 100px 0 110px 0;
    position: relative;
    border-top: 1px solid #edf2eb;
    border-bottom: 1px solid #edf2eb;
}

.approach-header {
    text-align: left;
    max-width: 820px;
    margin-bottom: 56px;
}

.approach-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: 18px;
}

.approach-subtitle {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

/* 2x2 Feature Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 56px;
}

.approach-card {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}

.approach-icon-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #e5f2d6;
    color: #558b2f;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(112, 164, 59, 0.15);
}

.approach-card:hover .approach-icon-circle {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 20px rgba(112, 164, 59, 0.35);
}

.approach-card-body {
    flex: 1;
}

.approach-card-title {
    font-family: var(--font-heading);
    font-size: 23px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.approach-card-body p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 14px;
}

.approach-card-body p:last-child {
    margin-bottom: 0;
}

.approach-subhead {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
    display: block;
}

/* Checklist items with green dots */
.approach-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.approach-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.check-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-primary);
    flex-shrink: 0;
}

/* 2-Column Checklist for Tailored Treatments */
.checklist-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

/* --- Section 3: Our Commitment (Protecting What Matters) --- */
.our-commitment-section {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.commitment-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.commitment-image-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(10, 34, 64, 0.12);
    height: 380px;
    background-color: #f1f5f9;
}

.commitment-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-smooth);
}

.commitment-image-card:hover img {
    transform: scale(1.03);
}

.commitment-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    line-height: 1.22;
    color: var(--color-navy);
    margin-bottom: 18px;
}

.commitment-text {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* 4 Horizontal Pillars */
.commitment-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding-top: 28px;
    border-top: 1px solid #e2e8f0;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
}

.pillar-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background-color: #e2e8f0;
}

.pillar-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #e5f2d6;
    color: #558b2f;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(112, 164, 59, 0.15);
}

.pillar-item:hover .pillar-icon-circle {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(112, 164, 59, 0.35);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.35;
}

/* --- Section 4: Pre-Footer CTA Banner (Get In Touch) --- */
.about-cta-banner {
    background: linear-gradient(90deg, rgba(6, 21, 38, 0.95) 0%, rgba(9, 29, 52, 0.92) 100%),
                url('hero-bg.jpg') center/cover no-repeat;
    color: var(--color-white);
    padding: 44px 0;
    position: relative;
    z-index: 1;
}

.about-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.about-cta-content {
    max-width: 640px;
}

.about-cta-badge {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-white);
}

.about-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta-phone {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(112, 164, 59, 0.4);
    transition: var(--transition-fast);
}

.btn-cta-phone:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(112, 164, 59, 0.5);
    color: var(--color-white);
}

.btn-cta-book {
    background-color: #0b1f36;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-white);
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition-fast);
}

.btn-cta-book:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(-2px);
    color: var(--color-white);
}

/* --- Section 5: Sleek Footer (Design Matching) --- */
.about-footer {
    background-color: #061424;
    color: var(--color-white);
    padding: 44px 0 24px 0;
}

.about-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-footer-logo {
    height: 60px;
    width: auto;
}

.about-footer-contact {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.about-footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

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

.about-footer-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-footer-contact i {
    color: var(--color-primary);
}

.about-footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-footer-abn {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 14px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.about-footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: var(--transition-fast);
}

.about-footer-socials a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.about-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.about-footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

/* ==========================================================
   RESPONSIVE MEDIA QUERIES (about.css)
   ========================================================== */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 46px;
    }
    .who-we-are-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .who-we-are-image-card {
        height: 420px;
    }
    .commitment-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .commitment-image-card {
        height: 340px;
    }
    .approach-grid {
        gap: 36px 32px;
    }
    .about-footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .about-footer-contact {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
}

@media (max-width: 900px) {
    .about-hero {
        min-height: auto;
        padding: 0;
        flex-direction: column;
    }
    .about-hero-bg-wrapper {
        position: relative;
        width: 100%;
        height: 280px;
        z-index: 1;
    }
    .about-hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center;
    }
    .about-hero-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(7, 22, 41, 0) 60%, #071629 100%);
    }
    .about-hero-container {
        padding: 36px 24px 50px 24px;
        width: 100%;
    }
    .about-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .about-cta-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 38px;
    }
    .who-we-are-title,
    .approach-title,
    .commitment-title {
        font-size: 30px;
    }
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .checklist-two-col {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .commitment-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .pillar-item:not(:last-child)::after {
        display: none;
    }
    .family-floating-badge {
        right: 10px;
        bottom: -15px;
        padding: 10px 18px;
    }
    .family-badge-text {
        font-size: 15px;
    }
}

@media (max-width: 580px) {
    .about-hero-title {
        font-size: 32px;
    }
    .about-hero-subtitle {
        font-size: 16px;
    }
    .who-we-are-image-card {
        height: 320px;
    }
    .commitment-image-card {
        height: 260px;
    }
    .about-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-phone,
    .btn-cta-book {
        width: 100%;
        justify-content: center;
    }
    .about-footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
