/*
Theme Name: TradingRobotPlug
Theme URI: https://tradingrobotplug.com
Description: Professional dark theme for automated trading tools platform. Features: Modular V2-compliant architecture, comprehensive dashboard with real-time metrics and charts, sleek modern design with glassmorphism effects, REST API integration, Chart.js visualization, responsive layout.
Author: Agent-7 (Web Development) + Swarm Coordination
Author URI: https://tradingrobotplug.com
Version: 2.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tradingrobotplug
Tags: trading, modern, responsive, dark-mode, dashboard, charts, api, custom-post-type, one-column, two-columns, three-columns, left-sidebar, right-sidebar, flexible-header, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, sticky-post, theme-options, threaded-comments, translation-ready

Professional Dark Theme - Automated Trading Tools Platform
Modular Architecture - V2 Compliant
Updated: 2025-12-25
*/

/* ===== MODERN DESIGN SYSTEM ===== */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Colors */
  --color-deep-blue: #0a1628;
  --color-electric-blue: #2196F3;
  --color-cyan-accent: #00E5FF;
  --color-purple: #7C4DFF;
  --color-green: #00E676;
  --color-red: #FF5252;
  --color-white: #FFFFFF;
  --color-light-gray: #F7F9FC;
  --color-medium-gray: #90A4AE;
  --color-dark-gray: #263238;

  /* Unified Typography */
  --font-primary: 'Montserrat', Arial, sans-serif;
  --font-secondary: 'Roboto', Arial, sans-serif;
  --font-mono: 'Roboto Mono', monospace;
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;   /* 20px */
  --font-size-2xl: 1.5rem;   /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem;  /* 36px */
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.75;

  /* Unified Spacing System (8px base) */
  --spacing-1: 0.25rem;   /* 4px */
  --spacing-2: 0.5rem;    /* 8px */
  --spacing-3: 0.75rem;   /* 12px */
  --spacing-4: 1rem;      /* 16px */
  --spacing-5: 1.25rem;   /* 20px */
  --spacing-6: 1.5rem;    /* 24px */
  --spacing-8: 2rem;      /* 32px */
  --spacing-10: 2.5rem;   /* 40px */
  --spacing-12: 3rem;     /* 48px */
  --spacing-16: 4rem;     /* 64px */
  --spacing-20: 5rem;     /* 80px */
  
  /* Legacy Spacing (maintained for compatibility) */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 12px rgba(33, 150, 243, 0.3);
  --shadow-glow-hover: 0 8px 24px rgba(33, 150, 243, 0.4);
}

/* ===== GLOBAL STYLES ===== */
* {
  box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    color: var(--color-dark-gray);
    line-height: var(--line-height-normal);
    font-size: var(--font-size-base);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-dark-gray);
    margin: var(--spacing-8) 0 var(--spacing-6) 0;
    line-height: var(--line-height-tight);
}

h1 { font-size: var(--font-size-4xl); font-weight: 700; }
h2 { font-size: var(--font-size-3xl); font-weight: 600; }
h3 { font-size: var(--font-size-2xl); font-weight: 500; }
h4 { font-size: var(--font-size-lg); font-weight: 500; }

p {
    margin: var(--spacing-4) 0;
    font-size: var(--font-size-base);
    color: var(--color-medium-gray);
    line-height: var(--line-height-normal);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-cyan-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LINKS ===== */
a {
    color: var(--color-electric-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* ===== LAYOUT ===== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-8);
}

.section {
    padding: var(--space-3xl) var(--space-lg);
}

.section--light {
    background-color: var(--color-light-gray);
}

/* ===== MODERN COMPONENTS ===== */

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-6) var(--spacing-8);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.5);
}

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

.btn-secondary:hover {
    background: var(--color-electric-blue);
    color: var(--color-white);
}

/* Cards */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-8);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.card--gradient {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-electric-blue) 100%);
    color: var(--color-white);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-12);
}

.feature-card .icon {
    font-size: 48px;
    margin-bottom: var(--spacing-8);
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-cyan-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-bg-primary, #0d1117) 0%, var(--color-bg-secondary, #161b22) 100%);
    color: var(--color-text-primary, #f0f6fc);
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-24, 6rem) var(--spacing-8, 2rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-primary, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-size: var(--font-size-5xl, 3rem);
    font-weight: var(--font-weight-bold, 700);
    margin-bottom: var(--spacing-8, 2rem);
    color: var(--color-text-primary, #f0f6fc);
    line-height: var(--line-height-tight, 1.25);
}

.hero p {
    font-family: var(--font-primary, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    font-size: var(--font-size-lg, 1.125rem);
    margin-bottom: var(--spacing-12, 3rem);
    color: var(--color-text-secondary, #c9d1d9);
    line-height: var(--line-height-normal, 1.5);
}

.cta-group {
    display: flex;
    gap: var(--spacing-8);
    justify-content: center;
    flex-wrap: wrap;
}

/* Live Market Widget */
.market-preview {
    background: var(--color-bg-secondary, #161b22);
    border-radius: var(--radius-lg, 0.75rem);
    padding: var(--spacing-8, 2rem);
    margin-top: var(--spacing-12, 3rem);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border-primary, #30363d);
}

.market-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-4, 1rem) 0;
    border-bottom: 1px solid var(--color-border-secondary, #21262d);
}

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

.market-symbol {
    font-family: var(--font-mono, 'SF Mono', monospace);
    font-weight: var(--font-weight-semibold, 600);
    color: var(--color-accent-primary, #00e5ff);
}

.market-price {
    font-family: var(--font-mono, 'SF Mono', monospace);
    font-weight: var(--font-weight-medium, 500);
    color: var(--color-text-primary, #f0f6fc);
}

.market-change.positive {
    color: var(--color-accent-success, #00e676);
}

.market-change.negative {
    color: var(--color-accent-danger, #ff5252);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

/* How It Works Section */
.how-it-works {
    background: var(--color-light-gray);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-2xl);
    color: var(--color-electric-blue);
    font-weight: bold;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-cyan-accent) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-8);
}

.step-icon {
    font-size: 48px;
    margin-bottom: var(--spacing-8);
    color: var(--color-electric-blue);
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--color-deep-blue);
    color: var(--color-white);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: var(--spacing-12);
    margin-top: var(--spacing-12);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-12);
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-cyan-accent);
    margin-bottom: var(--spacing-1);
}

.metric-label {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-8);
    margin-top: var(--spacing-12);
}

.pricing-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-12);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pricing-card.popular {
    border-color: var(--color-electric-blue);
    transform: scale(1.05);
}

.pricing-card.popular .pricing-badge {
    background: linear-gradient(135deg, var(--color-electric-blue) 0%, var(--color-cyan-accent) 100%);
    color: var(--color-white);
    padding: var(--spacing-1) var(--spacing-6);
    border-radius: var(--radius-md);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-8);
}

.pricing-name {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-6);
}

.pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-electric-blue);
    margin-bottom: var(--spacing-8);
}

.pricing-price .currency {
    font-size: var(--font-size-2xl);
    vertical-align: super;
}

.pricing-price .period {
    font-size: var(--font-size-base);
    color: var(--color-medium-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-8) 0;
}

.pricing-features li {
    padding: var(--spacing-1) 0;
    border-bottom: 1px solid var(--color-light-gray);
}

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

/* Footer */
.footer {
    background: var(--color-deep-blue);
    color: var(--color-white);
    padding: var(--spacing-20) var(--spacing-8) var(--spacing-12);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-12);
    margin-bottom: var(--spacing-12);
}

.footer-section h4 {
    color: var(--color-cyan-accent);
    margin-bottom: var(--spacing-6);
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: var(--spacing-4);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-8);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step:not(:last-child)::after {
        content: '↓';
        right: 50%;
        top: 100%;
        transform: translateX(50%);
        margin-top: var(--spacing-8);
    }

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

@media (max-width: 640px) {
    .hero {
        padding: var(--spacing-16, 4rem) var(--spacing-4, 1rem);
        min-height: auto;
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl, 2.25rem);
        line-height: var(--line-height-tight, 1.25);
    }

    .hero p {
        font-size: var(--font-size-base, 1rem);
        line-height: var(--line-height-normal, 1.5);
    }

    .hero-content {
        max-width: 100%;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

header .site-logo {
    font-size: var(--font-size-2xl);
    font-weight: bold;
}

header nav {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-right: 20px;
}

header nav ul li a {
    color: #ffffff;
    font-weight: 600;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #f0f0f0;
}

/* Footer Styles */
footer {
    background-color: #333333;
    padding: 40px 0;
    color: #ffffff;
    text-align: center;
    border-top: 3px solid #d05454;
}

footer p {
    margin: 0;
    font-size: var(--font-size-sm);
}

footer a {
    color: #1e73be;
}

footer a:hover {
    color: #d05454;
}

/* Buttons */
button, .btn {
    background-color: #1e73be;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover, .btn:hover {
    background-color: #d05454;
    transform: translateY(-2px);
}

button:active, .btn:active {
    transform: translateY(1px);
}

/* Forms */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #ffffff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

input[type="submit"], button[type="submit"] {
    background-color: #1e73be;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover, button[type="submit"]:hover {
    background-color: #d05454;
}

/* Custom Widgets */
.widget {
    margin-bottom: 40px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #1e73be;
    padding-bottom: 10px;
}

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

.widget ul li {
    margin-bottom: 10px;
}

.widget ul li a {
    color: #1e73be;
    transition: color 0.3s ease;
}

.widget ul li a:hover {
    color: #d05454;
}

/* Trading Specific Styles */
.chart-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.chart-header {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 20px;
}

.chart-footer {
    font-size: var(--font-size-sm);
    color: #777777;
    margin-top: 20px;
}

.trading-stats {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.trading-stats .stat {
    text-align: center;
}

.trading-stats .stat h3 {
    font-size: var(--font-size-2xl);
    color: #222222;
    margin-bottom: 10px;
}

.trading-stats .stat p {
    font-size: var(--font-size-sm);
    color: #777777;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .trading-stats {
        flex-direction: column;
    }

    .trading-stats .stat {
        margin-bottom: 20px;
    }

    .container {
        padding: 10px;
    }

    footer {
        padding: 20px 0;
    }

    button, .btn {
        width: 100%;
        padding: 15px;
        font-size: var(--font-size-lg);
    }
}

/* Additional Trading Styles */
.chart-toolbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.chart-toolbar .time-frame {
    display: flex;
    align-items: center;
}

.chart-toolbar .time-frame label {
    font-weight: 600;
    margin-right: 10px;
}

.chart-toolbar .time-frame select {
    padding: 5px;
    border: 1px solid #cccccc;
    border-radius: 4px;
}

.chart-toolbar .indicators {
    display: flex;
    align-items: center;
}

.chart-toolbar .indicators label {
    font-weight: 600;
    margin-right: 10px;
}

.chart-toolbar .indicators input[type="checkbox"] {
    margin-right: 5px;
}

.trade-alert {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.trade-alert strong {
    font-weight: bold;
}

/* Custom Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    background-color: #ffffff;
    color: #1e73be;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    border: 1px solid #cccccc;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a:hover, .pagination a.current {
    background-color: #1e73be;
    color: #ffffff;
}

/* Additional Media Queries */
@media (max-width: 480px) {
    h1 {
        font-size: var(--font-size-2xl);
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: var(--font-size-lg);
    }

    .trading-stats .stat h3 {
        font-size: 20px;
    }

    .container {
        padding: 5px;
    }
}

/* ===== HOW IT WORKS SECTION STYLES ===== */
.how-it-works .steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    gap: 20px;
}

.how-it-works .step {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    flex: 1;
    position: relative;
}

.how-it-works .step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: rgba(102, 126, 234, 0.6);
    z-index: 10;
}

.how-it-works .step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 16px;
}

.how-it-works .step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .how-it-works .steps-container {
        flex-direction: column;
    }
    
    .how-it-works .step:not(:last-child)::after {
        display: none;
    }
}

/* ===== SERVICES/BENEFITS SECTION STYLES ===== */
.services-section .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-section .services-image {
    /* Image column - using gradient placeholder */
}

.services-section .services-list {
    /* Text column with checkmarks */
}

@media (max-width: 768px) {
    .services-section .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: var(--font-size-lg);
    margin-bottom: 16px;
}

.testimonial-card .testimonial-quote {
    font-style: italic;
    font-size: var(--font-size-base);
    color: #333;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card .testimonial-author {
    font-size: var(--font-size-sm);
    color: #666;
}

.testimonial-card .testimonial-author strong {
    color: #333;
    font-size: var(--font-size-base);
}

@media (max-width: 992px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ===== ABOUT/COMPANY SECTION STYLES ===== */
.section--gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: var(--spacing-20) 0;
}

/* ===== FINAL CTA/CONTACT SECTION STYLES ===== */
.section--cta {
    background-color: #f8f9fa;
    padding: var(--spacing-20) 0;
}

.section--cta h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-dark-gray);
}

.section--cta h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark-gray);
}

/* Social Media Icons */
.section--cta a[href^="#"]:last-child {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section--cta a[href^="#"]:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

/* Responsive About Section */
@media (max-width: 768px) {
    .section--gradient h2 {
        font-size: 32px;
    }
    
    .section--cta h2 {
        font-size: 28px;
    }
}