/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Theme Variables */
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 193, 7, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-start: #0a0a0f;
    --gradient-mid: #1a1a2e;
    --gradient-end: #16213e;
}

[data-theme="light"] {
    /* Light Theme Variables */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --bg-card: rgba(255, 255, 255, 0.9);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --text-primary: #212529;
    --text-secondary: rgba(33, 37, 41, 0.8);
    --text-muted: rgba(33, 37, 41, 0.6);
    --border-color: rgba(0, 0, 0, 0.15);
    --border-hover: rgba(255, 193, 7, 0.5);
    --shadow-color: rgba(0, 0, 0, 0.15);
    --gradient-start: #f8f9fa;
    --gradient-mid: #e9ecef;
    --gradient-end: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: #1976D2;
    color: white;
}

.btn-primary:hover {
    background: #1565C0;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.btn-outline:hover {
    background: #f5f5f5;
    border-color: #1976D2;
    color: #1976D2;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-cta {
    background: #FF6B35;
    color: white;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.btn-cta:hover {
    background: #FF5722;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-cta-secondary {
    background: #FF6B35;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    width: 100%;
    margin-top: 20px;
}

/* Header */
.header {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 32px var(--shadow-color);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.9);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 12px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-brand .logo span {
    font-weight: 700;
    font-size: 20px;
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: #ffc107;
    font-weight: 600;
}

.nav-link i {
    font-size: 12px;
}

.new-badge {
    background: #00C4B4;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    margin-left: 5px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-select {
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.highlight {
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.search-container {
    display: flex;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 16px;
    outline: none;
}

.country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: #f8f9fa;
    cursor: pointer;
    border-left: 1px solid #eee;
}

.country-select img {
    width: 16px;
    height: 12px;
}

/* Toolkits Section */
.toolkits {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    position: relative;
    border-radius: 24px;
    margin: 40px 20px;
    min-height: 600px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.toolkits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.05) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(156, 39, 176, 0.05) 0%, transparent 60%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.toolkit-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.tab-btn.active {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
}

.tab-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
}

.tab-btn.active:hover {
    background: #ffc107;
    color: #000;
}

/* Light Theme Tab Buttons */
[data-theme="light"] .tab-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .tab-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 193, 7, 0.5);
}

/* Light Theme Data Insights Section */
[data-theme="light"] .data-insights {
    background: rgba(248, 249, 250, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .data-insights h2 {
    color: #212529;
}

[data-theme="light"] .data-insights .insights-description {
    color: rgba(33, 37, 41, 0.8);
}

[data-theme="light"] .data-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .data-label {
    color: rgba(33, 37, 41, 0.8);
}

/* Light Theme Testimonials Section */
[data-theme="light"] .testimonials .section-title {
    color: #212529;
}

[data-theme="light"] .section-subtitle {
    color: rgba(33, 37, 41, 0.8);
}

.toolkit-showcase {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    min-height: 500px;
}

.toolkit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 350px;
    opacity: 0.8;
    transform: scale(0.98);
    position: relative;
    overflow: hidden;
}

.toolkit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.toolkit-card.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 193, 7, 0.3);
}

.toolkit-card.center {
    transform: scale(1.02);
    z-index: 2;
    opacity: 1;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon i {
    color: white;
    font-size: 24px;
}

.toolkit-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.chart-placeholder {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 15px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100px;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #3498db, #2980b9);
    border-radius: 2px 2px 0 0;
    min-height: 20px;
}

.audit-section {
    margin-top: 20px;
}

.audit-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.audit-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.audit-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(#4CAF50 0deg 220deg, #f0f0f0 220deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.audit-circle::before {
    content: '';
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    position: absolute;
}

.percentage {
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: #333;
}

.audit-metrics {
    flex: 1;
}

.metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.metric .label {
    color: #666;
    font-size: 12px;
}

.metric .value {
    font-weight: 600;
    color: #333;
}

.position-tracking h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.tracking-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chart-mini {
    width: 60px;
    height: 30px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.chart-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.2) 2px,
        rgba(255, 255, 255, 0.2) 4px
    );
}

.local-stats h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.performance-chart {
    background: #f0f8ff;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    border: 1px solid #e3f2fd;
}

.trend-line {
    width: 100%;
    height: 40px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.trend-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.3) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
}

.performance-value {
    font-size: 24px;
    font-weight: 700;
    color: #2196F3;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.review-analytics h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.review-score {
    font-size: 32px;
    font-weight: 700;
    color: #FF9800;
    margin-bottom: 5px;
}

.review-details {
    color: #666;
    font-size: 12px;
}

/* Trusted Brands */
.trusted-brands {
    padding: 60px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    text-align: center;
}

.brands-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand-logo {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 20px;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    color: white;
    transform: scale(1.1);
}

/* Enterprise Section */
.enterprise {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3498db 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 70%;
    background: radial-gradient(ellipse at center, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
}

.enterprise-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.enterprise-text {
    flex: 1;
}

.enterprise-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.enterprise-logo i {
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

.enterprise-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
}

.enterprise-features {
    list-style: none;
    margin-bottom: 40px;
}

.enterprise-features li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.enterprise-features i {
    color: #00C4B4;
    font-size: 16px;
}

.enterprise-image {
    flex: 1;
}

.dashboard-preview {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
}

.dashboard-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.dashboard-tabs {
    display: flex;
    gap: 20px;
}

.tab {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.tab.active {
    background: white;
    color: #333;
    font-weight: 600;
}

.dashboard-content {
    padding: 20px;
}

.dashboard-metrics {
    display: flex;
    gap: 20px;
}

.metric-card {
    flex: 1;
    background: #f8f9fa;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
}

.metric-title {
    color: #666;
    font-size: 12px;
    display: block;
    margin-bottom: 5px;
}

.metric-value {
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(52, 152, 219, 0.05) 0%, transparent 50%);
}

.statistics .section-title {
    color: var(--text-primary);
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

/* Data Insights Section */
.data-insights {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 0;
    border-radius: 24px;
    margin: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.data-insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    pointer-events: none;
}

.insights-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.data-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

.data-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.data-label {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.insights-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-mid) 50%, var(--gradient-end) 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.05) 0%, transparent 50%);
}

.testimonials .section-title {
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--border-hover);
}

/* Light Theme Specific Overrides */
[data-theme="light"] .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 193, 7, 0.6);
}

[data-theme="light"] .testimonial-card.large {
    background: #ffc107;
    color: #000;
}

[data-theme="light"] .testimonial-card.large blockquote {
    color: #000;
}

[data-theme="light"] .testimonial-card.large .author-name {
    color: #000;
}

[data-theme="light"] .testimonial-card.large .author-title {
    color: rgba(0, 0, 0, 0.7);
}

/* Grid Layout */
.testimonial-card.large {
    grid-row: span 2;
    background: #ffc107;
    color: #000;
    min-height: 400px;
}

.testimonial-card.large blockquote {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}

.testimonial-card.large .author-name {
    color: #000;
    font-size: 16px;
}

.testimonial-card.large .author-title {
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
}

.testimonial-card.medium {
    grid-column: span 1;
    min-height: 200px;
}

.testimonial-card.small {
    min-height: 180px;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 400;
    flex: 1;
    transition: color 0.3s ease;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    position: relative;
    flex-shrink: 0;
}

.author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.testimonial-card.large .author-avatar img {
    border-color: rgba(0, 0, 0, 0.2);
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.author-title {
    color: var(--text-muted);
    font-size: 12px;
    transition: color 0.3s ease;
}

/* Toolkit Section Carousel Specific */
.toolkits .testimonial-carousel {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.toolkits .testimonial-slider {
    height: 300px;
    align-items: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 0;
    position: relative;
}

.toolkits .testimonial-card {
    min-height: 280px;
    max-height: 280px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    width: 350px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Light Theme Toolkit Cards */
[data-theme="light"] .toolkits .testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.toolkits .testimonial-card blockquote {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 400;
    position: relative;
    z-index: 1;
    flex: 1;
    transition: color 0.3s ease;
}

.toolkits .testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.toolkits .testimonial-card .author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.toolkits .testimonial-card.center-card .author-avatar img {
    width: 60px;
    height: 60px;
    border-color: rgba(255, 193, 7, 0.5);
}

.toolkits .testimonial-card .author-info {
    text-align: left;
}

.toolkits .testimonial-card .author-name {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.toolkits .testimonial-card.center-card .author-name {
    font-size: 16px;
}

.toolkits .testimonial-card .author-title {
    color: var(--text-muted);
    font-size: 12px;
    transition: color 0.3s ease;
}

.toolkits .testimonial-card.center-card .author-title {
    font-size: 14px;
}

.toolkits .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800, #f44336, #e91e63, #9c27b0, #673ab7, #3f51b5, #2196f3, #03a9f4, #00bcd4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.toolkits .testimonial-card.center-card {
    transform: scale(1.1);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 193, 7, 0.3);
}

.toolkits .testimonial-card.center-card .card-gradient {
    opacity: 1;
}

.toolkits .testimonial-card.side-card {
    transform: scale(0.9);
    opacity: 0.6;
    filter: blur(1px);
}

.toolkits .testimonial-card.side-card.left {
    transform: scale(0.9) translateX(-20px);
}

.toolkits .testimonial-card.side-card.right {
    transform: scale(0.9) translateX(20px);
}

/* Prevent auto scroll in toolkit section */
.toolkits .testimonial-slider {
    scroll-behavior: auto;
}

.toolkits .testimonial-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.toolkits .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toolkits .dot.active {
    background: #ffc107;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.toolkits .dot:hover {
    background: #ffc107;
    transform: scale(1.1);
}

.testimonial-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.3);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 193, 7, 0.1) 0%, transparent 60%);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer-logo-img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    border-radius: 4px;
}
.footer {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    color: #ccc;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    margin-bottom: 60px;
    text-align: center;
}

.footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-address {
    color: #888;
    font-size: 14px;
}

.pricing-link {
    color: #00C4B4;
    text-decoration: none;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4,
.footer-section h5 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
}

.footer-section h4 {
    margin-top: 0;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 700;
}

.footer-logo i {
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .hero-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .testimonials .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-card.large {
        grid-row: span 1;
        min-height: 250px;
    }
    
    .testimonial-card.medium {
        min-height: 180px;
    }
    
    .testimonial-card.small {
        min-height: 160px;
    }
    
    .toolkit-showcase {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .toolkit-card {
        max-width: 100%;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 20px;
    }
    
    .enterprise {
        padding: 60px 0;
    }
    
    .enterprise-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .data-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .footer-cta {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .data-number {
        font-size: 36px;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .author-info {
        text-align: center;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Theme Toggle Button */
.theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.theme-toggle:active {
    transform: scale(0.95);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

[data-theme="light"] .theme-toggle {
    background: linear-gradient(135deg, #6c757d, #495057);
    box-shadow: 0 4px 20px rgba(108, 117, 125, 0.3);
}

[data-theme="light"] .theme-toggle:hover {
    box-shadow: 0 6px 25px rgba(108, 117, 125, 0.4);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FF5722, #00A69B);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text h2 {
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 20px;
}

.content-text h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin: 30px 0 15px;
}

.content-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text li {
    color: var(--text-secondary);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.content-text li:before {
    content: "•";
    color: #ffc107;
    font-size: 20px;
    position: absolute;
    left: 0;
}

.image-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.image-placeholder i {
    font-size: 80px;
    color: #ffc107;
    margin-bottom: 20px;
}

.image-placeholder p {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
}

/* Toolkits Grid Styles */
.toolkits-grid {
    padding: 80px 0;
    background: var(--bg-primary);
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.toolkit-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.toolkit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--border-hover);
}

.toolkit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.toolkit-icon i {
    color: white;
    font-size: 32px;
}

.toolkit-item h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.toolkit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Pricing Plans Styles */
.pricing-plans {
    padding: 80px 0;
    background: var(--bg-primary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.plan-card.featured {
    border-color: #ffc107;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header h3 {
    color: var(--text-primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 30px;
}

.plan-price .currency {
    color: var(--text-secondary);
    font-size: 20px;
    vertical-align: top;
}

.plan-price .amount {
    color: var(--text-primary);
    font-size: 48px;
    font-weight: 700;
}

.plan-price .period {
    color: var(--text-secondary);
    font-size: 16px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.plan-features i {
    color: #ffc107;
    margin-right: 12px;
    width: 16px;
}

/* Blog Posts Styles */
.blog-posts {
    padding: 80px 0;
    background: var(--bg-primary);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--border-hover);
}

.post-image {
    height: 200px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.post-image .image-placeholder {
    border: none;
    background: transparent;
    padding: 40px;
}

.post-image i {
    font-size: 60px;
    color: #ffc107;
}

.post-content {
    padding: 30px;
}

.post-category {
    background: #ffc107;
    color: #000;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-content h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin: 15px 0;
    line-height: 1.4;
}

.post-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--text-muted);
}

/* Hero subtitle for pages */
.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for Enhanced Pages */

/* Team Section Styles */
.team-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-member {
    text-align: center;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffc107;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 8px;
}

.member-role {
    color: #ffc107;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Values Section Styles */
.values-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    text-align: center;
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-color: var(--border-hover);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 28px;
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature List Styles */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px;
    text-align: left;
}

.feature-list li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

/* Features Comparison Styles */
.features-comparison {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.comparison-item {
    text-align: center;
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.comparison-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #00C4B4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.comparison-icon i {
    color: white;
    font-size: 32px;
}

.comparison-item h3 {
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 15px;
}

.comparison-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Plan Description and Note Styles */
.plan-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.plan-note {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 15px;
    margin-bottom: 0;
}

/* Features Table Styles */
.features-table {
    padding: 80px 0;
    background: var(--bg-primary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.table-responsive {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

.comparison-table td {
    color: var(--text-secondary);
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.text-success {
    color: #ffc107 !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--shadow-color);
}

.faq-item h3 {
    color: var(--text-primary);
    font-size: 18px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Featured Post Styles */
.featured-post {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-text .post-category.featured {
    background: #ffc107;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.featured-text h2 {
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    color: var(--text-secondary);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.featured-text .post-meta {
    margin-bottom: 30px;
}

.featured-text .post-meta span {
    margin-right: 20px;
}

.read-time {
    color: var(--text-muted);
    font-size: 14px;
}

.image-placeholder.large {
    padding: 80px 50px;
}

.image-placeholder.large i {
    font-size: 100px;
}

/* Blog Categories Styles */
.blog-categories {
    padding: 40px 0;
    background: var(--bg-primary);
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    background: var(--bg-card);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #ffc107;
    color: #000;
    border-color: #ffc107;
    transform: translateY(-2px);
}

/* Enhanced Blog Post Styles */
.read-more {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #ff8f00;
}

.post-meta .read-time {
    color: var(--text-muted);
    font-size: 14px;
}

/* Newsletter Section Styles */
.newsletter-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-radius: 24px;
    margin: 40px 20px;
    border: 1px solid var(--border-color);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--text-primary);
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 16px;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.newsletter-note {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design for Enhanced Features */
@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-filter {
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
}

/* Blog and Announcement Detail Pages */
.blog-detail-hero,
.announcement-detail-hero {
    background: var(--bg-primary);
    padding: 120px 0 60px;
    border-bottom: 1px solid var(--border-color);
}

.blog-header,
.announcement-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-category,
.announcement-category {
    display: inline-block;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title,
.announcement-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-meta,
.announcement-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 14px;
}

.blog-date,
.blog-author,
.blog-read-time,
.announcement-date,
.announcement-author,
.announcement-type,
.announcement-priority {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-date::before,
.announcement-date::before {
    content: '📅';
    font-size: 14px;
}

.blog-author::before,
.announcement-author::before {
    content: '👤';
    font-size: 14px;
}

.blog-read-time::before {
    content: '⏱️';
    font-size: 14px;
}

.announcement-priority {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.announcement-priority.high {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.announcement-priority.urgent {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.announcement-priority.low {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.announcement-priority.normal {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

/* Content Layout */
.blog-content,
.announcement-content {
    padding: 60px 0;
    background: var(--bg-primary);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

.blog-article,
.announcement-article {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    transition: border-color 0.3s ease;
}

.blog-article:hover,
.announcement-article:hover {
    border-color: var(--border-hover);
}

.blog-featured-image,
.announcement-featured-image {
    margin: -30px -30px 25px -30px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.blog-featured-image img,
.announcement-featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-description {
    margin-bottom: 25px;
}

.blog-description .lead {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 500;
}

.blog-body,
.announcement-body {
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-body h2,
.announcement-body h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 30px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.blog-body h3,
.announcement-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 25px 0 12px 0;
}

.blog-body p,
.announcement-body p {
    margin-bottom: 16px;
    font-size: 15px;
}

.blog-body ul,
.blog-body ol,
.announcement-body ul,
.announcement-body ol {
    margin: 16px 0;
    padding-left: 20px;
}

.blog-body li,
.announcement-body li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.blog-body strong,
.announcement-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.blog-body blockquote,
.announcement-body blockquote {
    background: var(--bg-tertiary);
    border-left: 3px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Tags */
.blog-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-tags h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.tag:hover {
    background: var(--bg-card);
    border-color: var(--border-hover);
}

/* Sidebar */
.blog-sidebar,
.announcement-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.sidebar-widget:hover {
    border-color: var(--border-hover);
}

.sidebar-widget h3 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.related-posts,
.related-announcements {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-post,
.related-announcement {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child,
.related-announcement:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post h4,
.related-announcement h4 {
    margin-bottom: 6px;
}

.related-post h4 a,
.related-announcement h4 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.related-post h4 a:hover,
.related-announcement h4 a:hover {
    color: #ffc107;
}

.related-post p,
.related-announcement p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.post-date,
.announcement-date {
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.category-list a:hover {
    color: #ffc107;
}

.category-list a::before {
    content: '→';
    color: #ffc107;
    font-weight: bold;
    font-size: 12px;
}

/* Action Button */
.announcement-action {
    margin: 30px 0;
    text-align: center;
}

.announcement-action .btn {
    background: #ffc107;
    color: var(--bg-primary);
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    font-weight: 600;
}

.announcement-action .btn:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

/* Expiry Notice */
.announcement-expiry {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin: 25px 0;
    border: 1px solid var(--border-color);
}

.announcement-expiry p {
    margin: 0;
    font-size: 13px;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.newsletter-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: var(--text-primary);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.newsletter-content p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.1);
}

.email-input::placeholder {
    color: var(--text-muted);
}

.btn-cta {
    background: #ffc107;
    color: var(--bg-primary);
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #ffb300;
    transform: translateY(-1px);
}

.newsletter-note {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: var(--bg-secondary);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-section h2 {
    color: var(--text-primary);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-sidebar,
    .announcement-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-title,
    .announcement-title {
        font-size: 32px;
    }
    
    .blog-meta,
    .announcement-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-article,
    .announcement-article {
        padding: 25px;
    }
    
    .blog-featured-image,
    .announcement-featured-image {
        margin: -25px -25px 20px -25px;
    }
    
    .blog-featured-image img,
    .announcement-featured-image img {
        height: 250px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .blog-title,
    .announcement-title {
        font-size: 28px;
    }
    
    .blog-article,
    .announcement-article {
        padding: 20px;
    }
    
    .blog-featured-image,
    .announcement-featured-image {
        margin: -20px -20px 15px -20px;
    }
    
    .blog-featured-image img,
    .announcement-featured-image img {
        height: 200px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
}

/* Announcement Priority Styles */
.announcement-priority {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.announcement-priority.high {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.announcement-priority.urgent {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.announcement-priority.low {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.announcement-priority.normal {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

/* Announcement Header with Priority */
.announcement-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.announcement-category.featured {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    font-weight: 600;
}

.announcement-category.high {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
}

.announcement-category.urgent {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
}

.announcement-category.low {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.announcement-category.normal {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
}

/* Empty State for No Announcements */
.no-announcements {
    text-align: center;
    padding: 60px 20px;
}

.empty-state {
    max-width: 400px;
    margin: 0 auto;
}

.empty-state i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.empty-state p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Image Placeholder Improvements */
.image-placeholder {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    min-height: 200px;
}

.image-placeholder.large {
    min-height: 300px;
}

.image-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.7;
}

.image-placeholder p {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}
