/* ═══════════════════════════════════════════════════════════
   AISE Landing Page Stylesheet
   Αυτόματο brand από Elementor — override με CSS variables
   ═══════════════════════════════════════════════════════════ */

/* ── Reset για landing template ── */
.aise-landing-wrap *,
.aise-landing-wrap *::before,
.aise-landing-wrap *::after {
    box-sizing: border-box;
}

.aise-landing-wrap {
    font-family: var(--aise-font-body);
    color: var(--aise-text);
    line-height: 1.75;
    background: var(--aise-bg);
}

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
.aise-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--aise-hero-gradient, var(--aise-primary));
}

.aise-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Overlay σκοτεινό για readability */
.aise-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.45) 55%,
        rgba(0,0,0,0.20) 100%
    );
    z-index: 1;
}

/* Gradient fallback όταν δεν υπάρχει εικόνα */
.aise-hero--no-image .aise-hero__bg {
    background: var(--aise-hero-gradient);
}
.aise-hero--no-image .aise-hero__overlay {
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.35) 0%,
        rgba(0,0,0,0.10) 100%
    );
}

.aise-hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 80px 48px;
    color: #fff;
}

.aise-hero__eyebrow {
    display: inline-block;
    font-family: var(--aise-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aise-accent);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.aise-hero h1 {
    font-family: var(--aise-font-heading);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.aise-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.88);
    margin: 0 0 36px;
    max-width: 560px;
    line-height: 1.65;
}

.aise-hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.aise-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--aise-font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--aise-radius);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.aise-btn--primary {
    background: var(--aise-accent);
    color: var(--aise-btn-text);
    box-shadow: 0 4px 16px rgba(0,0,0,0.20);
}
.aise-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    filter: brightness(1.08);
    color: var(--aise-btn-text);
    text-decoration: none;
}

.aise-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}
.aise-btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
    text-decoration: none;
}

.aise-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   MAIN CONTENT AREA
───────────────────────────────────────── */
.aise-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
}

.aise-content-section {
    padding: 80px 0;
}

.aise-content-section + .aise-content-section {
    border-top: 1px solid rgba(0,0,0,0.06);
}

/* Trust bar */
.aise-trust-bar {
    background: var(--aise-accent-light, #f0f4ff);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 16px 0;
}

.aise-trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 32px;
    align-items: center;
    justify-content: center;
}

.aise-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--aise-text);
}

.aise-trust-item svg {
    color: var(--aise-accent);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────
   CONTENT GRID (prose + sidebar)
───────────────────────────────────────── */
.aise-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.aise-prose h2 {
    font-family: var(--aise-font-heading);
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
    font-weight: 700;
    color: var(--aise-primary);
    margin: 48px 0 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.aise-prose h2:first-child {
    margin-top: 0;
}

.aise-prose p {
    margin: 0 0 20px;
    font-size: 1.05rem;
    color: var(--aise-text);
}

.aise-prose a {
    color: var(--aise-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ─────────────────────────────────────────
   SIDEBAR / CONTACT BOX
───────────────────────────────────────── */
.aise-sidebar {
    position: sticky;
    top: 28px;
}

.aise-contact-card {
    background: var(--aise-primary);
    color: #fff;
    border-radius: calc(var(--aise-radius) * 1.5);
    padding: 36px;
    box-shadow: var(--aise-shadow-lg);
    overflow: hidden;
    position: relative;
}

/* Decorative blob */
.aise-contact-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--aise-accent);
    opacity: 0.12;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    pointer-events: none;
}

.aise-contact-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--aise-accent);
    margin-bottom: 12px;
}

.aise-contact-card__title {
    font-family: var(--aise-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.aise-contact-card__sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 28px;
}

.aise-phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.15s;
    line-height: 1;
}
.aise-phone-link:hover {
    color: var(--aise-accent);
    text-decoration: none;
}
.aise-phone-link svg {
    background: var(--aise-accent);
    border-radius: 50%;
    padding: 8px;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
}

.aise-address-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    line-height: 1.5;
}
.aise-address-line svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.7;
}

.aise-contact-card .aise-btn--primary {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

/* ─────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────── */
.aise-faq-section {
    background: var(--aise-accent-light, #f8f9ff);
    padding: 80px 0;
}

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

.aise-section-header h2 {
    font-family: var(--aise-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--aise-primary);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.aise-section-header p {
    color: var(--aise-text-light);
    font-size: 1rem;
    margin: 0;
}

.aise-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aise-faq-item {
    background: #fff;
    border-radius: var(--aise-radius);
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.aise-faq-item:hover {
    box-shadow: var(--aise-shadow);
}

.aise-faq-item summary {
    list-style: none;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--aise-primary);
    user-select: none;
    transition: color 0.15s;
}
.aise-faq-item summary::-webkit-details-marker { display: none; }

.aise-faq-item[open] summary {
    color: var(--aise-accent);
}

.aise-faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--aise-accent-light, #f0f4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s, background 0.15s;
}

.aise-faq-item[open] .aise-faq-icon {
    transform: rotate(45deg);
    background: var(--aise-accent);
    color: var(--aise-btn-text);
}

.aise-faq-body {
    padding: 0 24px 20px;
    color: var(--aise-text);
    font-size: 0.97rem;
    line-height: 1.75;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}

/* ─────────────────────────────────────────
   SCHEMA / BREADCRUMBS
───────────────────────────────────────── */
.aise-breadcrumb {
    padding: 14px 0;
    font-size: 0.82rem;
    color: var(--aise-text-light);
}
.aise-breadcrumb a {
    color: var(--aise-text-light);
    text-decoration: none;
}
.aise-breadcrumb a:hover {
    color: var(--aise-accent);
}
.aise-breadcrumb span {
    margin: 0 6px;
    opacity: 0.4;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 900px) {
    .aise-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .aise-sidebar {
        position: static;
    }
    .aise-hero__content {
        padding: 60px 24px;
    }
    .aise-hero h1 {
        font-size: 2rem;
    }
    .aise-content-section {
        padding: 56px 0;
    }
    .aise-faq-section {
        padding: 56px 0;
    }
}

@media (max-width: 560px) {
    .aise-hero {
        min-height: 420px;
    }
    .aise-hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .aise-btn {
        width: 100%;
        justify-content: center;
    }
    .aise-trust-bar__inner {
        flex-direction: column;
        gap: 8px;
    }
    .aise-contact-card {
        padding: 24px;
    }
}
