﻿/* ================================
   SHARED CITY PAGE STYLES
================================ */

/* Fade In */
.fade-in-section {
    animation: fadeIn 0.9s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ================================
   BREADCRUMB
================================ */

/* Breadcrumb - integrated design */
.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    margin: 0;
    justify-content: center;
    border-radius: 24px;
    display: inline-flex;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item a {
    color: #5c3e18;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .breadcrumb-item a:hover {
        color: #24190a;
    }

.breadcrumb-item.active {
    color: #3d2810;
    font-weight: 500;
}

/* Mobile refinement */
@media (max-width: 768px) {
    .page-banner {
        padding: 48px 16px;
    }

    .page-banner-content {
        padding: 0;
    }

    .page-banner h1 {
        font-size: 1.65rem;
        margin-bottom: 16px;
    }

    .page-banner p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .breadcrumb {
        padding: 6px 14px;
        font-size: 0.85rem;
    }
}


/* ================================
   CITY INFO + DOCUMENTS SECTION
   (LEFT COLUMN ONLY – CSS ENHANCEMENT)
================================ */

/* Enhance content card presence */
.content-card {
    border-radius: 16px;
    padding: 34px 32px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

    /* Improve text rhythm inside card */
    .content-card p {
        margin-bottom: 18px;
    }

    /* Better spacing before section heading */
    .content-card h3 {
        margin-top: 28px;
        margin-bottom: 14px;
    }

    /* Document list readability */
    .content-card .doc-list li {
        margin-bottom: 14px;
        line-height: 1.55;
    }

    /* Subtle divider effect using list context */
    .content-card .doc-list {
        margin-top: 18px;
    }

/* ================================
   MOBILE REFINEMENT
================================ */

@media (max-width: 768px) {
    .content-card {
        padding: 22px 20px;
        margin-bottom: 28px;
        border-radius: 14px;
    }

        .content-card h3 {
            margin-top: 22px;
        }

        .content-card .doc-list li {
            margin-bottom: 12px;
        }
}



/* ================================
   DOCUMENT LIST
================================ */

.doc-list {
    list-style: none;
    padding-left: 0;
}

    .doc-list li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 12px;
    }

        .doc-list li::before {
            content: "\f058";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #28a745;
        }

/* Form UI */
.request-quote-form-style input,
.request-quote-form-style textarea,
.request-quote-form-style select {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.request-quote-form-style .form-check {
    display: flex;
    align-items: center;
}

/* ================================
   STEPS TIMELINE
================================ */

.steps-timeline {
    position: relative;
    padding-left: 36px;
}

    .steps-timeline::before {
        content: "";
        position: absolute;
        left: 16px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #ba9044;
    }

.step-item {
    position: relative;
    padding: 20px 20px 20px 48px;
    margin-bottom: 22px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

    .step-item::before {
        content: "\f058";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 8px;
        top: 22px;
        width: 28px;
        height: 28px;
        background: #ba9044;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }



/* ================================
   TIMELINE – PREMIUM VISUAL LAYER
   (ENHANCEMENT ONLY)
================================ */

/* More breathing room */
.steps-timeline {
    margin-top: 40px;
}

    /* Upgrade step card presence */
    .steps-timeline .step-item {
        border-radius: 16px;
        padding: 28px 28px 28px 56px;
        margin-bottom: 28px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* Soften the timeline line */
    .steps-timeline::before {
        width: 3px;
        opacity: 0.85;
    }

    /* Improve check icon positioning */
    .steps-timeline .step-item::before {
        left: 12px;
        top: 24px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .steps-timeline span {
        color: #ac6f00 !important;
    } 

    /* Step title emphasis */
    .steps-timeline .step-item h3 {
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 6px;
        margin-top: 10px;
    }

    /* Step description readability */
    .steps-timeline .step-item p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* Hover feedback (desktop only) */
@media (hover: hover) {
    .steps-timeline .step-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 36px rgba(0,0,0,0.12);
    }
}

/* ================================
   MOBILE REFINEMENT
================================ */

@media (max-width: 768px) {
    .steps-timeline {
        padding-left: 28px;
    }

        .steps-timeline::before {
            left: 12px;
        }

        .steps-timeline .step-item {
            padding: 22px 20px 22px 48px;
            border-radius: 14px;
        }

            .steps-timeline .step-item::before {
                top: 20px;
            }
}


/* ================================
   FEE STRUCTURE
================================ */

.fee-card {
    background: linear-gradient(145deg, #f6edd4, #fff);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 150px;
}

    .fee-card:hover {
        transform: translateY(-5px);
    }

    .fee-card i {
        color: #ba9044;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .fee-card h3 {
        color: #24190a;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .fee-card p {
        font-size: 1rem;
        color: #333;
    }



/* ================================
   DIVORCE FEES – APP-LIKE UI UPGRADE
   (CSS-ONLY, NO HTML CHANGES)
================================ */

/* Section spacing refinement */
section .fee-card {
    position: relative;
    border-radius: 18px;
    padding: 28px 22px;
    height: 100%;
    background: linear-gradient(145deg, #fffdf9, #fff);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover lift (desktop only) */
@media (hover: hover) {
    section .fee-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 38px rgba(0,0,0,0.14);
    }
}

/* Icon container feel */
.fee-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(186,144,68,0.15);
    margin-bottom: 14px;
    font-size: 1.4rem;
}

/* Card title clarity */
.fee-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description readability */
.fee-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ================================
   GRID & MOBILE EXPERIENCE
================================ */

/* Better spacing between rows on small screens */
@media (max-width: 768px) {
    .fee-card {
        padding: 24px 18px;
    }

        .fee-card i {
            width: 50px;
            height: 50px;
            font-size: 1.25rem;
        }

        .fee-card h3 {
            font-size: 1.05rem;
        }

        .fee-card p {
            font-size: 0.9rem;
        }
}

/* Extra breathing space between stacked cards */
@media (max-width: 576px) {
    .col-sm-6 {
        margin-bottom: 22px;
    }
}


/* ================================
   FAMILY COURT SECTION
================================ */


/* Elevated panel feel */
.family-court-card {
    position: relative;
    padding: 36px 32px 32px;
    background: linear-gradient( 180deg, rgba(245,232,199,0.35) 0%, #ffffff 35% );
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

    /* Eyebrow label */
    .family-court-card .mdo-h6 {
        letter-spacing: 1.6px;
        font-size: 0.75rem;
        margin-bottom: 8px;
        opacity: 0.85;
    }

    /* Heading spacing */
    .family-court-card .mdo-h2 {
        margin-bottom: 18px;
    }

    /* Paragraph rhythm */
    .family-court-card p {
        margin-bottom: 14px;
    }

/* ================================
   IMAGE – SOFT CARD PAIRING
================================ */

.family-court-img {
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(0,0,0,0.12);
    background: #ffffff;
}

/* Desktop-only interaction */
@media (hover: hover) {
    .family-court-img:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 42px rgba(0,0,0,0.18);
    }
}

/* ================================
   MOBILE REFINEMENT
================================ */

@media (max-width: 768px) {
    .family-court-card {
        padding: 26px 20px 24px;
        border-radius: 14px;
    }

        .family-court-card::before {
            left: 16px;
            right: 16px;
        }

        .family-court-card .mdo-h2 {
            font-size: 1.6rem;
        }

    .family-court-img {
        margin-top: 22px;
        border-radius: 14px;
    }
}




/* ================================
   CTA
================================ */

.cta-box {
    background: #fdfdfd;
    border: 1px solid #d6c8a4;
    border-radius: 4px;
    box-shadow: none;
    padding: 22px 26px;
    text-align: left;
    outline: none;
}

    /* Remove modern embellishments */
    .cta-box::before {
        display: none;
    }

    /* Typography feels formal */
    .cta-box p {
        margin-bottom: 0;
        line-height: 1.65;
        font-size: 0.95rem;
        color: #2f2f2f;
    }

    /* Emphasis stays subtle */
    .cta-box strong {
        font-weight: 600;
    }

    /* Links look like legal references, not CTAs */
    .cta-box a {
        font-weight: 500;
        text-decoration: underline;
        color: #5a4a2a;
    }

/* =========================
   MOBILE CONSERVATISM
========================= */

@media (max-width: 768px) {
    .cta-box {
        padding: 18px 18px;
        font-size: 0.9rem;
    }
}




/* ================================
   ICONS
================================ */

.icon-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
}

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

    .icon-card img {
        width: 52px;
        height: 52px;
    }


/* ================================
   KEY ADVANTAGES – APP FEATURE GRID
   (CSS-ONLY ENHANCEMENT)
================================ */

/* Card refinement */
.icon-card {
    position: relative;
    border-radius: 8px;
    padding: 20px 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
    margin-bottom: 15px;
}

    /* Icon container (no gradient) */
    .icon-card img {
        padding: 12px;
        border-radius: 14px;
        background: #f8f9fa;
        margin-bottom: 14px;
    }

    /* Title clarity */
    .icon-card h4 {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    /* Description rhythm */
    .icon-card p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0;
    }

/* Desktop hover polish */
@media (hover: hover) {
    .icon-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 36px rgba(0,0,0,0.14);
    }
}

/* ================================
   MOBILE-FIRST EXPERIENCE
================================ */

@media (max-width: 768px) {
    .icon-card {
        padding: 22px 18px;
        border-radius: 8px;
        margin-bottom: 15px;
    }

        .icon-card img {
            width: 46px;
            height: 46px;
            padding: 10px;
        }

        .icon-card h4 {
            font-size: 1rem;
        }

        .icon-card p {
            font-size: 0.88rem;
        }
}

/* Extra breathing space when stacked */
@media (max-width: 576px) {
    .col-sm-6 {
        margin-bottom: 22px;
    }
}


/* ================================
   FAQS
================================ */

.faq-section {
    padding: 60px 0;
}

.accordion-button {
    font-weight: 500;
}

.toggle-icon {
    margin-right: 8px;
    font-weight: bold;
}


/* ================================
   LAWYER SECTION
================================ */

.lawyers-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.1);
}


/* ================================
   LAWYERS SECTION – TRUST PANEL UI
   (CSS-ONLY ENHANCEMENT)
================================ */

/* Card refinement */
.lawyers-card {
    border-radius: 20px;
    padding: 40px 42px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
    max-width: 960px;
    margin: 0 auto;
}

    /* Heading emphasis */
    .lawyers-card .mdo-h1 {
        margin-bottom: 18px;
    }

    /* Paragraph rhythm */
    .lawyers-card p {
        margin-bottom: 14px;
        line-height: 1.7;
    }

        /* Separate CTA visually from content */
        .lawyers-card p.text-center {
            margin-top: 26px;
        }

    /* ================================
   WHATSAPP CTA – LIGHT, TRUSTED UI
================================ */

    .lawyers-card .cta-button {
        background: #f8f9fa; /* light neutral background */
        color: #1f2933; /* dark readable text */
        border: 1.5px solid rgba(34,197,94,0.35); /* subtle WhatsApp hint */
        box-shadow: 0 6px 18px rgba(0,0,0,0.10);
        padding: 10px;
        border-radius: 6px;
    }

        /* Space between WhatsApp icon and text */
        .lawyers-card .cta-button i.fab.fa-whatsapp {
            margin-right: 8px;
            font-size: 1.05em; /* slight emphasis */
        }
        /* WhatsApp icon color */
        .lawyers-card .cta-button i {
            color: #22c55e; /* WhatsApp green (controlled, not loud) */
        }

/* Hover / tap feedback (desktop only) */
@media (hover: hover) {
    .lawyers-card .cta-button:hover {
        background: #ffffff;
        box-shadow: 0 10px 26px rgba(0,0,0,0.16);
    }
}

/* Mobile tap comfort */
@media (max-width: 768px) {
    .lawyers-card .cta-button {
        background: #ffffff;
        border-radius: 6px;
        font-size: 12px;
    }
}



/* ================================
   MOBILE-FIRST REFINEMENT
================================ */

@media (max-width: 768px) {
    .lawyers-card {
        padding: 26px 22px;
        border-radius: 16px;
    }

        .lawyers-card .mdo-h1 {
            font-size: 1.6rem;
        }

        .lawyers-card p {
            font-size: 0.95rem;
        }

}




/* ================================
   CLIENT STORIES – EDITORIAL STYLE
   (TRUST-FIRST, NO MARKETING EFFECTS)
================================ */

.client-stories-section {
    padding: 56px 0;
    background: #f6f5f2;
}

    /* Headings */
    .client-stories-section h2 {
        font-size: 2.1rem;
        font-weight: 600;
        text-align: center;
        margin-bottom: 16px;
    }

    .client-stories-section p {
        max-width: 720px;
        margin: 0 auto 40px;
        text-align: center;
        font-size: 1rem;
        color: #444;
    }

/* Story container – NOT a card */
.story-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0 12px;
    margin-bottom: 36px;
}

    /* Quote text */
    .story-card blockquote {
        font-size: 1rem;
        line-height: 1.7;
        color: #222;
        margin: 0 0 14px;
        padding-left: 22px;
        position: relative;
        border-left: 3px solid rgba(186,144,68,0.35);
    }

        /* Remove decorative quote icon */
        .story-card blockquote::before {
            content: none;
        }

    /* Attribution */
    .story-card cite {
        display: block;
        font-size: 0.95rem;
        font-weight: 500;
        color: #333;
        text-align: left;
        padding-left: 22px;
    }

        .story-card cite span {
            color: #777;
            font-weight: 400;
        }

/* ================================
   MOBILE EXPERIENCE
================================ */

@media (max-width: 768px) {
    .story-card {
        margin-bottom: 28px;
    }

        .story-card blockquote {
            font-size: 0.95rem;
            padding-left: 18px;
        }

        .story-card cite {
            font-size: 0.9rem;
            padding-left: 18px;
        }
}

