/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */


/* === Brand Identity Variables === */
:root {
    --city-navy: #003366;      /* Navy Trust - Primary Headers/Buttons */
    --city-cyan: #00AEEF;      /* Arctic Cyan - Icons/Highlights */
    --city-ice-tint: #F0F8FF;  /* Ice Blue Tint - Backgrounds */
    --city-slate: #333333;     /* Deep Slate - Body Text */
	    --city-text: #1A2B3C;
	    --city-ice: #F5FAFF;	
    --city-deep: #0077B6;


}

/* === Global Typography === */
body {
    font-family: 'Inter', sans-serif !important;
    color: var(--city-slate);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif !important;
    color: var(--city-navy);
    font-weight: 700;
}

/* === Custom Classes for General Use === */
.city-navy-bg { background-color: var(--city-navy) !important; color: #ffffff !important; }
.city-cyan-text { color: var(--city-cyan) !important; }

/* === Form Component Classes === */
.city-form-input input, .city-form-input textarea {
    border: 1px solid #E2E8F0 !important;
    border-radius: 4px !important;
    padding: 12px !important;
}

.city-rating-stars .elementor-field-label {
    font-weight: 700 !important;
    color: var(--city-navy) !important;
}

.city-rating-stars .elementor-rating-icon.active {
    color: #FFB400 !important; /* Gold for stars */
}

.city-btn-submit .elementor-button {
    background-color: var(--city-navy) !important;
    transition: 0.3s ease-in-out !important;
}

.city-btn-submit .elementor-button:hover {
    background-color: var(--city-cyan) !important;
    transform: translateY(-2px);
}

/* ===== 主容器（玻璃+层次）===== */
.city-cooling-radial-container {
    background: linear-gradient(145deg, #ffffff, #f4f9ff);
    border-radius: 24px;
    padding: 45px;

    box-shadow: 
        0 30px 80px rgba(0, 51, 102, 0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);

    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 45px;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto;
}
/* ===== 左侧 3D 卡片 ===== */
.radial-total-wrapper {
    perspective: 1200px;
    height: 200px;
}

.radial-total-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.radial-total-wrapper:hover .radial-total-card {
    transform: rotateY(180deg);
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
}

/* front */
.card-front {
    background: linear-gradient(145deg, #003366, #004080);
    color: white;
    box-shadow: inset 0 1px 10px rgba(255,255,255,0.05);
}

/* back */
.card-back {
    background: linear-gradient(145deg, #00AEEF, #0077B6);
    color: white;
    transform: rotateY(180deg);
    text-align: center;
}

/* text */
.total-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    opacity: 0.8;
    text-transform: uppercase;
}

.total-number {
    font-size: 52px;
    font-weight: 800;
    margin: 8px 0;
}

.back-text {
    font-size: 15px;
    font-weight: 700;
}

.back-divider {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.7);
    margin: 10px 0;
}

.back-subtext {
    font-size: 12px;
    opacity: 0.9;
}

/* ===== 右侧评分 ===== */
.radial-scores-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.radial-item {
    position: relative;
    text-align: center;
    flex: 1;
    border-radius: 20px;
    padding: 16px;

    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);

    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.radial-item::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 0%),
        rgba(0,174,239,0.25),
        transparent 60%
    );

    opacity: 0;
    transition: opacity 0.3s ease;
}

.radial-item:hover::before {
    opacity: 1;
}

.radial-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,174,239,0.15),
        0 6px 15px rgba(0,0,0,0.05);
}
/* ===== SVG ===== */
.circular-chart {
    max-width: 110px;
    overflow: visible;
}

/* 背景圈 */
.circle-bg {
    fill: none;
    stroke: #eaf3fb;
    stroke-width: 2.5;
}


.circle-progress {
    fill: none;
    stroke-width: 3.2;
    stroke-linecap: round;
}


/* hover 增强 */
.radial-item:hover .circle-progress {
    stroke-width: 4.2;
    filter: drop-shadow(0 6px 12px rgba(0,174,239,0.25));
}

.glow-dot {
    offset-path: path("M21 5 a 16 16 0 0 1 0 32 a 16 16 0 0 1 0 -32");
    offset-distance: var(--target-pct);

    fill: #fff;

    filter:
        drop-shadow(0 2px 6px rgba(0,0,0,0.2))
        drop-shadow(0 0 6px rgba(255,255,255,0.6));

    animation: premiumPulse 3s ease-in-out infinite;
}

.radial-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;

    background: linear-gradient(
        120deg,
        rgba(255,255,255,0.6),
        transparent 60%
    );

    opacity: 0;
    transition: opacity 0.4s ease;
}

.radial-item:hover::after {
    opacity: 1;
}

/* 呼吸动画（轻微） */
@keyframes premiumPulse {
    0%,100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.25); opacity: 1; }
}

/* ===== 数字 ===== */
.percentage {
    fill: var(--city-navy);
    font-size: 12px;
    font-weight: 800;
    text-anchor: middle;
    transition: 0.3s;
}

/* ===== label ===== */
.radial-label {
    display: block;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--city-text);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.radial-item:hover .radial-label {
    color: var(--city-navy);
    letter-spacing: 0.4px;
}

/* ===== 响应式 ===== */
@media (max-width: 768px) {
    .city-cooling-radial-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .radial-scores-grid {
        flex-direction: column;
    }
}


/* === City Reviews Display === */
.city-reviews-wrap { max-width: 900px; margin: 0 auto; font-family: 'Inter', sans-serif; color: #1a2b3c; }
.city-reviews-heading { font-size: 22px; font-weight: 700; color: #003366; margin-bottom: 4px; }
.city-reviews-subheading { font-size: 13px; color: #555; margin-bottom: 1.5rem; }

.city-rv-summary { display: flex; align-items: flex-start; gap: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #e2e8f0; margin-bottom: 1.5rem; }
.city-rv-score-block { text-align: center; }
.city-rv-big-star { font-size: 28px; color: #f5a623; line-height: 1; }
.city-rv-big-num { font-size: 38px; font-weight: 800; color: #003366; line-height: 1.1; }
.city-rv-score-label { font-size: 11px; color: #888; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }
.city-rv-bars { flex: 1; }
.city-rv-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 12px; color: #666; }
.city-rv-bar-label { min-width: 44px; }
.city-rv-bar-track { flex: 1; height: 8px; background: #eef2f7; border-radius: 4px; overflow: hidden; }
.city-rv-bar-fill { height: 100%; background: #003366; border-radius: 4px; }
.city-rv-bar-pct { min-width: 30px; text-align: right; font-size: 11px; }

.city-rv-notice { background: #e8f7fc; border: 1px solid #b3ddf0; border-radius: 8px; padding: 10px 14px; font-size: 12px; color: #0077b6; margin-bottom: 1.5rem; display: flex; gap: 8px; align-items: flex-start; }
.city-rv-notice-icon { font-size: 14px; flex-shrink: 0; }

.city-rv-search-wrap { position: relative; margin-bottom: 1rem; }
.city-rv-search-icon { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: #999; pointer-events: none; display: flex; align-items: center; line-height: 0; z-index: 2; }
.city-rv-search-icon svg { width: 16px; height: 16px; }
.city-rv-search { width: 100%; box-sizing: border-box; padding: 10px 16px 10px 38px; border: 1px solid #d1d5db; border-radius: 999px; font-size: 13px; outline: none; transition: border-color 0.2s; position: relative; z-index: 1; background: #fff; }
.city-rv-search:focus { border-color: #00aeef; }

.city-rv-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.city-rv-filter { padding: 7px 16px; border: 1px solid #d1d5db; border-radius: 999px; font-size: 12px; background: #fff; color: #555; cursor: pointer; transition: all 0.2s; }
.city-rv-filter:hover, .city-rv-filter.active { background: #003366; color: #fff; border-color: #003366; }

.city-rv-write-wrap { display: flex; justify-content: flex-end; margin-bottom: 1.1rem; }
.city-rv-write-btn { display: inline-flex; align-items: center; justify-content: center; background: #003366; color: #fff; border: 1px solid #003366; border-radius: 999px; padding: 8px 16px; font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.city-rv-write-btn:hover { background: #00aeef; border-color: #00aeef; color: #fff; }
.city-rv-write-anchor { display: block; height: 1px; margin-top: 24px; }

.city-rv-card { padding: 1.3rem 0; border-bottom: 1px solid #e2e8f0; }
.city-rv-card-inner { display: flex; gap: 14px; }
.city-rv-card-body { flex: 1; }
.city-rv-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.city-rv-user { display: flex; align-items: center; gap: 10px; }
.city-rv-avatar { width: 38px; height: 38px; border-radius: 50%; background: #003366; color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.city-rv-user-name { font-size: 13px; font-weight: 600; color: #1a2b3c; }
.city-rv-user-meta { font-size: 11px; color: #999; margin-top: 2px; }
.city-rv-date { font-size: 12px; color: #999; white-space: nowrap; }
.city-rv-stars { display: flex; gap: 2px; margin: 6px 0; }
.city-rv-star { font-size: 18px; color: #ddd; }
.city-rv-star.filled { color: #00b67a; }
.city-rv-criteria { margin: 6px 0 10px; display: grid; gap: 2px; }
.city-rv-criteria-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.city-rv-criteria-label { font-size: 12px; color: #4b5563; font-weight: 500; }
.city-rv-criteria-stars { margin: 0; }
.city-rv-criteria-stars .city-rv-star { font-size: 16px; }
.city-rv-title { font-size: 14px; font-weight: 700; color: #003366; margin-bottom: 5px; }
.city-rv-text { font-size: 13px; color: #444; line-height: 1.6; margin-bottom: 10px; }
.city-rv-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.city-rv-tag { font-size: 11px; background: #f0f4f8; border: 1px solid #e2e8f0; border-radius: 4px; padding: 3px 9px; color: #666; }
.city-rv-img { width: 64px; height: 64px; border-radius: 8px; object-fit: cover; border: 1px solid #e2e8f0; flex-shrink: 0; }


/* =============================================
   CONTACT / BOOKING FORM  [city_contact_form]
   ============================================= */

.ccf-wrap {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px rgba(0, 51, 102, 0.06);
    font-family: 'Inter', sans-serif;
    max-width: 100%;
}

.ccf-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--city-navy, #003366);
    margin: 0 0 4px;
}

.ccf-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 20px;
    line-height: 1.5;
}

/* Layout */
.ccf-form { display: flex; flex-direction: column; gap: 16px; }
.ccf-row  { display: flex; gap: 14px; }
.ccf-half { flex: 1; min-width: 0; }

/* Fields */
.ccf-field { display: flex; flex-direction: column; gap: 6px; }

.ccf-field label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.2px;
}

.ccf-req { color: #ef4444; }

.ccf-field input[type="text"],
.ccf-field input[type="email"],
.ccf-field input[type="tel"],
.ccf-field input[type="number"],
.ccf-field input[type="date"],
.ccf-field select,
.ccf-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.ccf-field input:focus,
.ccf-field select:focus,
.ccf-field textarea:focus {
    border-color: var(--city-cyan, #00AEEF);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
    background: #fff;
}

.ccf-field textarea { resize: vertical; min-height: 70px; }

.ccf-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* Checkbox & Radio grids */
.ccf-checkbox-grid {
    display: grid;
    gap: 8px 14px;
    margin-top: 2px;
    margin-bottom: 8px;
}

.ccf-wrap .ccf-checkbox-grid {
    display: grid !important;
}

.ccf-wrap .ccf-check,
.ccf-wrap .ccf-radio {
    display: flex !important;
}
.ccf-cols-2 { grid-template-columns: 1fr 1fr; }
.ccf-cols-3 { grid-template-columns: 1fr 1fr 1fr; }

.ccf-check,
.ccf-radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #374151;
    cursor: pointer;
    padding: 2px 0;
    line-height: 1.35;
}

.ccf-check input,
.ccf-radio input {
    width: 15px;
    height: 15px;
    accent-color: var(--city-navy, #003366);
    cursor: pointer;
    flex-shrink: 0;
}

.ccf-radio-row {
    display: flex;
    gap: 20px;
    padding-top: 8px;
    margin-bottom: 6px;
}

/* Service fields animation */
.ccf-service-fields {
    animation: ccfSlideDown 0.35s ease-out;
    border-top: 1px dashed #e2e8f0;
    padding-top: 18px;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ccf-service-fields > .ccf-field,
.ccf-service-fields > .ccf-row {
    margin-top: 4px;
}

.ccf-service-fields > .ccf-field:first-child {
    margin-top: 0;
}

@keyframes ccfSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Submit button */
.ccf-submit {
    width: 100%;
    padding: 12px;
    margin-top: 2px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #003366 0%, #00508f 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.24);
}

.ccf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 112, 173, 0.34);
    filter: saturate(1.05);
}

.ccf-submit:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.25), 0 10px 24px rgba(0, 51, 102, 0.26);
}

.ccf-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.ccf-submit-loading {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Response messages */
.ccf-response {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 4px;
}

.ccf-response-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.ccf-response-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Responsive */
@media (max-width: 480px) {
    .ccf-wrap { padding: 20px 16px; border-radius: 12px; }
    .ccf-row  { flex-direction: column; gap: 14px; }
    .ccf-form { gap: 14px; }
    .ccf-field { gap: 5px; }
    .ccf-cols-3 { grid-template-columns: 1fr 1fr; }
    .ccf-checkbox-grid { gap: 6px 10px; }
    .ccf-title { font-size: 19px; }
}

.city-rv-actions { display: flex; align-items: center; gap: 10px; }
.city-rv-action-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: #666; border: 1px solid #d1d5db; border-radius: 6px; padding: 5px 12px; cursor: pointer; background: #fff; transition: all 0.15s; }
.city-rv-action-btn:hover { background: #f0f4f8; }
.city-rv-action-btn.voted-up { color: #0077b6; border-color: #0077b6; background: #e8f7fc; }
.city-rv-action-btn.voted-down { color: #c0392b; border-color: #e24b4a; background: #fdecea; }

.city-rv-pag { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; justify-content: center; }
.city-rv-pag-btn { padding: 8px 18px; border: 1px solid #d1d5db; border-radius: 6px; background: #fff; cursor: pointer; font-size: 13px; transition: all 0.2s; }
.city-rv-pag-btn:hover { background: #003366; color: #fff; border-color: #003366; }
.city-rv-pag-info { font-size: 13px; color: #888; }
.city-rv-empty { font-size: 13px; color: #999; padding: 1rem 0; }

@media (max-width: 768px) {
    .city-reviews-wrap {
        padding: 0 12px;
    }
    .city-rv-summary {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .city-rv-score-block {
        display: flex;
        align-items: flex-end;
        gap: 10px;
        text-align: left;
    }
    .city-rv-score-label {
        margin-top: 0;
        margin-bottom: 3px;
    }
    .city-rv-bars {
        width: 100%;
    }
    .city-rv-write-wrap {
        justify-content: flex-start;
    }
    .city-rv-actions {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 600px) {
    .city-rv-card-inner { flex-direction: column; }
    .city-rv-search {
        font-size: 16px;
    }
    .city-rv-action-btn {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
    }
    .city-rv-write-btn {
        width: 100%;
    }
    .city-rv-criteria-row { align-items: flex-start; flex-direction: column; gap: 0; }
    .city-rv-img { width: 100%; height: 160px; }
}


/* =============================================
   BLOG EMPTY STATE [city_blog_empty_state]
   ============================================= */
.city-blog-empty {
    max-width: 740px;
    margin: 18px auto;
    padding: 34px 26px;
    border: 1px solid #d6e8f6;
    border-radius: 16px;
    text-align: center;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
    box-shadow: 0 10px 30px rgba(0, 51, 102, 0.06);
}

.city-blog-empty-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 12px;
}

.city-blog-empty-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.city-blog-empty-title {
    margin: 0 0 8px;
    color: #003366;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
}

.city-blog-empty-message {
    margin: 0 auto 18px;
    max-width: 560px;
    color: #475569;
    font-size: 16px;
    line-height: 1.6;
}

.city-blog-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid #0a4e85;
    background: linear-gradient(135deg, #003366 0%, #0077b6 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
    box-shadow: 0 8px 22px rgba(0, 102, 153, 0.26);
    position: relative;
    overflow: hidden;
}

.city-blog-empty-btn::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -25%;
    width: 40%;
    height: 320%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
    transform: rotate(20deg);
    transition: left 0.45s ease;
}

.city-blog-empty-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 119, 182, 0.36);
    filter: saturate(1.08);
}

.city-blog-empty-btn:hover::before {
    left: 120%;
}

.city-blog-empty-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.26), 0 10px 24px rgba(0, 102, 153, 0.28);
}

@media (max-width: 767px) {
    .city-blog-empty {
        margin: 12px;
        padding: 24px 16px;
    }

    .city-blog-empty-title {
        font-size: 22px;
    }

    .city-blog-empty-message {
        font-size: 14px;
        margin-bottom: 14px;
    }
}


/* =============================================
   BLOG SHOWCASE [city_blog_showcase]
   ============================================= */
.city-blog-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.city-blog-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}

.city-blog-menu-btn {
    border: 1px solid #d6e6f5;
    background: #ffffff;
    color: #0f3555;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.city-blog-menu-btn:hover {
    border-color: #8dc9ea;
    color: #003366;
    transform: translateY(-1px);
}

.city-blog-menu-btn.is-active {
    background: linear-gradient(135deg, #003366 0%, #0077b6 100%);
    border-color: #0a4e85;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(0, 102, 153, 0.22);
}

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

.city-blog-card {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e3edf7;
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.city-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 51, 102, 0.14);
}

.city-blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.city-blog-card-image-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #edf5fc;
}

.city-blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.city-blog-card:hover .city-blog-card-image {
    transform: scale(1.04);
}

.city-blog-card-body {
    padding: 14px 14px 16px;
}

.city-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    margin-bottom: 8px;
}

.city-blog-card-cat {
    color: #0077b6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.city-blog-card-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #a0b8cc;
}

.city-blog-card-date {
    color: #64748b;
    font-weight: 500;
}

.city-blog-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.35;
    color: #0f2f4a;
    font-weight: 700;
}

.city-blog-card-excerpt {
    margin: 10px 0 14px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

.city-blog-card-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #0077b6;
}

.city-blog-card-readmore::after {
    content: '->';
    transition: transform 0.2s ease;
}

.city-blog-card:hover .city-blog-card-readmore::after {
    transform: translateX(2px);
}

@media (max-width: 1024px) {
    .city-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .city-blog-menu {
        gap: 8px;
        margin-bottom: 14px;
    }

    .city-blog-menu-btn {
        padding: 9px 13px;
        font-size: 12px;
    }

    .city-blog-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .city-blog-card-title {
        font-size: 17px;
    }
}


/* ============================================
   Promo Carousel — promo-carousel.css
   Place in your child theme root folder
   ============================================ */

/* Wrapper */
.promo-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 14px;
  background: #111;
  /* Subtle edge glow so it pops on white pages */
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* Track — slides sit side by side */
.promo-carousel-track {
  display: flex;
  transition: transform 0.52s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Each slide */
.promo-slide {
  position: relative;
  min-width: 100%;
  overflow: hidden;
  aspect-ratio: 420 / 595; /* matches your 420×595 Elementor crop */
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.promo-slide:hover img {
  transform: scale(1.03);
}

/* Gradient overlay — always present, dark at bottom */
.promo-slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    transparent 100%
  );
  padding: 28px 20px 20px;
  transform: translateY(64px);
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-slide:hover .promo-slide-overlay {
  transform: translateY(0);
}

/* Tag / caption pill */
.promo-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border: 0.5px solid rgba(255, 255, 255, 0.35);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

/* Title */
.promo-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 7px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

/* Description — fades in after title */
.promo-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.32s 0.12s ease, transform 0.32s 0.12s ease;
}

.promo-slide:hover .promo-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation arrows */
.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 0.5px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.promo-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.promo-nav:active {
  transform: translateY(-50%) scale(0.93);
}

.promo-nav--prev { left: 12px; }
.promo-nav--next { right: 12px; }

/* Dot indicators */
.promo-dots {
  position: absolute;
  bottom: 12px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 10;
}

.promo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.promo-dot.is-active {
  background: #ffffff;
  transform: scale(1.35);
}

/* Error state */
.promo-carousel-error {
  color: #c0392b;
  font-size: 13px;
  padding: 8px 0;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .promo-carousel-wrapper {
    border-radius: 0;
    max-width: 100%;
  }

  .promo-title { font-size: 15px; }
  .promo-desc  { font-size: 12px; }

  /* On mobile, keep overlay visible (no hover on touch) */
  .promo-slide-overlay {
    transform: translateY(0);
  }
  .promo-desc {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =============================================
   CUSTOM COMMENT FORM & DISPLAY
   Shortcodes: [custom_comment_form] [display_comments]
   ============================================= */

/* ---- Form wrapper card ---- */
.cmt-form-wrap {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 51, 102, 0.08);
    overflow: hidden;
    margin-bottom: 32px;
}

.cmt-form-header {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cmt-form-header-icon {
    background: rgba(0, 174, 239, 0.18);
    border: 1px solid rgba(0, 174, 239, 0.35);
    border-radius: 10px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cmt-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.2;
}

.cmt-form-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
    line-height: 1.4;
}

/* ---- Form fields ---- */
#custom-comment-form {
    padding: 24px 28px 28px;
}

.cmt-row {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}

.cmt-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.cmt-row .cmt-field { margin-bottom: 0; }

.cmt-label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    letter-spacing: 0.02em;
}

.cmt-req { color: #00AEEF; }

#custom-comment-form input,
#custom-comment-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: #F8FAFC;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
}

#custom-comment-form input:focus,
#custom-comment-form textarea:focus {
    border-color: #00AEEF;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.12);
}

#custom-comment-form textarea {
    min-height: 110px;
    resize: vertical;
}

/* ---- Reaction selector ---- */
.cmt-reaction {
    margin-bottom: 20px;
}

.cmt-reaction .cmt-label {
    display: block;
    margin-bottom: 10px;
}

.cmt-reaction-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cmt-react-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    border: 1.5px solid #E2E8F0;
    background: #F8FAFC;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    font-family: inherit;
}

.cmt-react-btn:hover {
    border-color: #00AEEF;
    background: #f0faff;
    transform: translateY(-2px);
}

.cmt-react-btn.active {
    border-color: #00AEEF;
    background: linear-gradient(135deg, #e0f5fe, #c7ecfd);
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.15);
}

.cmt-react-emoji { font-size: 22px; line-height: 1; }

.cmt-react-label {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.03em;
}

.cmt-react-btn.active .cmt-react-label { color: #0077b6; }

/* ---- Submit button ---- */
.cmt-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #003366, #004d99);
    color: #ffffff;
    padding: 13px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.02em;
    font-family: inherit;
}

.cmt-submit-btn:hover {
    background: linear-gradient(135deg, #002244, #003d7a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.25);
}

.cmt-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* ---- Response message ---- */
.cmt-message {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.cmt-message.is-visible {
    opacity: 1;
}

.cmt-message.is-fading {
    opacity: 0;
    transform: translateY(-4px);
}

.cmt-message--success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #15803d;
}

.cmt-message--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #b91c1c;
}

/* ---- Comment display list ---- */
.cmt-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cmt-empty {
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
    padding: 24px 0;
}

.cmt-empty-state {
    max-width: 520px;
    margin: 8px auto 24px;
    padding: 24px 20px;
    border: 1px dashed #c9d7e6;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbff 0%, #f1f7ff 100%);
    text-align: center;
}

.cmt-empty-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #e8f2ff;
    color: #003366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    line-height: 1;
}

.cmt-empty-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #003366;
}

.cmt-empty-text {
    margin: 0;
    font-size: 14px;
    color: #526377;
}

/* ---- Comment Carousel (Multi-Card) ---- */
.cmt-carousel-container {
    width: 100%;
    margin: 0 auto 32px;
    display: flex;
    justify-content: center;
}

.cmt-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.cmt-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    will-change: transform;
    overflow: visible;
    align-items: flex-start;
}

.cmt-carousel-card {
    flex: 0 0 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.cmt-box {
    display: flex;
    flex-direction: column;
}

.cmt-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 51, 102, 0.9);
    border: none;
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 51, 102, 0.2);
}

.cmt-carousel-nav:hover:not(:disabled) {
    background: #003366;
    box-shadow: 0 6px 16px rgba(0, 51, 102, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.cmt-carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cmt-carousel-nav:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.cmt-carousel-prev { left: -70px; }
.cmt-carousel-next { right: -70px; }

@media (max-width: 1024px) {
    .cmt-carousel-track { align-items: flex-start; }
    .cmt-carousel-card { flex: 0 0 100%; }
    .cmt-carousel-prev { left: 12px; }
    .cmt-carousel-next { right: 12px; }
}

@media (max-width: 768px) {
    .cmt-carousel-card { flex: 0 0 100%; }
    .cmt-carousel-nav { width: 40px; height: 40px; font-size: 18px; }
    .cmt-carousel-track { gap: 12px; align-items: flex-start; }
}

@media (max-width: 600px) {
    .cmt-carousel-card { flex: 0 0 100%; }
}

.cmt-box {
    background: #ffffff;
    border: 1px solid #E8EEF4;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}

.cmt-box:hover {
    box-shadow: 0 4px 16px rgba(0, 51, 102, 0.07);
}

.cmt-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003366, #00AEEF);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.cmt-body { flex: 1; min-width: 0; }

.cmt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.cmt-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cmt-name {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
}

.cmt-verified {
    font-size: 11px;
    font-weight: 600;
    color: #0077b6;
    background: #e0f5fe;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 2px 8px;
    letter-spacing: 0.02em;
}

.cmt-date {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.cmt-content {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cmt-reaction-display { margin-top: 4px; }

.cmt-reaction-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    border: 1px solid #E2E8F0;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 16px;
    line-height: 1;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .cmt-row {
        flex-direction: column;
        gap: 0;
    }
    .cmt-row .cmt-field { margin-bottom: 16px; }
    #custom-comment-form { padding: 18px 16px 22px; }
    .cmt-form-header { padding: 18px 16px; }
    .cmt-box { padding: 14px 14px; gap: 12px; }
    .cmt-avatar { width: 38px; height: 38px; font-size: 13px; }
    .cmt-reaction-btns { gap: 8px; }
    .cmt-react-btn { padding: 8px 14px; }
}


/* =============================================
   DEFAULT WORDPRESS COMMENTS (comments.php)
   ============================================= */

.city-comments-area {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid #E8EEF4;
}

/* ---- Section title ---- */
.city-comments-title,
.city-comment-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E8EEF4;
}

.city-comment-notes {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}
.city-comment-notes .required { color: #00AEEF; }

/* ---- Comment list ---- */
.city-comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.city-comment-item { list-style: none; }

.city-comment-box {
    background: #ffffff;
    border: 1px solid #E8EEF4;
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: box-shadow 0.2s;
}
.city-comment-box:hover { box-shadow: 0 4px 16px rgba(0,51,102,0.07); }

.city-comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #003366, #00AEEF);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.city-comment-body { flex: 1; min-width: 0; }

.city-comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.city-comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.city-comment-author {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
}

.city-comment-verified {
    font-size: 11px;
    font-weight: 600;
    color: #0077b6;
    background: #e0f5fe;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 2px 8px;
}

.city-comment-date {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
}

.city-comment-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}
.city-comment-text p { margin: 0; }

.city-comment-reply { margin-top: 10px; }
.city-comment-reply a {
    font-size: 13px;
    font-weight: 600;
    color: #00AEEF;
    text-decoration: none;
}
.city-comment-reply a:hover { text-decoration: underline; }

/* ---- Nested replies indent ---- */
.city-comment-list .children {
    list-style: none;
    padding-left: 44px;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---- Comment form ---- */
.city-comment-respond {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,51,102,0.08);
    overflow: hidden;
}

.city-comment-form-title {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%);
    color: #ffffff !important;
    border: none !important;
    margin: 0 !important;
    padding: 22px 28px !important;
    font-size: 18px !important;
}

.city-comment-form {
    padding: 24px 28px 28px;
}

.city-comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.city-comment-form input[type="text"],
.city-comment-form input[type="email"],
.city-comment-form input[type="url"],
.city-comment-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    background: #F8FAFC;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
    margin-bottom: 16px;
}
.city-comment-form input:focus,
.city-comment-form textarea:focus {
    border-color: #00AEEF;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}

.city-comment-form textarea { min-height: 110px; resize: vertical; }

.city-comment-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #003366, #004d99);
    color: #ffffff;
    padding: 13px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    font-family: inherit;
}
.city-comment-submit:hover {
    background: linear-gradient(135deg, #002244, #003d7a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,51,102,0.25);
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .city-comment-box { padding: 14px; gap: 12px; }
    .city-comment-avatar { width: 38px; height: 38px; font-size: 13px; }
    .city-comment-form { padding: 18px 16px 22px; }
    .city-comment-form-title { padding: 18px 16px !important; }
    .city-comment-list .children { padding-left: 22px; }
}