/*
Theme Name: Echoes
Description: Modern Corporate WordPress Theme by Fixit.
Template: Fixit
Version: 1.1.0
Author: Fixit E.E.
Theme URI: https://echoes.devfixit.gr/
Author URI: https://www.fixit.gr/
Text Domain: echoes
License: Proprietary
*/

:root {
    --e-primary: #2563EB;
    --e-primary-light: #3B82F6;
    --e-primary-dark: #1D4ED8;
    --e-primary-50: #EFF6FF;
    --e-primary-100: #DBEAFE;
    --e-accent: #6366F1;
    --e-accent-light: #818CF8;
    --e-dark: #0F172A;
    --e-dark-700: #1E293B;
    --e-dark-600: #334155;
    --e-gray-50: #F8FAFC;
    --e-gray-100: #F1F5F9;
    --e-gray-200: #E2E8F0;
    --e-gray-300: #CBD5E1;
    --e-gray-400: #94A3B8;
    --e-gray-500: #64748B;
    --e-gray-600: #475569;
    --e-gray-700: #334155;
    --e-white: #FFFFFF;
    --e-success: #22C55E;
    --e-gradient: linear-gradient(135deg, #6366F1 0%, #EC4899 50%, #F97316 100%);
    --e-font: 'Inter', -apple-system, sans-serif;
    --e-radius: 8px;
    --e-radius-lg: 12px;
    --e-radius-xl: 16px;
    --e-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --e-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --e-shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --e-shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --e-shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);
    --e-transition: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--e-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--e-gray-600);
    background: var(--e-white);
    -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--e-font);
    font-weight: 700;
    color: var(--e-dark);
    line-height: 1.2;
}
h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.02em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

a { color: var(--e-primary); text-decoration: none; transition: var(--e-transition); }
a:hover { color: var(--e-primary-dark); }
img { max-width: 100%; height: auto; }

.e-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.e-container-sm { max-width: 900px; margin: 0 auto; padding: 0 24px; }

.e-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; font-family: var(--e-font); font-weight: 600; font-size: 14px;
    border-radius: var(--e-radius); cursor: pointer; transition: var(--e-transition);
    border: none; text-decoration: none;
}
.e-btn-primary { background: var(--e-primary); color: var(--e-white); }
.e-btn-primary:hover { background: var(--e-primary-dark); color: var(--e-white); box-shadow: var(--e-shadow-md); }
.e-btn-outline { background: transparent; color: var(--e-primary); border: 1.5px solid var(--e-primary); }
.e-btn-outline:hover { background: var(--e-primary); color: var(--e-white); }
.e-btn-white { background: var(--e-white); color: var(--e-dark); }
.e-btn-white:hover { background: var(--e-gray-100); color: var(--e-dark); }
.e-btn-sm { padding: 8px 16px; font-size: 13px; }
.e-btn-lg { padding: 14px 28px; font-size: 15px; }

.e-section { padding: 96px 0; }
.e-section-sm { padding: 64px 0; }
.e-section-gray { background: var(--e-gray-50); }
.e-section-dark { background: var(--e-dark); color: var(--e-gray-300); }
.e-section-dark h2, .e-section-dark h3 { color: var(--e-white); }
.e-section-blue { background: var(--e-primary-50); }

.e-section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.e-section-header .e-label {
    display: inline-block; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--e-primary); margin-bottom: 12px;
}
.e-section-header h2 { margin-bottom: 16px; }
.e-section-header p { font-size: 16px; color: var(--e-gray-500); }

/* HEADER */
.e-header {
    background: var(--e-white);
    border-bottom: 1px solid var(--e-gray-200);
    position: sticky; top: 0; z-index: 1000;
}
.e-header .e-container {
    display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.e-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 20px; color: var(--e-dark); }
.e-logo img { height: 32px; width: auto; }
.e-logo-icon {
    width: 32px; height: 32px; background: var(--e-primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.e-logo-icon svg { width: 18px; height: 18px; fill: white; }

.e-nav { display: flex; align-items: center; gap: 8px; list-style: none; }
.e-nav a {
    font-size: 14px; font-weight: 500; color: var(--e-gray-600);
    padding: 8px 16px; border-radius: var(--e-radius); transition: var(--e-transition);
}
.e-nav a:hover, .e-nav .current-menu-item a {
    color: var(--e-primary); background: var(--e-primary-50);
}
.e-header-cta { margin-left: 16px; }

.e-mobile-toggle {
    display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.e-mobile-toggle span {
    display: block; width: 20px; height: 2px; background: var(--e-dark); margin: 4px 0; transition: var(--e-transition);
}

/* HERO */
.e-hero {
    padding: 80px 0 96px;
    background: var(--e-white);
}
.e-hero .e-container {
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.e-hero-content h1 { margin-bottom: 20px; font-size: 3.25rem; line-height: 1.1; }
.e-hero-content p { font-size: 17px; color: var(--e-gray-500); margin-bottom: 32px; line-height: 1.7; }
.e-hero-buttons { display: flex; gap: 12px; }
.e-hero-visual { position: relative; }
.e-hero-visual img { border-radius: var(--e-radius-xl); box-shadow: var(--e-shadow-xl); }
.e-hero-gradient {
    width: 100%; height: 400px;
    background: var(--e-gradient);
    border-radius: var(--e-radius-xl);
    position: relative; overflow: hidden;
}

/* LOGO CLOUD */
.e-logos { padding: 48px 0; border-bottom: 1px solid var(--e-gray-200); }
.e-logos p { text-align: center; font-size: 14px; color: var(--e-gray-400); margin-bottom: 24px; }
.e-logos-row {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
    opacity: 0.5; filter: grayscale(1);
}
.e-logos-row img { height: 24px; width: auto; }
.e-logos-row span { font-size: 18px; font-weight: 700; color: var(--e-gray-400); }

/* HOW WE DO */
.e-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.e-split-reverse { direction: rtl; }
.e-split-reverse > * { direction: ltr; }
.e-split-content .e-label {
    display: inline-block; font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--e-primary); margin-bottom: 12px;
}
.e-split-content h2 { margin-bottom: 16px; }
.e-split-content p { color: var(--e-gray-500); margin-bottom: 16px; font-size: 15px; line-height: 1.7; }
.e-split-image img { border-radius: var(--e-radius-xl); box-shadow: var(--e-shadow-lg); width: 100%; }

/* SERVICES GRID */
.e-services-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.e-service-card {
    background: var(--e-white); padding: 28px 20px; border-radius: var(--e-radius-lg);
    border: 1px solid var(--e-gray-200); text-align: center; transition: var(--e-transition);
    cursor: pointer;
}
.e-service-card:hover { border-color: var(--e-primary); box-shadow: var(--e-shadow-md); transform: translateY(-2px); }
.e-service-card.active { border-color: var(--e-primary); background: var(--e-primary-50); }
.e-service-icon {
    width: 48px; height: 48px; margin: 0 auto 16px;
    background: var(--e-primary-50); border-radius: var(--e-radius);
    display: flex; align-items: center; justify-content: center;
    color: var(--e-primary); font-size: 22px;
}
.e-service-card h4 { font-size: 14px; margin-bottom: 8px; }
.e-service-card p { font-size: 12px; color: var(--e-gray-400); line-height: 1.5; }

/* PRODUCTS OVERVIEW */
.e-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.e-product-card {
    background: var(--e-white); border-radius: var(--e-radius-lg);
    overflow: hidden; box-shadow: var(--e-shadow); transition: var(--e-transition);
}
.e-product-card:hover { box-shadow: var(--e-shadow-lg); transform: translateY(-4px); }
.e-product-card-img { height: 200px; overflow: hidden; }
.e-product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--e-transition); }
.e-product-card:hover .e-product-card-img img { transform: scale(1.05); }
.e-product-card-body { padding: 24px; }
.e-product-card-body h4 { margin-bottom: 8px; }
.e-product-card-body p { font-size: 14px; color: var(--e-gray-500); }

/* PRICING */
.e-pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.e-pricing-card {
    background: var(--e-white); border-radius: var(--e-radius-xl);
    padding: 40px; border: 1px solid var(--e-gray-200);
}
.e-pricing-card h3 { margin-bottom: 8px; }
.e-pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--e-dark); margin: 16px 0; }
.e-pricing-card .price span { font-size: 16px; font-weight: 400; color: var(--e-gray-400); }
.e-pricing-features { list-style: none; margin-bottom: 24px; }
.e-pricing-features li {
    padding: 10px 0; border-bottom: 1px solid var(--e-gray-100);
    font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.e-pricing-features li::before { content: '✓'; color: var(--e-primary); font-weight: bold; }

/* DISCOVER / TAILORED */
.e-discover { text-align: center; }
.e-discover-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.e-discover-tab {
    padding: 8px 20px; border-radius: 20px; font-size: 14px; font-weight: 500;
    color: var(--e-gray-500); background: var(--e-gray-100); cursor: pointer; transition: var(--e-transition);
}
.e-discover-tab.active, .e-discover-tab:hover { background: var(--e-primary); color: var(--e-white); }

/* STRATEGY CARDS */
.e-strategy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.e-strategy-card {
    padding: 32px; border-radius: var(--e-radius-xl); color: var(--e-white); position: relative; overflow: hidden;
    min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end;
}
.e-strategy-card h3 { color: var(--e-white); margin-bottom: 8px; font-size: 1.25rem; }
.e-strategy-card p { font-size: 14px; opacity: 0.9; }
.e-strategy-card:nth-child(1) { background: linear-gradient(135deg, #3B82F6, #1D4ED8); }
.e-strategy-card:nth-child(2) { background: linear-gradient(135deg, #EC4899, #BE185D); }
.e-strategy-card:nth-child(3) { background: linear-gradient(135deg, #F97316, #C2410C); }

/* BLOG */
.e-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.e-post-card { background: var(--e-white); border-radius: var(--e-radius-lg); overflow: hidden; box-shadow: var(--e-shadow); transition: var(--e-transition); }
.e-post-card:hover { box-shadow: var(--e-shadow-lg); transform: translateY(-4px); }
.e-post-card-img { height: 200px; overflow: hidden; }
.e-post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.e-post-card-body { padding: 24px; }
.e-post-meta { font-size: 13px; color: var(--e-gray-400); margin-bottom: 8px; }
.e-post-card-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.e-post-card-body h3 a { color: var(--e-dark); }
.e-post-card-body h3 a:hover { color: var(--e-primary); }
.e-read-more { font-size: 14px; font-weight: 600; color: var(--e-primary); display: inline-flex; align-items: center; gap: 4px; }

/* CTA BANNER */
.e-cta-banner {
    background: var(--e-dark); border-radius: var(--e-radius-xl);
    padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.e-cta-banner h2 { color: var(--e-white); margin-bottom: 16px; }
.e-cta-banner p { color: var(--e-gray-400); margin-bottom: 24px; }

/* FEATURES ROW */
.e-features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.e-feature-card {
    background: var(--e-white); padding: 32px; border-radius: var(--e-radius-xl);
    border: 1px solid var(--e-gray-200);
}
.e-feature-icon {
    width: 48px; height: 48px; background: var(--e-primary-50); border-radius: var(--e-radius);
    display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
    color: var(--e-primary); font-size: 20px;
}
.e-feature-card h4 { margin-bottom: 8px; }
.e-feature-card p { font-size: 14px; color: var(--e-gray-500); }

/* NEWSLETTER */
.e-newsletter { padding: 48px 0; border-top: 1px solid var(--e-gray-200); }
.e-newsletter .e-container { display: flex; justify-content: space-between; align-items: center; }
.e-newsletter-form { display: flex; gap: 8px; }
.e-newsletter-form input {
    padding: 12px 16px; border: 1px solid var(--e-gray-200); border-radius: var(--e-radius);
    font-size: 14px; width: 280px; font-family: var(--e-font);
}
.e-newsletter-form input:focus { outline: none; border-color: var(--e-primary); }

/* CONTACT */
.e-contact-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; }
.e-contact-hero-img { overflow: hidden; }
.e-contact-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.e-contact-form-wrap { padding: 48px 64px; display: flex; flex-direction: column; justify-content: center; }
.e-contact-form-wrap h2 { margin-bottom: 8px; }
.e-contact-form-wrap > p { color: var(--e-gray-500); margin-bottom: 32px; font-size: 15px; }

.e-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.e-form-group { margin-bottom: 16px; }
.e-form-group label { display: block; font-size: 13px; font-weight: 500; color: var(--e-gray-700); margin-bottom: 6px; }
.e-form-group input, .e-form-group textarea, .e-form-group select {
    width: 100%; padding: 10px 14px; border: 1px solid var(--e-gray-200);
    border-radius: var(--e-radius); font-size: 14px; font-family: var(--e-font);
    transition: var(--e-transition); background: var(--e-white);
}
.e-form-group input:focus, .e-form-group textarea:focus {
    outline: none; border-color: var(--e-primary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.e-form-group textarea { height: 120px; resize: vertical; }

/* FOOTER */
.e-footer { background: var(--e-white); border-top: 1px solid var(--e-gray-200); padding: 64px 0 0; }
.e-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.e-footer h4 { font-size: 14px; color: var(--e-dark); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.e-footer-links { list-style: none; }
.e-footer-links li { margin-bottom: 8px; }
.e-footer-links a { font-size: 14px; color: var(--e-gray-500); }
.e-footer-links a:hover { color: var(--e-primary); }
.e-footer-links .e-hiring { display: inline-block; background: var(--e-success); color: var(--e-white); padding: 2px 8px; border-radius: 10px; font-size: 11px; font-weight: 600; margin-left: 4px; }
.e-footer-bottom {
    border-top: 1px solid var(--e-gray-200); padding: 20px 0;
    display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--e-gray-400);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .e-hero .e-container, .e-split, .e-contact-hero { grid-template-columns: 1fr; }
    .e-hero-visual { display: none; }
    .e-services-grid { grid-template-columns: repeat(3, 1fr); }
    .e-footer-grid { grid-template-columns: repeat(3, 1fr); }
    .e-pricing { grid-template-columns: 1fr; }
    .e-cta-banner { grid-template-columns: 1fr; padding: 48px; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    .e-section { padding: 64px 0; }
    .e-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--e-white); flex-direction: column; padding: 16px; box-shadow: var(--e-shadow-lg); }
    .e-nav.active { display: flex; }
    .e-mobile-toggle { display: block; }
    .e-header-cta { display: none; }
    .e-services-grid, .e-products-grid, .e-strategy-grid, .e-blog-grid, .e-features-row { grid-template-columns: 1fr; }
    .e-footer-grid { grid-template-columns: 1fr 1fr; }
    .e-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .e-newsletter .e-container { flex-direction: column; gap: 16px; text-align: center; }
    .e-contact-form-wrap { padding: 32px 24px; }
    .e-form-row { grid-template-columns: 1fr; }
    .e-logos-row { gap: 24px; }
}
