/* --- Premium Re-design Design Tokens & Variables for city.html --- */
@import url('https://fonts.googleapis.com/css?family=Inconsolata:400,700');

:root {
    --font-display: 'Outfit', Arial, sans-serif;
    --font-sans: 'Outfit', Arial, sans-serif;
    --font-mono: 'Inconsolata', monospace;
    
    /* Curated harmonious color palettes (Tailored HSL) */
    --bg-dark-start: hsl(222, 47%, 7%);
    --bg-dark-end: hsl(224, 71%, 4%);
    --glass-bg: hsla(222, 47%, 11%, 0.65);
    --glass-border: hsla(0, 0%, 100%, 0.08);
    
    --brand-primary: hsl(340, 71%, 54%); /* vibrant pink */
    --brand-accent: hsl(190, 90%, 45%); /* glowing cyan */
    --brand-success: hsl(150, 70%, 45%); /* emerald green */
    --brand-warning: hsl(25, 95%, 45%); /* caution orange */
    
    --text-main: hsl(215, 25%, 27%);
    --text-muted: hsl(218, 11%, 47%);
    --text-light: hsl(210, 40%, 98%);
    --text-light-muted: hsl(215, 20%, 75%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --glow: 0 0 15px rgba(6, 182, 212, 0.35);
}

/* Ensure clean font styling on all textual elements (excluding icons) */
body, p, span, a, h1, h2, h3, h4, h5, h6, input, button, select, textarea, label {
    font-family: 'Outfit', Arial, sans-serif;
}

/* Apply Inconsolata strictly to clock digits to prevent layout shifts */
.city-hero-live-time, 
.core-live-time, 
.core-live-date, 
.added-clock-time, 
.home-clock-time, 
.city-dash-time,
.format-shortcuts a {
    font-family: 'Inconsolata', monospace !important;
}

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

/* --- Zone 1: Above the Fold (Pure App Utility) --- */
.zone-app {
    background: #ffffff;
    color: var(--text-main);
    padding: 50px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 20; /* Ensure search suggestions dropdown sits on top */
}

/* Subtle grid background pattern behind the app */
.zone-app::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 24px 24px;
    opacity: 0.8;
    pointer-events: none;
}

.zone-1-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.85fr;
    gap: 32px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.zone-right-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.zone-clocks-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

/* Hero Location Branding */
.city-hero-location {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 12px 0;
    background: linear-gradient(to right, #0f172a 30%, var(--brand-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a.country-link {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}
a.country-link:hover {
    color: var(--brand-accent);
    text-decoration: underline;
}

.city-hero-location a.country-link {
    color: inherit;
    -webkit-text-fill-color: inherit;
    text-decoration: none;
    border-bottom: 2px dashed var(--brand-primary);
    transition: border-bottom 0.2s ease, border-bottom-color 0.2s ease;
    font-weight: inherit;
}
.city-hero-location a.country-link:hover {
    color: inherit;
    -webkit-text-fill-color: inherit;
    border-bottom-style: solid;
    border-bottom-color: var(--brand-accent);
}

.city-hero-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tool-link-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--brand-accent) 0%, #0891b2 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
}

.tool-link-btn::after {
    content: ' →';
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.tool-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
    color: #ffffff;
}

.tool-link-btn:hover::after {
    transform: translateX(3px);
}

/* Zone 1 Clock display panel */
.zone-clock-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow-md);
    flex: 1 1 280px;
    min-width: 280px;
}

.city-hero-live-time {
    font-size: 52px;
    font-weight: 700;
    color: var(--brand-primary);
    margin: 0 0 4px 0;
    letter-spacing: 1px;
}

.city-hero-card-value {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.zone-clock-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.zone-clock-meta-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-main);
}

.zone-clock-meta-item a {
    color: var(--brand-primary);
    font-weight: 600;
    text-decoration: none;
}

.zone-clock-meta-item a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.status-dot--info {
    background-color: var(--brand-accent) !important;
    box-shadow: 0 0 8px var(--brand-accent);
}
.status-dot--ok {
    background-color: var(--brand-success) !important;
    box-shadow: 0 0 8px var(--brand-success);
}
.status-dot--warn {
    background-color: var(--brand-warning) !important;
    box-shadow: 0 0 8px var(--brand-warning);
}
.status-dot--neutral {
    background-color: var(--text-light-muted) !important;
}

.status-check {
    display: inline-block;
    font-weight: bold;
    font-size: 14px;
}
.status-check--ok {
    color: var(--brand-success) !important;
    text-shadow: 0 0 8px var(--brand-success);
}
.status-check--neutral {
    color: var(--text-light-muted) !important;
}

/* Zone 1 Search Panel styling */
.zone-search-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zone-search-panel #search-input {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--text-main);
    height: 48px;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    width: 100%;
}

.zone-search-panel #search-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 12px rgba(221, 53, 110, 0.2);
    background: #ffffff;
}

.city-search-wide {
    position: relative;
    width: 100%;
}

.zone-search-panel #suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 12px !important;
    margin-top: 6px;
    box-shadow: var(--shadow-lg) !important;
    z-index: 9999 !important;
    overflow: hidden;
}

.zone-search-panel .dropdown-item-container {
    background: transparent !important;
    border-bottom: 1px solid #f1f5f9 !important;
    transition: background 0.2s ease;
    padding: 10px 15px;
}

.zone-search-panel .dropdown-item-container:hover {
    background: #f8fafc !important;
}

.zone-search-panel .dropdown-item-container a {
    color: var(--text-main) !important;
    font-weight: 500;
}

.zone-search-panel .dropdown-item-container a:hover {
    color: var(--brand-primary) !important;
}

.zone-search-panel .dropdown-item-container div a:first-of-type {
    color: var(--brand-primary) !important;
    margin-right: 15px;
}

.zone-search-panel .dropdown-item-container div a:last-of-type {
    color: var(--brand-primary) !important;
}

/* Zone 1 App widgets layout */
.city-app-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.city-app-widget-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.city-app-widget-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 14px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.city-app-widget-card .core-live-time {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 2px;
    text-shadow: var(--glow);
}

.city-app-widget-card .core-live-date {
    font-size: 14px;
    color: var(--text-light-muted);
    margin-bottom: 14px;
}

.city-app-widget-card .city-feature-meta {
    font-size: 13px;
    color: var(--text-light-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.city-app-widget-card .city-feature-meta strong {
    color: var(--text-light);
}

.city-app-widget-card .city-feature-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.format-shortcuts {
    font-size: 11px;
    color: var(--text-light-muted);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.format-shortcuts a {
    color: var(--brand-accent);
    text-decoration: underline;
}

.format-shortcuts a:hover {
    color: #22d3ee;
}

/* Quick Actions Widget */
.widget-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.widget-btn-grid .btn {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
}

.city-note {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 4px 0 0 0;
}

.city-share-link-dark {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--brand-accent);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    word-break: break-all;
    margin-top: 10px;
}

/* Day/Night Status Widget styling */
.day-night-widget-grid, .day-night-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.day-night-widget-item, .day-night-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.day-night-widget-item strong, .day-night-item strong {
    display: block;
    font-size: 12px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.day-night-widget-item .day-night-status, .day-night-item .day-night-status {
    font-size: 12px;
    font-weight: bold;
    color: var(--brand-primary);
    margin: 4px 0;
}

.day-night-widget-item .day-night-time, .day-night-item .city-note {
    font-size: 11px;
    color: var(--text-muted) !important;
    font-family: var(--font-mono);
}

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

/* --- Zone 2: Below the Fold (Article & Grid Tools) --- */
.zone-article {
    padding: 60px 0;
    background: #f8fafc;
    font-family: var(--font-sans);
}

.zone-article-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Collapsible accordion styling */
.accordions-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

details.seo-accordion {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

details.seo-accordion:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

details.seo-accordion summary {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    user-select: none;
    transition: background-color 0.2s ease;
}

details.seo-accordion summary::-webkit-details-marker {
    display: none;
}

details.seo-accordion summary:hover {
    background-color: #f8fafc;
}

details.seo-accordion[open] summary {
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

details.seo-accordion summary::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #64748b;
    border-bottom: 2px solid #64748b;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 6px;
}

details.seo-accordion[open] summary::after {
    transform: rotate(-135deg);
}

.accordion-content {
    padding: 24px;
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.65;
    background: #ffffff;
}

.accordion-content p {
    margin-bottom: 16px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 24px 0 10px 0;
}

.accordion-content h4:first-child {
    margin-top: 0;
}

/* Accordion tables styling */
.accordion-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 14px;
}

.accordion-content table th, 
.accordion-content table td {
    border: 1px solid #e2e8f0;
    padding: 10px 14px;
    text-align: left;
}

.accordion-content table th {
    background-color: #f8fafc;
    font-weight: 700;
    color: #1e293b;
}

/* Below-the-fold tools grid */
.city-tools-section {
    padding: 60px 0;
}

.conventional-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 30px;
}

.conventional-section-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.conventional-section-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.conventional-section-box.span-2 {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .conventional-section-box.span-2 {
        grid-column: span 1;
    }
}

.conventional-section-box h3.grid-section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.grid-section-explanation {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}/* --- Lower Sections: 2-Column Compact Grid Layout --- */
.two-column-tools-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .two-column-tools-layout {
        grid-template-columns: 1fr;
    }
}

.tools-category-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.tools-category-box:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.tools-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.tools-category-header h3.grid-section-title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tools-category-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #dbeafe;
}

/* Card Tiles Grid (Inside each Category Box) */
.tools-tiles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 576px) {
    .tools-tiles-grid {
        grid-template-columns: 1fr;
    }
}

.tool-tile-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none !important;
}

.tool-tile-card:hover {
    background: #ffffff;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.08);
}

.tool-tile-card .tile-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.05));
}

.tool-tile-card .tile-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.tool-tile-card .tile-title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 14px;
    font-weight: 700;
    color: #1e40af;
    line-height: 1.35;
    margin: 0 0 3px 0;
    transition: color 0.15s ease;
}

.tool-tile-card:hover .tile-title {
    color: var(--brand-primary, #d82b68);
}

.tool-tile-card .tile-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* Quick Footer Links inside category box */
.tools-category-footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #64748b;
}

.tools-category-footer strong {
    color: #334155;
    font-weight: 600;
}

.tools-category-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.tools-category-footer a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.grid-section-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.grid-section-primary a, .grid-section-primary .btn {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff !important;
    background: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.grid-section-primary a:hover {
    background: #be2054;
    border-color: #be2054;
    transform: translateY(-1px);
}

.grid-section-secondary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.grid-section-secondary a {
    font-size: 13px;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.grid-section-secondary a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.grid-section-related {
    margin-top: auto;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.grid-section-related span {
    font-weight: 700;
    color: #475569;
}

.grid-section-related a {
    color: var(--text-muted);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.grid-section-related a:hover {
    color: var(--text-main);
}

/* Form controls customization inside tools */
.conventional-section-box .form-control {
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 14px;
    height: auto;
    padding: 8px 12px;
}

.conventional-section-box .form-control:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 2px rgba(221, 53, 110, 0.2);
}

.city-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.converter-results {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px;
    margin-top: 14px;
}

.converter-row {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 8px;
}

.converter-row:last-child {
    margin-bottom: 0;
}

.meeting-planner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.meeting-link-wrap {
    grid-column: span 2;
    margin-top: 10px;
    text-align: right;
}

/* Ad slots styling - Hidden until Google AdSense approval */
.adsense-slot {
    display: none !important;
}

/* Dynamic Availability indicator text colors */
.color-ok {
    color: var(--brand-success) !important;
    font-weight: 700;
}

.color-warn {
    color: var(--brand-warning) !important;
    font-weight: 700;
}

.color-neutral {
    color: var(--text-muted) !important;
}

/* Hero Solar (Sunrise & Sunset) Info panel */
.hero-solar-info {
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.solar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease;
}

.solar-item:hover {
    transform: translateY(-2px);
}

.solar-item span {
    font-size: 24px;
}

.solar-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: block;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.solar-value {
    font-size: 15px;
    color: var(--text-main);
    font-weight: 700;
}

/* Day & Night Status below zone-1-grid layout */
.zone-day-night-bar {
    margin-top: 32px;
    width: 100%;
}

.day-night-card {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

/* Premium links styling */
.day-night-item strong a {
    color: var(--brand-primary) !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.day-night-item strong a:hover {
    text-decoration: underline;
}

.time-diff-item a {
    color: var(--brand-primary) !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.time-diff-item a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   City Quick Facts Strip
   ========================================================================== */
.city-quick-facts-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
}

.fact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    padding: 6px 14px;
    font-size: 13px;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fact-pill:hover {
    transform: translateY(-1px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.fact-icon {
    font-size: 14px;
    line-height: 1;
}

.fact-label {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
}

.fact-pill strong {
    color: var(--text-main);
    font-weight: 600;
}

/* ==========================================================================
   City Civic, Economy & Infrastructure Section
   ========================================================================== */
.city-civic-section {
    padding: 30px 0 10px 0;
}

.city-civic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.civic-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.civic-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.civic-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.civic-card-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.civic-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.civic-tag-pill {
    background: #f1f5f9;
    color: var(--text-main);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.civic-company-item {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.6;
}

.civic-company-item strong {
    color: var(--text-muted);
    font-size: 12px;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.civic-transit-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: var(--text-main);
}

.civic-transit-row strong {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highway-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    border: 1px solid #bae6fd;
    font-weight: 700;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 6px;
    margin-top: 2px;
}

.civic-note-box {
    background: #f8fafc;
    border-left: 3px solid var(--brand-accent);
    padding: 10px 14px;
    border-radius: 0 6px 6px 0;
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.5;
}

/* ==========================================================================
   Points of Interest Cards Grid
   ========================================================================== */
.city-poi-section {
    margin-top: 10px;
    margin-bottom: 30px;
}

.poi-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.poi-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.poi-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.poi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.poi-category {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-primary);
    background: rgba(225, 29, 72, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
}

.poi-rating {
    font-size: 12px;
    font-weight: 700;
    color: #d97706;
    background: #fef3c7;
    padding: 2px 7px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.poi-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.poi-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .city-quick-facts-strip {
        gap: 8px;
    }
    .fact-pill {
        font-size: 12px;
        padding: 5px 10px;
    }
    .city-civic-grid {
        grid-template-columns: 1fr;
    }
    .poi-cards-grid {
        grid-template-columns: 1fr;
    }
}

