/* ============================================
   湖北嘉信建设工程项目管理有限公司 - 官网样式
   设计风格：高端简约 + 金色点缀
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --accent-color: #c9a227;
    --accent-light: #d4af37;
    --accent-glow: rgba(201, 162, 39, 0.4);
    --bg-light: #f8f9fa;
    --bg-dark: #0f172a;
    --bg-deep: #060d1f;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.3);
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.text-accent { color: var(--accent-color); }
.text-primary { color: var(--primary-color) !important; }

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.website-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.website-header.scrolled {
    background: var(--white);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 50px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: rgba(201, 162, 39, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px;
    cursor: pointer;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--primary-color);
}

.menu-toggle:hover span {
    background: var(--white);
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-dark) 40%, var(--primary-color) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    transition: transform 0.8s ease, margin 0.8s ease;
}

.hero-gradient-orb:nth-child(2) {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -5%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.4) 0%, transparent 70%);
    animation: orbFloat1 10s ease-in-out infinite;
}

.hero-gradient-orb:nth-child(3) {
    width: 400px;
    height: 400px;
    bottom: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.5) 0%, transparent 70%);
    animation: orbFloat2 12s ease-in-out infinite;
}

.hero-gradient-orb:nth-child(4) {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    animation: orbFloat3 8s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 25px) scale(0.92); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: 0.5em;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero-title .title-accent {
    background: linear-gradient(135deg, var(--accent-color), #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
    letter-spacing: 0.03em;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-light), #e8c547);
    border-color: var(--accent-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Hero Badge Enhanced */
.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.5);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.15); }
    50% { box-shadow: 0 0 30px rgba(201, 162, 39, 0.35); }
}

/* Hero Stats Enhanced */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
    text-align: center;
    position: relative;
    padding: 0 0.5rem;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -1.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-num {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.2;
}

.hero-stat-suffix {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #f0d78c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 13, 31, 0.92) 0%, rgba(15, 23, 42, 0.85) 50%, rgba(26, 54, 93, 0.8) 100%);
}

.hide-mobile {
    display: inline;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .hero-stat-num {
        font-size: 2rem;
    }
    .hero-stat::after {
        display: none;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-gradient-orb:nth-child(2) {
        width: 250px;
        height: 250px;
    }
    .hero-gradient-orb:nth-child(3) {
        width: 200px;
        height: 200px;
    }
    .hero-gradient-orb:nth-child(4) {
        width: 150px;
        height: 150px;
    }
}

/* ============================================
   政府网站风格样式修复
   ============================================ */

/* 分页样式修复 - 横向显示 */
.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    margin: 0 3px;
    padding: 0 12px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrap .page-numbers:hover {
    background: #c9a227;
    color: #fff;
    border-color: #c9a227;
}

.pagination-wrap .page-numbers.current {
    background: #c9a227;
    color: #fff;
    border-color: #c9a227;
    font-weight: 600;
}

.pagination-wrap .page-numbers.prev,
.pagination-wrap .page-numbers.next {
    padding: 0 16px;
}

/* 文章列表样式 - 政府网站风格 */
.tender-article-list {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
}

.tender-article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px dashed #e5e5e5;
    transition: all 0.3s ease;
}

.tender-article-item:last-child {
    border-bottom: none;
}

.tender-article-item:hover {
    background: #f9f9f9;
}

.tender-article-title {
    font-size: 15px;
    color: #333;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.tender-article-item:hover .tender-article-title {
    color: #c9a227;
}

.tender-article-meta {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

.tender-article-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.tender-article-meta i {
    color: #c9a227;
    font-size: 12px;
}

.tender-arrow {
    color: #ccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.tender-article-item:hover .tender-arrow {
    color: #c9a227;
    transform: translateX(3px);
}

/* 招标分类侧边栏样式优化 */
.tender-sidebar {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.tender-sidebar-title {
    background: #1a365d;
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 600;
}

.tender-sidebar-menu a {
    padding: 12px 20px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.tender-sidebar-menu a:hover,
.tender-sidebar-menu a.active {
    background: #f9f9f9;
    color: #c9a227;
}

.tender-sidebar-menu .count {
    color: #999;
    font-size: 13px;
}

/* Section Common */
.section {
    padding: 6rem 0;
    min-height: 300px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Services Section */
.services-section {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* About Section */
.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    z-index: -1;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* News Section */
.news-section {
    background: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.news-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.news-card:hover .news-image::before {
    left: 100%;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.news-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title:hover {
    color: var(--accent-color);
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Qualifications Section */
.qual-section {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.qual-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.qual-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.qual-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.qual-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.qual-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.qual-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 992px) {
    .qual-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Service Card Extended */
.service-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* About Section Extended */
.about-label {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    color: var(--accent-color);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.about-lead {
    font-size: 1.1rem;
    color: var(--text-primary) !important;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-feature i {
    color: var(--accent-color);
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-image-accent {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--accent-color);
    border-radius: 12px;
    z-index: 0;
}

.about-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.about-image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-image-main:hover .about-image-overlay {
    opacity: 0;
}

.about-image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 2;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 150%;
    }
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent-color), #d4af37);
    color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-badge .badge-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.about-badge .badge-text {
    display: block;
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

.about-float-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 3;
    animation: floatIcon 4s ease-in-out infinite;
}

.about-float-element i {
    font-size: 24px;
    color: var(--accent-color);
}

.about-float-1 {
    top: 20px;
    right: -15px;
    animation-delay: 0s;
}

.about-float-2 {
    top: 50%;
    left: -15px;
    animation-delay: 1s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-badge {
        bottom: 20px;
        right: 10px;
        padding: 12px 18px;
    }
    .about-badge .badge-number {
        font-size: 24px;
    }
    .about-float-element {
        display: none;
    }
}

/* News Section Extended */
.news-card-featured {
    grid-column: span 1;
}

.news-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.news-image i {
    position: relative;
    z-index: 1;
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.8rem;
    border-radius: 20px;
    z-index: 2;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.news-readmore i {
    transition: transform 0.3s ease;
}

.news-card:hover .news-readmore i {
    transform: translateX(3px);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline-dark {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-dark:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Why Choose Us Section */
.why-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
    width: 100%;
}

.why-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.why-card h3 {
    margin-bottom: 1rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Partners Section */
.partners-section {
    padding: 4rem 0;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.partner-logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));
    color: var(--white);
}

.contact-label {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(201, 162, 39, 0.2);
    color: var(--accent-color);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 1rem;
}

.map-placeholder i {
    font-size: 3rem;
    opacity: 0.6;
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 500;
}

.map-placeholder span {
    font-size: 0.9rem;
    opacity: 0.6;
}

.map-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.map-wrapper {
    flex: 1;
    position: relative;
    background: linear-gradient(135deg, #e8f4f8, #f0f9ff);
    min-height: 280px;
}

.map-visual {
    width: 100%;
    height: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.map-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.map-visual-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.map-visual-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 150px 150px;
    opacity: 0.5;
}

.map-visual-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    text-align: center;
}

.map-marker-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.2);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.map-marker-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.map-address-info {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    max-width: 400px;
}

.map-address-info h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.map-address-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a365d, #2c5282);
    color: var(--white);
    gap: 1rem;
}

.map-fallback i {
    font-size: 4rem;
    opacity: 0.8;
}

.map-fallback p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.8;
    margin: 0;
}

.map-actions {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--border-color);
}

.map-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--white);
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border-right: 1px solid var(--border-color);
}

.map-action-btn:last-child {
    border-right: none;
}

.map-action-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.map-action-btn i {
    font-size: 1rem;
}

.map-action-btn-secondary {
    color: var(--text-secondary);
}

.map-action-btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .map-actions {
        flex-direction: column;
    }
    
    .map-action-btn {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .map-action-btn:last-child {
        border-bottom: none;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Extended */
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent-color);
}

.footer-links-wrap {
    min-width: 150px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    min-width: 280px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-qrcode-inline {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: flex-start;
}

.qrcode-item-small {
    text-align: center;
}

.qrcode-item-small img {
    width: 100px;
    height: 100px;
    border-radius: 4px;
    background: var(--white);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    display: block;
}

.qrcode-item-small img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}

.qrcode-item-small span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 0.35rem;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.website-footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-content p {
    margin: 0.25rem 0;
}

.footer-qrcode-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.footer-qrcode-section .footer-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.footer-qrcode-section .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.qrcode-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: var(--white);
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    margin-bottom: 0.75rem;
}

.qrcode-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.3);
}

.qrcode-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: span 2;
    }
    .qrcode-container {
        gap: 2rem;
    }
    .qrcode-item img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-about {
        grid-column: span 1;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 10rem 0 4rem;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(201, 162, 39, 0.2);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    opacity: 0.5;
}

/* Category Description */
.category-desc-section {
    background: var(--bg-light);
    padding: 2rem 0;
}

.category-desc {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Article List */
.article-list-section {
    padding: 4rem 0;
    min-height: 50vh;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.article-item {
    display: flex;
    gap: 2rem;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.article-item:hover .article-title {
    color: var(--accent-color);
}

.article-item:hover .article-readmore i {
    transform: translateX(5px);
}

.article-item-reverse {
    flex-direction: row-reverse;
}

.article-thumb {
    width: 350px;
    height: 240px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-thumb i {
    position: relative;
    z-index: 1;
}

.article-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.8rem;
    border-radius: 20px;
}

.article-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-item i {
    color: var(--accent-color);
}

.article-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.article-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-readmore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 500;
}

.article-readmore i {
    transition: transform 0.3s ease;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
}

.empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Article Detail */
.article-detail-section {
    padding: 4rem 0;
}

.article-detail {
    max-width: 900px;
    margin: 0 auto;
}

.article-detail-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.article-detail-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent-color);
}

.article-detail-category {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(201, 162, 39, 0.1);
    color: var(--accent-color);
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.article-detail-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.article-detail-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.article-detail-meta i {
    color: var(--accent-color);
}

.article-detail-cover {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.article-detail-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-primary);
    white-space: pre-wrap;
    word-wrap: break-word;
}

.article-detail-content p {
    margin-bottom: 1.5rem;
}

.article-detail-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.article-detail-content h2,
.article-detail-content h3,
.article-detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-detail-content ul,
.article-detail-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-detail-content li {
    margin-bottom: 0.5rem;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    gap: 0.75rem;
}

.article-nav-prev,
.article-nav-next {
    flex: 1;
    max-width: 38%;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.article-nav-prev:hover,
.article-nav-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.article-nav-prev:hover small,
.article-nav-prev:hover strong,
.article-nav-next:hover small,
.article-nav-next:hover strong {
    color: var(--white);
}

.article-nav-prev span,
.article-nav-next span {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.article-nav-prev span small,
.article-nav-next span small {
    font-size: 0.75rem;
    opacity: 0.7;
    display: block;
}

.article-nav-prev span strong,
.article-nav-next span strong {
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.article-nav-next {
    justify-content: flex-end;
    text-align: right;
}

.article-nav-disabled {
    flex: 1;
    max-width: 38%;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: not-allowed;
}

.article-nav-disabled span {
    display: flex;
    flex-direction: column;
}

.article-nav-disabled span small {
    font-size: 0.75rem;
    opacity: 0.6;
}

.article-nav-disabled span strong {
    font-size: 0.9rem;
    font-weight: 500;
}

.article-nav-next-disabled {
    justify-content: flex-end;
    text-align: right;
}

.article-nav-back {
    flex-shrink: 0;
    padding: 1rem 1.25rem;
    background: var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.article-nav-back:hover {
    background: var(--accent-color);
    color: var(--white);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.share-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.share-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.share-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.article-related {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.related-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-title i {
    color: var(--accent-color);
}

.related-list {
    list-style: none;
    padding: 0;
}

.related-list li {
    border-bottom: 1px dashed var(--border-color);
}

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

.related-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
}

.related-list a:hover {
    color: var(--primary-color);
    padding-left: 0.75rem;
}

.related-item-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 1rem;
}

.related-item-date {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Contact Page */
.contact-page-section {
    padding: 4rem 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .article-item,
    .article-item-reverse {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
        height: 200px;
    }

    .article-detail-title {
        font-size: 1.75rem;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-nav {
        flex-wrap: wrap;
    }

    .article-nav-prev,
    .article-nav-next,
    .article-nav-disabled {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .article-nav-next,
    .article-nav-next-disabled {
        justify-content: flex-start;
        text-align: left;
    }

    .article-nav-back {
        order: -1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-about {
        grid-column: span 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        height: 70px;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link {
        padding: 1rem 1.25rem;
        border-radius: 0;
        font-size: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(201, 162, 39, 0.1);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .article-item {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
        height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Page Extended Styles */
.contact-page-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-page-info {
    position: sticky;
    top: 100px;
}

.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
}

.contact-detail-content span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-page-form {
    min-height: 500px;
}

.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label .required {
    color: #e53e3e;
}

.form-actions {
    margin-top: 1.5rem;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.form-note p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--accent-color);
}

.map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-info {
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.map-info h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.map-info p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.map-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.map-placeholder {
    height: 350px;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 1rem;
}

.map-placeholder i {
    font-size: 4rem;
    opacity: 0.3;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tags-label {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.tag-item {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: 20px;
    transition: var(--transition);
}

.tag-item:hover {
    background: var(--accent-color);
    color: var(--white);
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-info {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 3rem 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}

/* Tender Section Styles */
.tender-section {
    background: var(--bg-light);
}

.tender-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .tender-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.tender-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.tender-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tender-card-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tender-card-header h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.tender-more {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: var(--transition);
}

.tender-more:hover {
    color: var(--white);
}

.tender-card-body {
    padding: 15px 20px;
}

.tender-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tender-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.tender-list a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.tender-title {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.tender-list a:hover .tender-title {
    color: var(--accent-color);
}

.tender-date {
    color: var(--text-light);
    font-size: 0.8rem;
    white-space: nowrap;
}

.tender-empty {
    text-align: center;
    padding: 30px 15px;
    color: var(--text-light);
}

/* Tender Page Specific Styles */
.tender-category-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.tender-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.more-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    transition: var(--transition);
}

.more-link:hover {
    color: var(--white);
}

.tender-article-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tender-article-list li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

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

.tender-article-list a {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.article-title {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: var(--transition);
}

.tender-article-list a:hover .article-title {
    color: var(--accent-color);
}

.article-date {
    color: var(--text-light);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Header Search */
.header-search {
    position: relative;
    margin-left: 15px;
}

.header-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.header-search-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.header-search-btn i {
    font-size: 1rem;
}

.header-search-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
}

.header-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-search-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.header-search-form {
    display: flex;
    gap: 10px;
}

.header-search-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.header-search-form input:focus {
    border-color: var(--accent-color);
}

.header-search-form button {
    padding: 12px 20px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.header-search-form button:hover {
    background: var(--accent-light);
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }
}

/* Pagination Styles */
.pagination-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pagination-info {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.pagination-info strong {
    color: var(--text-primary);
}

.pagination {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.pagination-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: var(--text-light);
}

@media (max-width: 576px) {
    .pagination-wrap {
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .pagination-info {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.85rem;
    }
    
    .pagination-current {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 0.85rem;
    }
}

/* Service Detail Page Styles */
.service-page-header {
    padding: 12rem 0 5rem;
}

.page-header-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 1rem auto 0;
}

.services-detail-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.service-detail-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-item-reverse {
    grid-template-columns: 1fr 1.2fr;
}

.service-item-reverse .service-detail-content {
    order: 2;
}

.service-item-reverse .service-detail-visual {
    order: 1;
}

.service-detail-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(201, 162, 39, 0.08);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    z-index: 0;
}

.service-detail-content {
    position: relative;
    z-index: 1;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.service-detail-item:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-detail-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.service-detail-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.service-detail-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.service-detail-features {
    margin-bottom: 2rem;
}

.service-detail-features h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-detail-features h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 2px;
}

.service-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.service-feature-list li:hover {
    background: rgba(201, 162, 39, 0.1);
    transform: translateX(5px);
}

.service-feature-list li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.service-detail-highlights {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    flex: 1;
    transition: var(--transition);
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.05), rgba(201, 162, 39, 0.05));
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.service-detail-visual {
    position: relative;
    z-index: 1;
}

.visual-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.3);
    transition: var(--transition);
}

.service-detail-item:hover .visual-card {
    transform: scale(1.05);
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.visual-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 3.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.visual-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.visual-stat {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Responsive Styles for Service Detail */
@media (max-width: 1200px) {
    .service-detail-item,
    .service-item-reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .service-item-reverse .service-detail-content,
    .service-item-reverse .service-detail-visual {
        order: unset;
    }

    .service-detail-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-page-header {
        padding: 10rem 0 4rem;
    }

    .services-detail-section {
        padding: 3rem 0;
    }

    .service-detail-item {
        padding: 2rem;
        margin-bottom: 4rem;
    }

    .service-detail-number {
        font-size: 4rem;
        top: 1rem;
        right: 1rem;
    }

    .service-detail-title {
        font-size: 1.75rem;
    }

    .service-feature-list {
        grid-template-columns: 1fr;
    }

    .service-detail-highlights {
        flex-direction: column;
    }

    .visual-card {
        padding: 2rem;
    }

    .visual-icon-wrapper {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .stat-num {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .service-detail-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-detail-title {
        font-size: 1.5rem;
    }

    .service-detail-desc {
        font-size: 1rem;
    }

    .highlight-item {
        padding: 0.75rem 1rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .visual-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .visual-stat {
        padding: 1rem;
    }
}

/* News Filter Bar */
.news-filter-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.filter-label i {
    color: var(--accent-color);
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex: 1;
}

.filter-categories a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.filter-categories a:hover {
    background: rgba(201, 162, 39, 0.1);
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.filter-categories a.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.filter-categories a .count {
    font-size: 0.8rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .news-filter-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .filter-categories {
        width: 100%;
    }
}

/* ============================================
   Premium Enhancement Styles
   ============================================ */

.section-divider {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
    margin: 0;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-glow);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header.fade-in.visible .section-title {
    animation: titleReveal 0.8s ease forwards;
}

@keyframes titleReveal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-header.visible .section-title::after {
    width: 80px;
}

.qual-card {
    position: relative;
    overflow: hidden;
}

.qual-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.05), transparent);
    transition: left 0.6s ease;
}

.qual-card:hover::after {
    left: 100%;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.03), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::after {
    left: 100%;
}

.why-card {
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.05), transparent);
    transition: left 0.6s ease;
}

.why-card:hover::after {
    left: 100%;
}

.qual-icon,
.service-icon,
.why-num {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.qual-card:hover .qual-icon,
.service-card:hover .service-icon,
.why-card:hover .why-num {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(44, 82, 130, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.map-visual {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95), rgba(15, 23, 42, 0.98));
    border-radius: 16px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="rgba(201,162,39,0.1)" stroke-width="0.5"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(201,162,39,0.08)" stroke-width="0.5"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(201,162,39,0.06)" stroke-width="0.5"/></svg>');
    background-size: 200px 200px;
    animation: mapPulse 4s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.map-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.map-marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: markerPulse 2s ease-out infinite;
}

@keyframes markerPulse {
    0% { transform: translate(-50%, -80%) scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    100% { transform: translate(-50%, -80%) scale(2.5); opacity: 0; box-shadow: 0 0 0 30px rgba(201, 162, 39, 0); }
}

.map-marker-icon {
    font-size: 3rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(201, 162, 39, 0.4));
}

.map-address-info h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.map-address-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.map-actions {
    margin-top: 1.5rem;
}

.map-actions .btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
}

.tender-card-header {
    position: relative;
    overflow: hidden;
}

.tender-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tender-card:hover .tender-card-header::before {
    left: 100%;
}

@media (max-width: 768px) {
    .hero-stat-num {
        font-size: 2rem;
    }
    .hero-stat-suffix {
        font-size: 1.3rem;
    }
    .hero-gradient-orb:nth-child(2) {
        width: 250px;
        height: 250px;
    }
    .hero-gradient-orb:nth-child(3) {
        width: 200px;
        height: 200px;
    }
    .hero-gradient-orb:nth-child(4) {
        width: 150px;
        height: 150px;
    }
}