/* ========================================
   Ruihe Wealth Partners Theme - Global Investment Management
   ======================================== */

/* CSS Variables */
:root {
    --primary: #000000;
    --primary-dark: #1a1a1a;
    --secondary: #666666;
    --accent: #ff6b35;
    --bg: #ffffff;
    --bg-light: #f5f5f5;
    --bg-dark: #000000;
    --text: #000000;
    --text-light: #666666;
    --text-white: #ffffff;
    --border: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 4px;
    --radius-lg: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--primary);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left .divider {
    opacity: 0.4;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    color: var(--text-white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.top-bar-right a:hover {
    opacity: 1;
}

.language-selector {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: var(--radius);
    cursor: pointer;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 150px;
    display: none;
    z-index: 1000;
}

.language-dropdown a {
    display: block;
    padding: 8px 16px;
    color: var(--text);
}

.language-dropdown a:hover,
.language-dropdown a.active {
    background: var(--bg-light);
}

.language-selector:hover .language-dropdown {
    display: block;
}

/* ========================================
   Main Header
   ======================================== */
.main-header {
    background: var(--bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-img {
    height: 40px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 25px 0;
    font-weight: 500;
    color: var(--text);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link i {
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 14px;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.search-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 0;
    box-shadow: var(--shadow);
    display: none;
}

.search-box.active {
    display: block;
}

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

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
}

.search-submit {
    padding: 12px 30px;
    background: var(--primary);
    color: var(--text-white);
    border-radius: var(--radius);
    font-weight: 500;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding-top: 150px;
    color: var(--text-white);
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: var(--primary);
    color: var(--text-white);
    padding: 100px 0 60px;
}

.page-header .container {
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.8;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-white);
    border: 2px solid var(--accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
}

.btn-secondary {
    background: var(--primary);
    color: var(--text-white);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--primary);
}

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

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

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
}

.link-arrow:hover {
    gap: 12px;
}

/* ========================================
   Quick Links
   ======================================== */
.quick-links {
    background: var(--bg-light);
    padding: 30px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.quick-link i {
    font-size: 24px;
    color: var(--accent);
}

.quick-link span {
    font-weight: 600;
    color: var(--text);
}

/* ========================================
   Section Styles
   ======================================== */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.section-header.light h2,
.section-header.light p {
    color: var(--text-white);
}

/* ========================================
   Offerings Grid
   ======================================== */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offering-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

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

.offering-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offering-icon i {
    font-size: 28px;
    color: var(--accent);
}

.offering-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offering-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.offering-list {
    list-style: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.offering-list li {
    padding: 8px 0;
    color: var(--text-light);
    font-size: 14px;
}

.offering-list li::before {
    content: '→';
    margin-right: 10px;
    color: var(--accent);
}

/* ========================================
   Content Grid
   ======================================== */
.content-grid {
    display: grid;
    gap: 60px;
    align-items: center;
}

.content-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

.content-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.content-main h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-main h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.content-main p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-light);
}

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

/* ========================================
   Why BlackRock Section
   ======================================== */
.why-blackrock {
    background: var(--primary);
    padding: 100px 0;
    position: relative;
}

.why-blackrock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/data/uploads/picture/2026-04-18/corgiai-team-meeting-dashboard-banner.webp') center/cover;
    opacity: 0.1;
}

.why-blackrock .container {
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    color: var(--text-white);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.stat-label {
    font-size: 16px;
    opacity: 0.8;
}

/* ========================================
   Insights Grid
   ======================================== */
.insights-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.insight-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.insight-card.featured {
    grid-row: span 2;
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-card.featured .insight-image {
    height: 300px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-content {
    padding: 25px;
}

.insight-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.insight-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.insight-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.insight-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.insight-meta i {
    margin-right: 5px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--bg-light);
    padding: 100px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-buttons .btn-outline {
    color: var(--primary);
    border-color: var(--primary);
}

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

/* ========================================
   Team Grid
   ======================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ========================================
   Contact Page
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--accent);
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--accent);
    color: var(--text-white);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.office-image {
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: auto;
}

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

.office-card {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.office-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent);
}

.office-card ul li {
    padding: 5px 0;
    color: var(--text-light);
}

/* ========================================
   Article/News Detail
   ======================================== */
.article-header {
    background: var(--primary);
    color: var(--text-white);
    padding: 100px 0 60px;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.article-category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.article-date {
    font-size: 14px;
    opacity: 0.8;
}

.article-date i {
    margin-right: 5px;
}

.article-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-stats {
    font-size: 14px;
    opacity: 0.8;
}

.article-stats i {
    margin-right: 5px;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.article-main {
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-featured-image {
    height: 400px;
    overflow: hidden;
}

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

.article-content {
    padding: 40px;
    font-size: 16px;
    line-height: 1.8;
}

.article-content h2,
.article-content h3 {
    margin: 30px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 20px 0;
}

.article-footer {
    padding: 30px 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tags-label {
    font-weight: 600;
}

.tag {
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 13px;
    transition: var(--transition);
}

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

.article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-label {
    font-weight: 600;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.share-btn:hover {
    background: var(--accent);
    color: var(--text-white);
}

.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent);
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.related-item:hover {
    background: var(--bg-light);
}

.related-image {
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

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

.related-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-content span {
    font-size: 12px;
    color: var(--text-light);
}

.category-list li {
    border-bottom: 1px solid var(--border);
}

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

.category-list li a {
    display: block;
    padding: 12px 0;
    transition: var(--transition);
}

.category-list li a:hover {
    color: var(--accent);
    padding-left: 10px;
}

/* ========================================
   Search Results
   ======================================== */
.search-form-wrapper {
    max-width: 700px;
    margin: 0 auto 50px;
}

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

.search-input-large {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
    transition: var(--transition);
}

.search-input-large:focus {
    outline: none;
    border-color: var(--accent);
}

.search-btn-large {
    padding: 15px 30px;
    background: var(--accent);
    color: var(--text-white);
    border-radius: var(--radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.search-btn-large:hover {
    background: var(--primary);
}

.results-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.results-header p {
    color: var(--text-light);
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-item {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-item:hover {
    box-shadow: var(--shadow-lg);
}

.result-image {
    height: 100%;
    min-height: 180px;
}

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

.result-content {
    padding: 30px;
}

.result-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.result-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.result-content h3 a:hover {
    color: var(--accent);
}

.result-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.result-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.result-meta i {
    margin-right: 5px;
}

.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.no-results-icon i {
    font-size: 40px;
    color: var(--text-light);
}

.no-results h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.browse-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================
   News List
   ======================================== */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: var(--bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-item:hover {
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 100%;
    min-height: 200px;
}

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

.news-content {
    padding: 30px;
}

.news-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-content h3 a:hover {
    color: var(--accent);
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.news-meta i {
    margin-right: 5px;
}

/* ========================================
   Resources Grid
   ======================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.resource-card {
    background: var(--bg);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

.resource-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.resource-icon i {
    font-size: 28px;
    color: var(--accent);
}

.resource-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.resource-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.main-footer {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

/* ========================================
   Utilities
   ======================================== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 40px;
}

.img-rounded {
    border-radius: var(--radius-lg);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .insight-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        flex-direction: row;
    }
    
    .sidebar-widget {
        flex: 1;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-item {
        grid-template-columns: 1fr;
    }
    
    .news-image {
        height: 200px;
    }
    
    .result-item {
        grid-template-columns: 1fr;
    }
    
    .result-image {
        height: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-card.featured {
        grid-column: span 1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .article-title {
        font-size: 28px;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .article-content {
        padding: 25px;
    }
    
    .article-footer {
        padding: 20px 25px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-sidebar {
        flex-direction: column;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .search-form-large {
        flex-direction: column;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

/* ========================================
   Detailed Offering Cards
   ======================================== */
.offering-detailed-card {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    background: var(--bg);
    padding: 50px;
    margin-bottom: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

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

.offering-content {
    display: flex;
    flex-direction: column;
}

.offering-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8c5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.offering-icon-large i {
    font-size: 32px;
    color: var(--text-white);
}

.offering-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.offering-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offering-desc {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.offering-section {
    margin-bottom: 20px;
}

.offering-section h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offering-section h5::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
}

.offering-section h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--accent);
}

.offering-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

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

.offering-list li {
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

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

.sub-category {
    margin-bottom: 15px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
}

.sub-category h6 {
    margin-bottom: 6px;
}

.sub-category p {
    margin: 0;
    font-size: 13px;
}

.risk-notice {
    background: linear-gradient(to right, #fff3cd 0%, #fff8e1 100%);
    border-left: 4px solid #ffc107;
    padding: 12px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 20px;
}

.risk-notice h5 {
    color: #856404;
    margin-bottom: 6px;
}

.risk-notice h5::before {
    background: #ffc107;
}

.risk-notice p {
    color: #856404;
    margin: 0;
    font-size: 13px;
}

.case-study {
    background: linear-gradient(to right, #d1ecf1 0%, #e8f4f8 100%);
    border-left: 4px solid #17a2b8;
    padding: 12px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 20px;
}

.case-study h5 {
    color: #0c5460;
    margin-bottom: 6px;
}

.case-study h5::before {
    background: #17a2b8;
}

.case-study p {
    color: #0c5460;
    margin: 0;
    font-size: 13px;
}

.product-comparison {
    background: linear-gradient(to right, #d4edda 0%, #e8f5e9 100%);
    border-left: 4px solid #28a745;
    padding: 12px 18px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 20px;
}

.product-comparison h5 {
    color: #155724;
    margin-bottom: 6px;
}

.product-comparison h5::before {
    background: #28a745;
}

.product-comparison p {
    color: #155724;
    margin: 0;
    font-size: 13px;
}

.offering-image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.offering-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Button in offering card */
.offering-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive for detailed cards */
@media (max-width: 1024px) {
    .offering-detailed-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }
    
    .offering-image {
        order: -1;
        padding-top: 0;
    }
    
    .offering-image img {
        max-height: 280px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .offering-detailed-card {
        padding: 25px 20px;
        margin-bottom: 20px;
    }
    
    .offering-content h3 {
        font-size: 22px;
    }
    
    .offering-content h4 {
        font-size: 14px;
    }
    
    .offering-icon-large {
        width: 55px;
        height: 55px;
    }
    
    .offering-icon-large i {
        font-size: 24px;
    }
    
    .offering-desc {
        font-size: 14px;
    }
}
