/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1d4ed8;
    --primary-hover: #1e40af;
    --primary-light: #dbeafe;
    --accent-color: #0ea5e9;
    --success-color: #059669;
    --success-light: #d1fae5;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --bg-white: #ffffff;
    --bg-surface: #f8fafc;
    --card-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-white);
    min-height: 100vh;
    padding: 0;
    color: var(--text-dark);
}

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

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 48px 20px 36px;
    border-bottom: 1px solid var(--border-color);
}

.header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.header .subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Plan Card */
.plan-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

.plan-card.popular {
    border: 2px solid var(--success-color);
    transform: scale(1.03);
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--success-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(5, 150, 105, 0.3);
}

.plan-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.plan-header h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price .amount {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Plan Features */
.plan-features {
    margin-bottom: 25px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    padding: 11px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

/* Buy Button */
.btn-buy {
    width: 100%;
    padding: 14px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
    letter-spacing: 0.2px;
}

.btn-buy:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
}

.btn-buy:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(29, 78, 216, 0.2);
}

/* Info Section */
.info-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 30px;
}

.info-section h3 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 36px;
    color: var(--text-dark);
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 28px 30px;
    text-align: center;
}

.footer p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .terms {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.footer .ad-offer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }

    .header .subtitle {
        font-size: 1rem;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .plan-card.popular {
        transform: scale(1);
    }

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

    .steps {
        grid-template-columns: 1fr;
    }

    .info-section {
        padding: 25px;
    }

    .price .amount {
        font-size: 2.25rem;
    }
}

/* Rotating Ad Banner */
.ad-banner-wrap {
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.ad-slide {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: var(--text-dark);
    min-height: 90px;
}

.ad-accent {
    width: 5px;
    flex-shrink: 0;
}

.ad-logo {
    width: 190px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-right: 1px solid var(--border-color);
    background: var(--bg-surface);
}

.ad-logo-img {
    max-width: 150px;
    max-height: 66px;
    object-fit: contain;
}

.ad-logo-papes {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ebf7fc;
}

.ad-logo-papes-inner {
    display: flex;
    flex-direction: column;
}

.ad-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a5f7a;
    font-family: Georgia, serif;
}

.ad-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: #5b9ab5;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 3px;
}

.ad-logo-sea {
    font-size: 1.8rem;
    line-height: 1;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.12));
}

.ad-info {
    padding: 14px 60px 14px 20px;
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ad-info-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ad-info-tag {
    font-weight: 400;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-left: 6px;
}

.ad-info-rows {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
}

.ad-info-rows span {
    font-size: 0.82rem;
    color: var(--text-light);
    white-space: nowrap;
}

.ad-info-rows a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
}

.ad-info-rows a:hover {
    color: var(--primary-color);
}

.ad-dots {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ad-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: var(--border-color);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s;
}

.ad-dot.active {
    background: var(--primary-color);
}

@media (max-width: 600px) {
    .ad-logo { width: 110px; padding: 10px 12px; }
    .ad-logo-img { max-width: 88px; max-height: 56px; }
    .ad-logo-text { font-size: 1rem; }
    .ad-info { padding: 10px 40px 10px 14px; }
    .ad-info-name { font-size: 0.85rem; }
    .ad-info-rows { flex-direction: column; gap: 3px; }
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    width: 100%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 6px 16px;
    box-sizing: border-box;
}

.lang-btn {
    text-decoration: none;
    font-size: 1.45rem;
    line-height: 1;
    opacity: 0.38;
    transition: opacity 0.18s, transform 0.18s;
    display: inline-block;
}

.lang-btn:hover {
    opacity: 0.75;
    transform: scale(1.15);
}

.lang-btn.active {
    opacity: 1;
    transform: scale(1.12);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   NEW STYLES — v20260523: Nav, Hero, Weather, Services, Gallery, Contact
   ═══════════════════════════════════════════════════════════ */

/* Override lang-switcher strip when inside nav */
.main-nav .lang-switcher {
    width: auto;
    background: none;
    border: none;
    padding: 0;
    justify-content: flex-end;
}

/* ── Sticky Nav ── */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo {
    font-weight: 800;
    font-size: 1.15rem;
    color: #1a5f7a;
    text-decoration: none;
    white-space: nowrap;
    margin-right: 8px;
    letter-spacing: -0.3px;
}
.nav-logo:hover { color: #0ea5e9; }
.nav-links {
    display: flex;
    list-style: none;
    gap: 2px;
    flex: 1;
    margin: 0;
    padding: 0;
}
.nav-links a {
    display: block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.nav-links a:hover { background: var(--bg-surface); color: var(--text-dark); }
.nav-links a.active { background: #e0f2fe; color: #0369a1; font-weight: 600; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 6px;
    color: var(--text-dark);
    margin-left: auto;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    background: linear-gradient(160deg, #0a3d62 0%, #0f6b8a 30%, #1a9bbf 65%, #74c0e0 100%);
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px 90px;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    width: 100%;
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.88);
    margin-bottom: 20px;
    font-weight: 400;
}
.hero-clock {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    font-variant-numeric: tabular-nums;
    font-family: 'SF Mono', 'Fira Code', monospace;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    margin-bottom: 28px;
}
.weather-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}
.w-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    transition: transform .2s;
}
.w-card:hover { transform: translateY(-3px); }
.w-icon { font-size: 1.7rem; margin-bottom: 6px; }
.w-val {
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}
.w-lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-cta {
    display: inline-block;
    background: #fff;
    color: #0a3d62;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform .2s, box-shadow .2s;
    letter-spacing: 0.2px;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 1;
}
.hero-wave svg { display: block; width: 100%; height: 70px; }

/* ── Section Layout ── */
.section {
    padding: 72px 0;
    border-bottom: 1px solid var(--border-color);
    scroll-margin-top: 56px;
}
.hero { scroll-margin-top: 0; }
.section:last-child { border-bottom: none; }
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.4px;
}

/* Promo banner */
.promo-banner {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 22px 28px;
    margin-bottom: 28px;
    text-align: center;
}
.promo-banner h3 {
    margin-bottom: 8px;
    font-size: 1.35rem;
    color: #065f46;
}
.promo-banner p { font-size: 1rem; color: #047857; }

/* ── Weather Detail Card ── */
.weather-detail-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    border: 1px solid #bae6fd;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}
.weather-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 28px;
    margin-bottom: 20px;
}
.weather-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.weather-item-icon { font-size: 2.4rem; }
.weather-item-val { font-size: 1.9rem; font-weight: 700; color: #0369a1; }
.weather-item-lbl { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.weather-source {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}
.weather-source a { color: var(--text-light); }
.weather-updated { color: var(--text-light); }

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform .25s, box-shadow .25s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: #bae6fd;
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.1));
}
.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Gallery Grid ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-tile {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    box-shadow: var(--card-shadow);
}
.gallery-tile:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.gallery-tile-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 10px;
}
.gallery-icon {
    font-size: 3.2rem;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.gallery-caption {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}
.contact-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
}
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon { font-size: 1.6rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-item-value { font-size: 1rem; color: var(--text-dark); font-weight: 500; }
.contact-item-value a { color: var(--primary-color); text-decoration: none; }
.contact-item-value a:hover { text-decoration: underline; }
.contact-map {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    min-height: 220px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 220px; border: none; display: block; }

/* ── Mobile Responsive ── */
@media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .hero-clock { font-size: 2rem; letter-spacing: 2px; }
    .hero-sub { font-size: 1.05rem; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 8px 16px 16px;
        gap: 2px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 300;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 10px 14px; font-size: 1rem; }
    .main-nav { position: sticky; }
    .nav-inner { position: relative; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .weather-detail-card { padding: 24px 16px; }
}

@media (max-width: 480px) {
    .hero { min-height: 420px; padding: 50px 16px 80px; }
    .hero-title { font-size: 1.9rem; }
    /* 3+2 layout: 6 virtual columns, each card spans 2; last 2 auto-centred */
    .weather-row {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }
    .w-card {
        grid-column: span 2;
        padding: 12px 6px;
        min-width: 0;
    }
    .w-card:nth-child(10) { grid-column: 3 / span 2; }
    .w-val { font-size: 1.3rem; }
    .w-lbl { font-size: 0.72rem; }
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.5rem; }
}

/* ── Quick Links (Home Page) ── */
.quicklinks-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 0 48px;
    max-width: 680px;
    margin: 0 auto;
}
.ql-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 22px;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--card-shadow);
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ql-card:hover {
    transform: translateX(4px);
    box-shadow: var(--card-shadow-hover);
    border-color: #7ec8e3;
}
.ql-icon { font-size: 2rem; flex-shrink: 0; }
.ql-text { flex: 1; }
.ql-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.ql-desc { font-size: 0.85rem; color: var(--text-light); }
.ql-arrow { font-size: 1.2rem; color: var(--text-light); flex-shrink: 0; transition: transform .18s; }
.ql-card:hover .ql-arrow { transform: translateX(4px); color: #1a5f7a; }

/* ── Site Footer ── */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 24px 0 8px;
    margin-top: 32px;
}
.footer-note {
    background: #eff6ff;
    border: 1.5px solid #93c5fd;
    border-radius: 10px;
    padding: 14px 20px;
    color: #1e40af;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}
/* 7-day forecast */
.forecast-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(64px, 1fr));
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.25rem 0 0.75rem;
    -webkit-overflow-scrolling: touch;
}
.forecast-row::-webkit-scrollbar { height: 4px; }
.forecast-row::-webkit-scrollbar-thumb { background: var(--border-color); border-radius: 2px; }
.fc-day {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.65rem 0.4rem;
    text-align: center;
}
.fc-day.fc-today {
    border-color: #1a5f7a;
    background: #e8f4f8;
}
.fc-day-name { font-size: 0.7rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; }
.fc-day-date { font-size: 0.65rem; color: var(--text-light); margin-bottom: 0.1rem; }
.fc-icon { font-size: 1.6rem; margin: 0.2rem 0; }
.fc-temp-max { font-size: 1rem; font-weight: 700; color: var(--text-dark); }
.fc-temp-min { font-size: 0.8rem; color: var(--text-light); }
.fc-precip { font-size: 0.68rem; color: #4a90d9; margin-top: 0.2rem; }
