/* v6 Style: Modern Service Oriented */
:root {
    --primary-blue: #29b6f6;
    /* Lighter, friendlier blue */
    --secondary-blue: #0277bd;
    --bg-light: #f9fafb;
    --text-main: #2c3e50;
    --radius-lg: 12px;
    --radius-md: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PingFang SC", "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: var(--primary-blue);
}

.container {
    width: 1100px;
    /* Slightly narrower, cleaner focus */
    margin: 0 auto;
}

/* Header: Transparent/White minimal */
.top-nav {
    background: #fff;
    height: 64px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-logo {
    font-size: 20px;
    font-weight: bold;
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    margin-left: auto;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-blue);
}

/* Hero Section: Centered Search */
.hero-section {
    background: linear-gradient(135deg, #0277bd 0%, #29b6f6 100%);
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-search {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 50px;
    display: flex;
    width: 600px;
    backdrop-filter: blur(10px);
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 0 20px;
    font-size: 18px;
    outline: none;
}

.hero-search input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.hero-search button {
    background: #fff;
    color: var(--secondary-blue);
    border: none;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    font-size: 16px;
}

/* Frequent Services Grid - Overlapping the Hero */
.services-up {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.svc-item {
    transition: transform 0.2s;
}

.svc-item:hover {
    transform: translateY(-5px);
}

.svc-icon-box {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 20px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px;
}

.svc-text {
    font-weight: 500;
    font-size: 14px;
}

/* News Section: Clean Cards */
.news-section {
    padding: 60px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.clean-list {
    list-style: none;
}

.clean-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.clean-list li:last-child {
    border-bottom: none;
}

.clean-list .date {
    color: #999;
    font-size: 13px;
}

/* Tabs styled as toggles */
.toggle-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.toggle-item {
    padding: 5px 0;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    border-bottom: 2px solid transparent;
}

.toggle-item.active {
    color: var(--secondary-blue);
    border-bottom-color: var(--secondary-blue);
    font-weight: bold;
}

/* Footer (Clean) */
.footer-clean {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 40px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-links a {
    margin: 0 10px;
    color: #666;
}

.copyright {
    margin-top: 20px;
    color: #999;
    font-size: 13px;
}