
        .city-hidden-box {
            display: none;
            margin-top: 15px;
        }

        
        .city-title {
            color: #145670;
            font-size: 24px;
            cursor: pointer;
            margin-bottom: 10px;
            transition: .2s ease;
        }

        .city-title:hover {
            color: #ffdd77;
        }

       
        .city-desc-box {
            background: #111;
            padding: 8px;
            border-radius: 12px;
            color: #f1f1f1;
            line-height: 1.65;
            border: 1px solid #333;
            font-size: 16px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
        }

       
        .city-links {
            margin-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .city-links a {
            background: #1f1f1f;
            padding: 7px 14px;
            color: #f1f1f1;
            border-radius: 25px;
            font-size: 14px;
            text-decoration: none;
            border: 1px solid #444;
            transition: .2s ease;
        }

        .city-links a:hover {
            background: #196065;
            color: #000;
            border-color: #196065;
        }

        .page-wrap {
            max-width: 1180px;
            margin: 28px auto;
            padding: 6px 18px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 28px;
            box-sizing: border-box;
        }

        @media(max-width:1000px) {
            .page-wrap {
                grid-template-columns: 1fr;
                padding: 12px;
            }
        }

        
        .cards-grid {
            display: grid;
            gap: 18px;
        }

        
        .lfx-card {
            display: flex;
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #f1e6c7;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: .22s;
            align-items: stretch;
            /* IMPORTANT */
        }

        .lfx-card {
            display: flex;
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid #f1e6c7;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: .22s;
            align-items: stretch;
            /* ALWAYS same height */
        }


        .lfx-img-wrap {
            width: 210px;
            min-width: 210px;
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }


        .lfx-img-wrap img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }




        /* image overlays: views badge + action buttons */
        .lfx-views {
            position: absolute;
            top: 10px;
            left: 10px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            padding: 6px 10px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .lfx-img-btn {
            position: absolute;
            right: 12px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 16px;
            text-decoration: none;
            box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
            transition: transform .12s ease;
        }

        .lfx-img-btn:active {
            transform: scale(.98);
        }

        .lfx-call {
            bottom: 60px;
            background: linear-gradient(90deg, #111, #222);
        }

        .lfx-wa {
            bottom: 12px;
            background: linear-gradient(90deg, #25D366, #128C7E);
        }

        /* content area */
        .lfx-content {
            flex: 1;
            padding: 14px 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 0;
            /* important for ellipsis */
        }

        .lf-card-left::before {
            content: "";
            position: absolute;
            top: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.35), rgba(255, 215, 0, 0));
            border-radius: 50%;
            z-index: 1;
            pointer-events: none;
            filter: blur(10px);
        }

        .lfx-title {
            margin: 0;
            font-size: 20px;
            font-weight: 800;
            color: #111;
            line-height: 1.15;
           -webkit-line-clamp: 2; 
            overflow: hidden;
            text-overflow: ellipsis;
        }
@media(max-width:650px){
  .lfx-title{
    white-space: normal !important;   /* 🔑 THIS IS THE FIX */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

        .lfx-info {
            display: flex;
            gap: 16px;
            margin: 8px 0 6px;
            color: #34991d;
            font-size: 13px;
            font-weight: 700;
            flex-wrap: wrap;
        }

        .lfx-info span i {
            color: #41609d;
            margin-right: 6px;
        }

        .lfx-desc {
            font-size: 14px;
            color: #555;
            margin: 6px 0;
            max-height: 86px;
            overflow: hidden;
        }

        .lfx-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 8px;
        }

        .lfx-tags .tag {
            background: linear-gradient(90deg, #fff4c2, #fff1c7);
            color: #7a5b00;
            padding: 6px 12px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 13px;
        }

       .lfx-footer{
display:flex;
justify-content:flex-start;
margin-top:10px;
}
.boost-card{
border:2px solid #ffc400;
box-shadow:0 0 0 rgba(255,196,0,0.6);
animation:boostGlow 2.5s infinite;
}

@keyframes boostGlow{
0%{box-shadow:0 0 5px rgba(255,196,0,0.4);}
50%{box-shadow:0 0 18px rgba(255,196,0,0.9);}
100%{box-shadow:0 0 5px rgba(255,196,0,0.4);}
}
        .lfx-view-btn {
            background: linear-gradient(90deg, #053699, #379f15);
            padding: 8px 18px;
            border-radius: 10px;
            color: #111;
            font-weight: 800;
            text-decoration: none;
            box-shadow: 0 6px 18px rgba(212, 175, 55, 0.12);
        }

        /* Sidebar widgets */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .sb-box {
            background: #292831;
            border-radius: 14px;
            padding: 16px;
            border: 1px solid rgba(212, 175, 55, 0.06);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
            color: #fff;
        }

        .sb-title {
            margin: 0 0 12px;
            color: #5188d9;
            font-size: 18px;
            font-weight: 700;
        }
.sb-box ul {
    list-style: none;
    padding-left: 0;
}

.sb-box ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.sb-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #3ddc97;
    font-weight: bold;
}
/* ================================
   SAFETY TIPS – PREMIUM TRUST CARD
   ================================ */

/* Target last sidebar box (Safety Tips) */
.sidebar .sb-box:last-child {
    background:
       linear-gradient(180deg, rgb(18 30 65 / 95%), rgba(20, 28, 55, 0.95)), radial-gradient(circle at top right, rgba(110, 168, 255, 0.15), transparent 60%);
    border-radius: 20px;
    padding: 22px 22px 24px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.55),
        inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* Left glowing accent */
.sidebar .sb-box:last-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    background: linear-gradient(180deg, #6ea8ff, #35d48c);
    border-radius: 6px;
}

/* Title */
.sidebar .sb-box:last-child .sb-title {
    color: #9bbcff;
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

/* List reset */
.sidebar .sb-box:last-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List items */
.sidebar .sb-box:last-child ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.65;
    color: #eef2ff;
    margin-bottom: 16px;
    position: relative;
    padding-left: 38px;
}

/* Check icon circle */
.sidebar .sb-box:last-child ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #35d48c, #1fa971);
    color: #041b11;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 6px 14px rgba(53,212,140,0.45);
}

/* Subtle hover polish (not aggressive) */
.sidebar .sb-box:last-child ul li:hover {
    color: #ffffff;
}


/* =========================================
   SAFETY TIPS – DO vs DON'T (SMART ICONS)
   ========================================= */

.sidebar .sb-box:last-child ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar .sb-box:last-child ul li {
    position: relative;
    padding-left: 42px;
    font-size: 15px;
    line-height: 1.65;
    color: #eef2ff;
    margin-bottom: 16px;
}

/* DEFAULT = GOOD (GREEN CHECK) */
.sidebar .sb-box:last-child ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #35d48c, #1fa971);
    color: #041b11;
    font-size: 14px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(53,212,140,0.45);
}

/* DEFAULT = GOOD */
.sidebar .sb-box:last-child ul li.tip-do::before {
    content: "✔";
    background: linear-gradient(135deg, #35d48c, #1fa971);
    color: #041b11;
    box-shadow: 0 6px 14px rgba(53,212,140,0.45);
}

/* DON'T / WARNING */
.sidebar .sb-box:last-child ul li.tip-dont::before {
    content: "✖";
    background: linear-gradient(135deg, #ff6b6b, #d32f2f);
    color: #ffffff;
    box-shadow: 0 6px 14px rgba(211,47,47,0.45);
}




        /* pagination */
        .pager {
            display: flex;
            gap: 8px;
            justify-content: center;
            margin-top: 18px;
        }

        .pager a {
            padding: 8px 12px;
            background: #111;
            color: #fff;
            border-radius: 8px;
            text-decoration: none;
        }

        .pager a.active {
            background: #5188d9;
            color: #000;
        }

        .lfx-footer {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            margin-top: 12px;
        }

        .lfx-footer-icon {
            width: 50px;
            height: 44px;
            border-radius: 12px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 1px solid #ddd;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
        }

        .lfx-footer-icon img {
            width: 39px;
            height: 39px;
        }

        @media(max-width:650px) {

            /* KEEP HORIZONTAL LAYOUT ON MOBILE */
            .lfx-card {
                display: flex;
                flex-direction: row;
                align-items: stretch;
                /* BOTH SIDES SAME HEIGHT */
                width: 100%;
                align-items: stretch;
            }

            /* LEFT IMAGE FIX */
            .lfx-img-wrap {
                width: 150px;
                min-width: 150px;
                aspect-ratio: 4/5;
                /* FIXED SHAPE – NO HEIGHT JUMP */
                height: auto;
                overflow: hidden;
                display: flex;
            }

            .lfx-img-wrap img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                /* ALWAYS MATCHES CONTENT HEIGHT */
            }

            /* CONTENT AREA */
            .lfx-content {
                padding: 10px 12px;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .lfx-title {
                font-size: 15px;
                line-height: 1.2;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .lfx-desc {
                max-height: none;
                font-size: 13px;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .lfx-info span {
                font-size: 12px;
            }

            /* FOOTER */
            .lfx-view-btn {
                padding: 6px 12px;
                font-size: 12px;
            }

            .lfx-footer-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
        }

        .lfx-title-link,
        .lfx-desc-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .lfx-title-link:hover .lfx-title {
            color: #c19b00;
            /* gold hover (optional) */
        }

        /*----- CITY SECTION IMPROVED DESIGN -----*/
        /* ===== AREA + CITY (UNIFIED HIDDEN CONTENT DESIGN) ===== */

        .area-hidden-box {
            display: none;
            margin-top: 14px;
            background: #426aa3;
            border-radius: 14px;
            padding: 14px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
        }

        .area-title {
            cursor: pointer;
            color: #145670;
            font-size: 21px;
            margin-bottom: 10px;
            transition: .2s ease;
        }

        .area-title:hover {
            color: #06226dff;
        }

        .area-title::after {
            content: " ▼";
            font-size: 13px;
            color: #888;
        }

        .area-desc-box {
            background: #0a408d;
            padding: 10px 12px;
            border-radius: 12px;
            color: #f1f1f1;
            line-height: 1.65;
            font-size: 16px;
            border: 1px solid #333;
        }

        .area-keywords {
            margin-top: 18px;
            font-size: 15px;
            line-height: 1.6;
        }

        .area-text-link {
            color: #e1e1e1;
            text-decoration: none;
        }

        .area-text-link:hover {
            color: #08487cff;
        }

        .lf-tag-box {
            background: #ffffff;
            padding: 8px 9px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.25);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            margin-bottom: 24px;
        }
.seo-readmore-btn{
    margin-top:12px;
    background:#145670;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    transition:.2s ease;
}

.seo-readmore-btn:hover{
    background:#0d4457;
}
        .lf-tag-title {
            margin: 0;
            font-size: 24px;
            font-weight: 800;
            color: #0f2759;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .lf-tag-title span.lf-tag-arrow {
            font-size: 22px;
            color: #3b4b6d;
            transition: 0.3s;
        }

      .lf-tag-content{
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease;
    margin-top: 10px;
}

/* fade effect */
.lf-tag-content::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    height:60px;
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        rgba(255,255,255,1)
    );
    pointer-events:none;
}

/* expanded */
.lf-tag-content.active{
    max-height: 2000px;
}

.lf-tag-content.active::after{
    display:none;
}

        .lf-tag-desc {
            font-size: 16px;
            line-height: 1.7;
            color: #444;
        }
.lf-tag-desc br {
    display: none; /* 🔥 removes extra gap */
}
        .lf-tag-links {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .lf-tag-link {
            padding: 6px 12px;
            background: #f5f0db;
            color: #292831;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            border: 1px solid rgba(212, 175, 55, 0.35);
            transition: 0.2s;
        }

        .lf-tag-link:hover {
            background: #efe3b2;
        }
.sb-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-tag {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255,255,255,0.06);
    border-radius: 18px;
    transition: all 0.25s ease;
}

.tag-hidden {
    display: none; 
}

.sb-view-more {
    margin-top: 10px;
    font-size: 13px;
    color: #2f54eb;
    cursor: pointer;
    user-select: none;
}

.sb-view-more:hover {
    text-decoration: underline;
}

     .city-h1-toggle {
    cursor: pointer;
    color: #196065;
    margin: 0 0 8px;
}

/* ===== H1 DROPDOWN WRAP ===== */
.h1-dropdown-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

/* H1 */
.city-h1-toggle {
    color: #196065;
    font-size: 28px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

/* Arrow */
.h1-arrow {
    font-size: 14px;
    color: #777;
    transition: transform .25s ease;
}

/* ===== INLINE H1 EXPAND (NOT POPUP) ===== */

.h1-city-dropdown {
    display: none;
    margin-top: 10px;
    background: #ffffff;
    border: 1px solid #f0e2b0;
    border-radius: 14px;
    padding: 12px;

    /* INLINE FEEL */
    position: static;
    box-shadow: none;
    flex-wrap: wrap;
    gap: 10px;
}

.h1-city-dropdown .state-name::before {
    content: ", ";
    color: #777;
    font-weight: 400;
}


/* CITY CHIP */
.h1-city-dropdown a {
    background: #fff6dd;
    border: 1px solid #f0d58a;
    padding: 6px 14px;
    border-radius: 18px;
    font-size: 14px;
    font-weight: 600;
    color: #2b2b2b;
    text-decoration: none;
    transition: all .2s ease;
}

/* HOVER */
.h1-city-dropdown a:hover {
    background: #ffeab0;
    border-color: #e3b94f;
}

/* STATE TEXT */
.h1-city-dropdown a small {
    font-size: 12px;
    color: #777;
    margin-left: 4px;
}

.listing-section-title {
    margin: 5px 0 7px;
    font-size: 24px;
    font-weight: 800;
    color: #206065;
    border-left: 5px solid #c19b00;
    padding-left: 12px;
}
.premium-badge{
position:absolute;
top:12px;
right:12px;
background:linear-gradient(45deg,#ffcc00,#ff9800);
color:#000;
font-size:12px;
font-weight:800;
padding:6px 14px;
border-radius:20px;
box-shadow:0 4px 14px rgba(0,0,0,.25);
letter-spacing:.4px;
z-index:5;
}
  .boost-card{
border-left:6px solid #ffcc00;
}
  .boost-card{
background:linear-gradient(145deg,#fff9e6,#fff4cc);
border:2px solid #ffd86b;
box-shadow:0 12px 35px rgba(0,0,0,.12);
position:relative;
overflow:hidden;
}

.boost-card::before{
content:"";
position:absolute;
top:-40px;
right:-40px;
width:140px;
height:140px;
background:radial-gradient(circle,#ffd86b40,transparent);
border-radius:50%;
}

    
  /* ===== QUIZ MAIN BOX ===== */
.flirty-quiz-box{
background:linear-gradient(135deg,#fff7da,#fff2c2);
border-radius:18px;
padding:30px;
margin:40px 0;
border:1px solid #f2d78a;
text-align:center;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

/* ===== TITLE ===== */
.quiz-title{
font-size:26px;
font-weight:800;
color:#9a6a00;
margin-bottom:10px;
}

/* ===== INTRO TEXT ===== */
.quiz-intro-text{
font-size:16px;
color:#444;
margin-bottom:14px;
max-width:420px;
margin-left:auto;
margin-right:auto;
}

/* ===== BADGES ===== */
.quiz-badges{
display:flex;
justify-content:center;
gap:10px;
flex-wrap:wrap;
margin-bottom:18px;
}

.quiz-badges span{
background:#fff;
border-radius:20px;
padding:6px 12px;
font-size:13px;
border:1px solid #eee;
}

/* ===== PLAY BUTTON ===== */
#start-quiz-btn{
background:linear-gradient(90deg,#ff7b00,#ffb300);
color:#000;
padding:12px 28px;
font-size:16px;
border:none;
border-radius:10px;
cursor:pointer;
font-weight:700;
box-shadow:0 6px 14px rgba(255,123,0,0.25);
transition:.2s;
}

#start-quiz-btn:hover{
transform:translateY(-1px);
}

/* ===== PROGRESS BAR ===== */
.quiz-progress{
margin-bottom:18px;
font-weight:600;
color:#333;
}

.quiz-bar{
width:100%;
height:8px;
background:#eee;
border-radius:10px;
overflow:hidden;
margin-top:6px;
}

.quiz-bar-fill{
height:100%;
width:0%;
background:linear-gradient(90deg,#ff7b00,#ffb300);
transition:.3s;
}

/* ===== QUESTIONS ===== */
.quiz-step{
display:none;
max-width:520px;
margin:auto;
margin-top:15px;
}

.quiz-step.active{
display:block;
}

.quiz-step p{
font-size:17px;
font-weight:700;
color:#333;
margin-bottom:15px;
}

/* ===== OPTIONS GRID ===== */
.quiz-step{
display:none;
}

.quiz-step.active{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
justify-content:center;
}

/* ===== ANSWER BUTTONS ===== */
.quiz-step button{
background:#ffffff;
border:1px solid #d8d8d8;
padding:12px;
border-radius:10px;
cursor:pointer;
font-size:14px;
transition:.2s;
box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.quiz-step button:hover{
background:#ffb300;
border-color:#ffb300;
color:#000;
transform:translateY(-1px);
}

/* ===== RESULT BOX ===== */
#quiz-result{
margin-top:20px;
grid-column:1/-1;
}

#quiz-result h3{
font-size:22px;
margin-bottom:8px;
color:#333;
}

#quiz-result p{
font-size:15px;
color:#555;
margin-bottom:10px;
}

#quiz-result a{
display:inline-block;
padding:10px 18px;
background:linear-gradient(90deg,#ff7b00,#ffb300);
border-radius:8px;
text-decoration:none;
font-weight:700;
color:#000;
}

/* ===== MOBILE ===== */
@media(max-width:600px){

.quiz-step.active{
grid-template-columns:1fr;
}

.quiz-step button{
font-size:14px;
}

}
        .city-static-text {
            background: #ffffff;
            padding: 22px 24px;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            margin: 22px 0 30px;
            color: #222;
        }

        .city-static-text h2 {
            font-size: 22px;
            font-weight: 800;
            color: #0b4388;
            margin: 0 0 10px;
        }

        .city-static-text p {
            font-size: 16px;
            line-height: 1.75;
            margin: 0 0 14px;
            color: #333;
        }

        @media(max-width:700px) {
            .city-static-text {
                padding: 16px;
            }

            .city-static-text h2 {
                font-size: 20px;
            }
        }
        .area-links {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.area-links a {
    color: #0b4388;
    text-decoration: none;
    font-weight: 600;
    margin-right: 6px;
}

.area-links a:hover {
    text-decoration: underline;
    color: #c19b00;
}


/* ===== FAQ SECTION (CLEAN & PREMIUM) ===== */

/* ===== PRIMEESCORT FAQ – PREMIUM LOOK ===== */

.city-faq-box {
    background: linear-gradient(180deg,#ffffff,#f8faff);
    border-radius: 22px;
    padding: 36px;
    margin: 40px 0;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.faq-title {
    font-size: 22px;
    font-weight: 900;
    color: #0b4388;
    margin-bottom: 28px;
}

/* FAQ Card */
.faq-item {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(11,67,136,0.08);
    overflow: hidden;
    transition: box-shadow .25s ease, transform .15s ease;
}

.faq-item:hover {
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

/* Question button */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    text-align: left;
    flex: 1;
}

/* Plus icon (custom, not text) */
.faq-icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #0b4388;
    border-radius: 2px;
    transition: transform .25s ease;
}

.faq-icon::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Answer */
.faq-answer {
    display: none;
    padding: 0 22px 20px;
    font-size: 15.5px;
    line-height: 1.75;
    color: #444;
}

/* Open state */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) scaleY(0);
}

/* Links inside FAQ */
.city-faq-box a {
    color: #0b4388;
    font-weight: 600;
    text-decoration: none;
}

.city-faq-box a:hover {
    color: #c19b00;
    text-decoration: underline;
}

/* 🔑 THIS FIXES THE SPACING ISSUE */
.faq-question-text {
    display: inline;
    flex: 1;
}

/* Link inside question */
.faq-question-text a {
    color: #0b4388;
    font-weight: 700;
    text-decoration: none;
}

.faq-question-text a:hover {
    text-decoration: underline;
    color: #c19b00;
}

/* ✅ City content internal links */
.city-static-text a {
  color: #0b4388;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dotted rgba(11,67,136,0.35);
  transition: color .2s ease, border-color .2s ease;
}

.city-static-text a:hover {
  color: #c19b00;
  border-bottom-color: #c19b00;
}

