/* ============================================
   SEOSyed Premium Theme - Main Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Brand Colors */
    --color-primary: #2E86C1;
    --color-primary-light: #3498DB;
    --color-primary-dark: #1A5276;
    --color-primary-rgb: 46, 134, 193;
    --color-secondary: #2C3E50;
    --color-secondary-light: #34495E;
    --color-secondary-dark: #1B2631;
    --color-accent: #E74C3C;
    --color-accent-light: #FF6B6B;
    --color-success: #27AE60;
    --color-warning: #F39C12;
    --color-info: #17A2B8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2E86C1 0%, #1A5276 100%);
    --gradient-hero: linear-gradient(135deg, #0F1B2D 0%, #1A3A5C 50%, #2E86C1 100%);
    --gradient-card: linear-gradient(145deg, rgba(46,134,193,0.08) 0%, rgba(44,62,80,0.04) 100%);
    --gradient-cta: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
    --gradient-dark: linear-gradient(180deg, #1B2631 0%, #2C3E50 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-off-white: #F8F9FA;
    --color-light-gray: #ECF0F1;
    --color-gray: #BDC3C7;
    --color-dark-gray: #7F8C8D;
    --color-charcoal: #2C3E50;
    --color-black: #1B2631;

    /* Text */
    --text-primary: #1B2631;
    --text-secondary: #5D6D7E;
    --text-muted: #95A5A6;
    --text-white: #FFFFFF;
    --text-link: #2E86C1;

    /* Background */
    --bg-body: #FFFFFF;
    --bg-section: #F8F9FA;
    --bg-section-alt: #EBF5FB;
    --bg-dark: #1B2631;
    --bg-card: #FFFFFF;
    --bg-overlay: rgba(27, 38, 49, 0.85);

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Font Sizes - Fluid */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
    --text-lg: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);
    --text-xl: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.8rem, 1.5rem + 1.5vw, 2.5rem);
    --text-4xl: clamp(2.2rem, 1.8rem + 2vw, 3.2rem);
    --text-5xl: clamp(2.8rem, 2.2rem + 3vw, 4rem);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-wide: 1400px;
    --container-narrow: 800px;
    --header-height: 80px;
    --header-height-scrolled: 70px;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --border-light: 1px solid rgba(0,0,0,0.06);
    --border-color: #E5E8EB;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.12);
    --shadow-glow: 0 0 30px rgba(46,134,193,0.15);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.12);

    /* Glass */
    --glass-bg: rgba(255,255,255,0.7);
    --glass-border: rgba(255,255,255,0.2);
    --glass-blur: blur(20px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-overlay: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

h1 { font-size: var(--text-5xl); letter-spacing: -0.02em; }
h2 { font-size: var(--text-4xl); letter-spacing: -0.015em; }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; }

blockquote {
    border-left: 4px solid var(--color-primary);
    padding: var(--space-lg) var(--space-xl);
    margin: var(--space-xl) 0;
    background: var(--bg-section);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section {
    padding: var(--space-5xl) 0;
    position: relative;
}

.section--sm { padding: var(--space-3xl) 0; }
.section--lg { padding: calc(var(--space-5xl) * 1.5) 0; }
.section--dark { background: var(--bg-dark); color: var(--text-white); }
.section--alt { background: var(--bg-section); }
.section--gradient { background: var(--gradient-hero); color: var(--text-white); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--space-3xl);
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-lg);
    background: rgba(46,134,193,0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.section--dark .section-badge {
    background: rgba(46,134,193,0.2);
    color: var(--color-primary-light);
}

.section-header h2 {
    margin-bottom: var(--space-md);
}

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

.section-header p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
}

.section--dark .section-header p,
.section--gradient .section-header p {
    color: rgba(255,255,255,0.7);
}

/* --- Grid System --- */
.grid {
    display: grid;
    gap: var(--space-xl);
}

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

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(46,134,193,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,134,193,0.4);
    color: var(--text-white);
}

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

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--gradient-cta);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(231,76,60,0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231,76,60,0.4);
    color: var(--text-white);
}

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

.btn-white:hover {
    background: var(--color-off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-primary-dark);
}

.btn-sm { padding: 10px 22px; font-size: var(--text-xs); }
.btn-lg { padding: 18px 40px; font-size: var(--text-base); }
.btn-full { width: 100%; }

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
    font-size: 1.2rem;
}

/* --- Cards --- */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    position: relative;
    border: var(--border-light);
}

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

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.card-body {
    padding: var(--space-xl);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.card-title a {
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.card-title a:hover {
    color: var(--color-primary);
}

.card-text {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: var(--border-light);
}

/* Glass Card */
.card-glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

.section--dark .card-glass {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

/* Service Card */
.service-card {
    padding: var(--space-2xl);
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(46,134,193,0.2);
}

.service-card .icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: rgba(46,134,193,0.1);
    color: var(--color-primary);
    font-size: 1.8rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.service-card:hover .icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: gap var(--transition-fast);
}

.service-card:hover .card-link { gap: var(--space-sm); }

/* Stat Card */
.stat-card {
    text-align: center;
    padding: var(--space-xl);
}

.stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.section--dark .stat-card .stat-number { color: var(--color-primary-light); }
.section--dark .stat-card .stat-label { color: rgba(255,255,255,0.7); }

/* --- Forms --- */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(46,134,193,0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237F8C8D' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-message {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    margin-top: var(--space-md);
}

.form-message--success {
    background: rgba(39,174,96,0.1);
    color: var(--color-success);
    border: 1px solid rgba(39,174,96,0.2);
}

.form-message--error {
    background: rgba(231,76,60,0.1);
    color: var(--color-accent);
    border: 1px solid rgba(231,76,60,0.2);
}

/* --- Header Styles --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header .top-bar {
    background: var(--color-secondary-dark);
    color: var(--text-white);
    font-size: var(--text-xs);
    padding: var(--space-sm) 0;
}

.site-header .top-bar a {
    color: rgba(255,255,255,0.85);
}

.site-header .top-bar a:hover {
    color: var(--color-primary-light);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-xl);
    height: var(--header-height);
    transition: all var(--transition-base);
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
    height: var(--header-height-scrolled);
}

.site-header.scrolled .header-main {
    height: var(--header-height-scrolled);
}

.header-logo img {
    max-height: 45px;
    width: auto;
    transition: max-height var(--transition-base);
}

.site-header.scrolled .header-logo img {
    max-height: 38px;
}

/* Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header-nav > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--transition-fast);
    position: relative;
}

.site-header.transparent .header-nav > li > a {
    color: var(--text-white);
}

.site-header.scrolled .header-nav > li > a {
    color: var(--text-primary);
}

.header-nav > li > a:hover,
.header-nav > li.current-menu-item > a {
    color: var(--color-primary);
}

.header-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--space-md);
    right: var(--space-md);
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.header-nav > li > a:hover::after,
.header-nav > li.current-menu-item > a::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: var(--z-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay form {
    width: 100%;
    max-width: 700px;
    padding: 0 var(--space-xl);
}

.search-overlay input {
    width: 100%;
    padding: var(--space-lg) 0;
    font-size: var(--text-3xl);
    font-family: var(--font-heading);
    color: var(--text-white);
    background: transparent;
    border: none;
    border-bottom: 3px solid rgba(255,255,255,0.3);
    outline: none;
}

.search-overlay input::placeholder {
    color: rgba(255,255,255,0.4);
}

.search-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-overlay);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 90%;
    max-width: 400px;
    background: var(--bg-card);
    z-index: calc(var(--z-overlay) + 1);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    overflow-y: auto;
    padding: var(--space-2xl);
}

.mobile-menu-overlay.active + .mobile-menu-panel,
.mobile-menu-panel.active {
    transform: translateX(0);
}

.mobile-nav a {
    display: block;
    padding: var(--space-md) 0;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-primary);
    border-bottom: var(--border-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: var(--space-sm);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.site-header.transparent .hamburger span {
    background: var(--text-white);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
    color: var(--text-white);
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(46,134,193,0.3) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(231,76,60,0.15) 0%, transparent 40%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    color: var(--text-white);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-primary-light), #64B5F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-2xl);
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--text-white);
}

.hero-stat .label {
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
}

/* --- Trust Bar --- */
.trust-bar {
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl) 0;
    position: relative;
    z-index: 2;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item .trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46,134,193,0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
}

/* --- Process Section --- */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.process-step:last-child { margin-bottom: 0; }

.process-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: var(--text-xl);
    border-radius: var(--radius-full);
    position: relative;
    z-index: 1;
}

.process-step:not(:last-child) .process-number::after {
    content: '';
    position: absolute;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + var(--space-2xl) - 56px);
    background: rgba(46,134,193,0.2);
}

.section--dark .process-step:not(:last-child) .process-number::after {
    background: rgba(46,134,193,0.3);
}

.process-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-sm);
}

.section--dark .process-content h3 { color: var(--text-white); }
.section--dark .process-content p { color: rgba(255,255,255,0.7); }

/* --- Testimonials --- */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card);
    border: var(--border-light);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: var(--space-md);
    right: var(--space-xl);
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(46,134,193,0.1);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--color-warning);
    margin-bottom: var(--space-md);
    font-size: 1rem;
}

.testimonial-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: 700;
    font-size: var(--text-lg);
}

.testimonial-info .name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--text-sm);
}

.testimonial-info .role {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* --- FAQ --- */
.faq-item {
    border: var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--bg-card);
    transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--text-primary);
    gap: var(--space-md);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-heading);
}

.faq-question .faq-toggle {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(46,134,193,0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 1.2rem;
    transition: all var(--transition-base);
}

.faq-item.active .faq-question .faq-toggle {
    background: var(--color-primary);
    color: var(--text-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-answer-inner {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* --- Footer --- */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
}

.footer-cta {
    background: var(--gradient-primary);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.footer-cta h2 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.footer-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: var(--space-xl);
}

.footer-main {
    padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: var(--space-2xl);
}

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
    margin: var(--space-md) 0 var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--color-primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-widget h4 {
    color: var(--text-white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-md);
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: var(--space-sm);
}

.footer-newsletter .form-control {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--text-white);
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

.footer-newsletter .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(46,134,193,0.15);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: var(--text-sm);
    color: rgba(255,255,255,0.6);
}

.footer-contact-item i {
    color: var(--color-primary-light);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-xl) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
}

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

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    z-index: var(--z-fixed);
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn--whatsapp { background: #25D366; }
.floating-btn--phone { background: var(--color-primary); }
.floating-btn--top {
    background: var(--color-secondary);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.floating-btn--top.visible {
    opacity: 1;
    visibility: visible;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: var(--text-xs);
}

.breadcrumbs-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.breadcrumbs-list li {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.breadcrumbs-list a {
    color: var(--text-muted);
}

.breadcrumbs-list a:hover {
    color: var(--color-primary);
}

.breadcrumbs-list .separator {
    color: var(--text-muted);
    font-size: 0.7em;
}

.breadcrumbs-list .current {
    color: var(--text-primary);
    font-weight: 500;
}

/* --- Page Header Banner --- */
.page-header-banner {
    background: var(--gradient-hero);
    color: var(--text-white);
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(46,134,193,0.2) 0%, transparent 50%);
}

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

.page-header-banner h1 {
    color: var(--text-white);
    margin-bottom: var(--space-md);
}

.page-header-banner p {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-lg);
    max-width: 600px;
}

.page-header-banner .breadcrumbs {
    margin-bottom: var(--space-lg);
}

.page-header-banner .breadcrumbs-list a,
.page-header-banner .breadcrumbs-list .separator {
    color: rgba(255,255,255,0.5);
}

.page-header-banner .breadcrumbs-list .current {
    color: rgba(255,255,255,0.9);
}

/* --- Sidebar --- */
.content-sidebar-wrap {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-2xl);
}

.content-sidebar-wrap.no-sidebar {
    grid-template-columns: 1fr;
}

.sidebar .widget {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
}

.sidebar .widget-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-primary);
}

.sidebar .widget ul li {
    margin-bottom: var(--space-sm);
}

.sidebar .widget ul li a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    transition: all var(--transition-fast);
}

.sidebar .widget ul li a:hover {
    color: var(--color-primary);
    padding-left: var(--space-sm);
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-3xl);
}

.pagination a, .pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    border: var(--border-light);
}

.pagination a {
    color: var(--text-secondary);
    background: var(--bg-card);
}

.pagination a:hover {
    background: var(--color-primary);
    color: var(--text-white);
    border-color: var(--color-primary);
}

.pagination .current {
    background: var(--color-primary);
    color: var(--text-white);
    border-color: var(--color-primary);
}

/* --- WordPress Defaults --- */
.alignleft { float: left; margin-right: var(--space-xl); margin-bottom: var(--space-md); }
.alignright { float: right; margin-left: var(--space-xl); margin-bottom: var(--space-md); }
.aligncenter { display: block; margin: var(--space-xl) auto; }
.wp-caption { max-width: 100%; margin-bottom: var(--space-md); }
.wp-caption-text { font-size: var(--text-sm); color: var(--text-muted); text-align: center; padding: var(--space-sm); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }

.entry-content p { margin-bottom: var(--space-lg); }
.entry-content h2 { margin-top: var(--space-2xl); }
.entry-content h3 { margin-top: var(--space-xl); }
.entry-content ul, .entry-content ol { margin: var(--space-md) 0 var(--space-lg) var(--space-xl); }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: var(--space-sm); color: var(--text-secondary); }
.entry-content img { border-radius: var(--radius-md); }
.entry-content a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--color-primary-dark); }
.entry-content table { width: 100%; border-collapse: collapse; margin: var(--space-xl) 0; }
.entry-content th, .entry-content td { padding: var(--space-md); border: 1px solid var(--border-color); text-align: left; }
.entry-content th { background: var(--bg-section); font-weight: 600; }
.entry-content pre { background: var(--bg-dark); color: #ABB2BF; padding: var(--space-xl); border-radius: var(--radius-md); overflow-x: auto; margin: var(--space-xl) 0; }
.entry-content code { font-family: var(--font-mono); font-size: 0.9em; background: var(--bg-section); padding: 2px 6px; border-radius: 4px; }
.entry-content pre code { background: transparent; padding: 0; }

/* --- Archive / Blog Grid --- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.post-card .card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(46,134,193,0.1);
    color: var(--color-primary);
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
}

.post-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    margin-top: var(--space-md);
}

/* --- 404 Page --- */
.error-404-content {
    text-align: center;
    padding: var(--space-5xl) 0;
    max-width: 600px;
    margin: 0 auto;
}

.error-404-content .error-code {
    font-family: var(--font-heading);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-lg);
}

/* --- Loading Spinner --- */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* --- Utilities --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--color-primary) !important; }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }
.bg-primary { background: var(--color-primary) !important; }
.bg-dark { background: var(--bg-dark) !important; }
.bg-section { background: var(--bg-section) !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }
.mb-xl { margin-bottom: var(--space-xl) !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
