/* ========================================
   Bliouras Driving School - Premium Design
   Minimal, Clean, Professional
   ======================================== */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #dd142b;
    --secondary-dark: #c41225;
    
    /* Neutral Colors */
    --text-dark: #1a1a1a;
    --text-medium: #404040;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    
    /* Shadows - Softer & More Elegant */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    
    /* Spacing */
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: all 0.15s ease;
    --transition: all 0.25s ease;
    --transition-slow: all 0.4s ease;
}

/* Typography - Clean & Readable */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    line-height: 1.7;
    color: var(--text-medium);
}

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

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

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

/* ========================================
   HEADER - Clean & Minimal
   ======================================== */

.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Logo - Elegant */
.site-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
}

.site-logo:hover img {
    opacity: 0.8;
}

/* Navigation - Minimal & Clean */
.main-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--text-dark);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger-icon span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Social Icons - Minimal */
.header-social,
.footer-social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-medium);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.social-icon:hover,
.social-icon:focus {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   FOOTER - Clean & Organized
   ======================================== */

.site-footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #e5e7eb;
    padding: 4rem 0 0;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Footer Contact */
.footer-contact address {
    font-style: normal;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #9ca3af;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--secondary-color);
}

.footer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 0.5rem;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-map-link:hover {
    color: var(--bg-white);
    transform: translateX(3px);
}

.footer-phones {
    margin-top: 2rem;
}

.footer-phones p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-phones svg {
    color: var(--secondary-color);
}

.footer-phones a {
    color: #e5e7eb;
    font-weight: 500;
    font-size: 1.05rem;
}

.footer-phones a:hover {
    color: var(--secondary-color);
}

/* Footer Map */
.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
}

/* Footer Social */
.footer-social-icons {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.footer-social .social-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--bg-white);
}

.footer-links-title {
    font-size: 1.125rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: #9ca3af;
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.75rem 0;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 1fr;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-credit a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-credit a:hover {
    color: var(--bg-white);
}

/* ========================================
   MAIN CONTENT
   ======================================== */

.site-main {
    min-height: 70vh;
    background: var(--bg-white);
}

/* ========================================
   VIBER FLOATING BUTTON
   ======================================== */

.viber-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7360f2 0%, #8b75f5 100%);
    box-shadow: 0 4px 20px rgba(115, 96, 242, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: 3px solid var(--bg-white);
    animation: viber-pulse 2s infinite;
}

.viber-float-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(115, 96, 242, 0.6);
}

.viber-float-button svg {
    width: 32px;
    height: 32px;
    fill: var(--bg-white);
}

/* Viber Pulse Animation */
@keyframes viber-pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(115, 96, 242, 0.4), 0 0 0 0 rgba(115, 96, 242, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(115, 96, 242, 0.4), 0 0 0 15px rgba(115, 96, 242, 0);
    }
}

/* Viber Tooltip */
.viber-float-button::before {
    content: 'Στείλε μας μήνυμα';
    position: absolute;
    right: 75px;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.viber-float-button::after {
    content: '';
    position: absolute;
    right: 65px;
    border: 6px solid transparent;
    border-left-color: var(--text-dark);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.viber-float-button:hover::before,
.viber-float-button:hover::after {
    opacity: 1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .header-container {
        padding: 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        flex-wrap: wrap;
        padding: 0.875rem 1rem;
    }

    .site-logo {
        order: 1;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .main-navigation {
        order: 4;
        width: 100%;
        flex: none;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.05rem;
    }

    .nav-menu a::after {
        display: none;
    }

    .header-actions {
        order: 2;
        gap: 0.5rem;
    }

    .header-social {
        gap: 0.5rem;
    }

    .social-icon {
        width: 38px;
        height: 38px;
    }

    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Viber Button Mobile */
    .viber-float-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .viber-float-button svg {
        width: 28px;
        height: 28px;
    }
    
    .viber-float-button::before {
        display: none;
    }
    
    .viber-float-button::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 42px;
    }

    .header-container {
        padding: 0.75rem;
        gap: 1rem;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
}

/* ========================================
   CONTACT PAGE - Premium Design
   ======================================== */

.contact-page-wrapper {
    background: var(--bg-white);
    padding: 5rem 0;
    min-height: 70vh;
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Header */
.contact-header {
    text-align: center;
    margin-bottom: 5rem;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Two Column Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}

/* Info Cards - Clean & Minimal */
.info-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.info-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.info-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.info-card h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

/* Hours Card */
.hours-intro {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.hours-row:hover {
    background: #f1f5f9;
    border-color: var(--border-color);
}

.hours-row.highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 3px solid var(--primary-color);
    border-color: var(--primary-color);
}

.hours-row.highlight:hover {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.hours-row .day {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hours-row .time {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Contact Details Card */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary-color);
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.phone-number {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-fast);
}

.phone-number:hover {
    color: var(--secondary-color);
}

/* CTA Button - Premium */
.cta-button-wrapper {
    margin-top: 2.5rem;
}

.cta-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: var(--bg-white);
    padding: 1.125rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(221, 20, 43, 0.25);
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    border: none;
    cursor: pointer;
}

.cta-button-primary:hover {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #a00f1e 100%);
    box-shadow: 0 6px 20px rgba(221, 20, 43, 0.35);
    transform: translateY(-2px);
    color: var(--bg-white);
}

/* Map Card (Premium Responsive) */
.map-embed {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);

    /* κάνει το map responsive χωρίς fixed width/height */
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 100%;
}

.map-embed iframe {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}


.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: 1rem;
}

.map-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* Contact Form - Clean Design */
.form-description {
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-form-wrapper {
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.form-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 1.125rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.form-submit-button:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transform: translateY(-2px);
}

/* FAQ Accordion - Minimal & Clean */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
    background: var(--bg-white);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question[aria-expanded="true"] {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.75rem 1.5rem 1.75rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

/* Contact Messages - Clean */
.contact-message {
    padding: 1.25rem 1.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 2.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid;
}

.contact-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #10b981;
}

.contact-success::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.125rem;
}

.contact-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #ef4444;
}

.contact-error::before {
    content: '✕';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.125rem;
}

/* ========================================
   CONTACT PAGE RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 3rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-header h1 {
        font-size: 2.25rem;
    }

    .contact-subtitle {
        font-size: 1.05rem;
    }

    .info-card {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
        padding: 1.125rem 1.25rem;
    }

    .hours-row .time {
        font-size: 0.875rem;
    }

    .cta-button-primary {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .contact-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 1.875rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card .card-icon {
        width: 50px;
        height: 50px;
    }

    .info-card h2 {
        font-size: 1.375rem;
    }

    .faq-question {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
}








/* ========================================
   REVIEWS PAGE — COMPLETE REDESIGN
   Αντικατάστησε ΟΛΟ το block από γραμμή 1200 ως το τέλος του αρχείου
   ======================================== */

/* ========================================
   REVIEWS PAGE
   ======================================== */

.reviews-page-wrapper {
  background: var(--bg-white);
  padding: 5rem 0 7rem;
  min-height: 70vh;
}

.reviews-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HERO ── */
.reviews-hero {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.reviews-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ── KPIs ── */
.reviews-kpis {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.kpi {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 2rem;
  box-shadow: var(--shadow-sm);
  min-width: 160px;
  flex: 1 1 160px;
  max-width: 220px;
  text-align: center;
  transition: var(--transition);
}

.kpi:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.kpi-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.kpi-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-left: 0.2rem;
}

.kpi-label {
  margin-top: 0.4rem;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── CTAs HERO ── */
.reviews-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: var(--bg-white);
  box-shadow: 0 4px 16px rgba(221, 20, 43, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: var(--bg-white);
  box-shadow: 0 8px 24px rgba(221, 20, 43, 0.3);
}

.btn-secondary {
  background: var(--bg-white);
  border-color: var(--border-color);
  color: var(--text-dark);
}

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

/* ── MAIN LAYOUT ──
   Desktop: αριστερά reviews grid, δεξιά sticky sidebar
   Το sidebar δεν "κολλάει" πλέον αριστερά
── */
.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

/* ── SECTION TITLE ── */
.section-title {
  margin-bottom: 1.5rem;
}

.section-title h2 {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.section-title p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── REVIEW GRID ──
   2 στήλες desktop, 1 στήλη mobile
── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

/* ── REVIEW CARD ── */
.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.375rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.3);
}

.review-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.review-avatar {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-time {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1px;
}

.review-rating {
  margin-top: 2px;
  flex-shrink: 0;
}

.review-stars {
  display: inline-flex;
  gap: 2px;
}

.review-stars .star {
  fill: none;
  stroke: none;
}

.review-stars .star path {
  fill: #e5e7eb;
}

.review-stars .star.is-filled path {
  fill: #f59e0b;
}

.review-text {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.92rem;
  flex: 1;

  /* Περικόπτει μεγάλα κείμενα σε 5 γραμμές */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-actions {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-color);
}

.review-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.review-link:hover {
  color: var(--secondary-color);
}

/* ── THANKS BLOCK ── */
.reviews-thanks {
  margin-top: 1.5rem;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--bg-light) 0%, #eef3ff 100%);
  border: 1px solid var(--border-color);
  text-align: center;
}

.reviews-thanks h3 {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.reviews-thanks p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.reviews-thanks img {
  margin-top: 1.25rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  max-height: 260px;
}

/* ── SIDEBAR / PROOF ──
   Sticky σε desktop, κανονικό flow σε mobile
── */
.reviews-proof {
  /* Sticky sidebar — κολλάει κάτω από το header */
  position: sticky;
  top: 90px;
}

.reviews-google-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.reviews-google-card h2 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.reviews-google-card .muted {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

/* Google Map embed */
.google-embed {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.google-embed iframe {
  display: block;
  width: 100%;
}

/* Sidebar CTAs — stacked */
.reviews-ctas.small {
  flex-direction: column;
  gap: 0.6rem;
}

.reviews-ctas.small .btn {
  width: 100%;
  justify-content: center;
}

/* ── GOOGLE RATING BADGE (optional) ──
   Μικρό badge με τα αστέρια πάνω από τον χάρτη
── */
.google-rating-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  margin-bottom: 1.25rem;
}

.google-rating-badge .badge-score {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.google-rating-badge .badge-info {
  flex: 1;
}

.google-rating-badge .badge-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.google-rating-badge .badge-stars svg path {
  fill: #f59e0b;
}

.google-rating-badge .badge-count {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.google-logo {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.google-logo .g-blue   { color: #4285F4; }
.google-logo .g-red    { color: #EA4335; }
.google-logo .g-yellow { color: #FBBC05; }
.google-logo .g-green  { color: #34A853; }

/* ========================================
   REVIEWS PAGE — RESPONSIVE
   ======================================== */

/* ── Tablet: 1024px ── */
@media (max-width: 1024px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Sidebar πάει κάτω, δεν είναι πλέον sticky */
  .reviews-proof {
    position: static;
  }

  /* Google card παίρνει max-width για να μην τεντώνεται */
  .reviews-google-card {
    max-width: 640px;
    margin: 0 auto;
  }

  /* Sidebar CTAs γίνονται row πάλι */
  .reviews-ctas.small {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .reviews-ctas.small .btn {
    width: auto;
    flex: 1 1 auto;
  }

  /* Review grid παραμένει 2 στήλες */
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── Mobile: 768px ── */
@media (max-width: 768px) {
  .reviews-page-wrapper {
    padding: 3rem 0 5rem;
  }

  .reviews-container {
    padding: 0 1rem;
  }

  .reviews-hero {
    margin-bottom: 2.5rem;
  }

  .reviews-hero h1 {
    font-size: 2rem;
  }

  .reviews-subtitle {
    font-size: 1rem;
  }

  /* KPIs: 3 στήλες μέχρι 768 */
  .reviews-kpis {
    gap: 0.75rem;
  }

  .kpi {
    padding: 1rem 1.25rem;
    min-width: 120px;
  }

  .kpi-value {
    font-size: 1.75rem;
  }

  /* Review grid: 1 στήλη */
  .review-grid {
    grid-template-columns: 1fr;
  }

  /* Review text: full, χωρίς clamp */
  .review-text {
    -webkit-line-clamp: unset;
  }

  .reviews-google-card {
    padding: 1.375rem;
  }

  .reviews-thanks {
    padding: 1.375rem;
  }
}

/* ── Small Mobile: 480px ── */
@media (max-width: 480px) {
  .reviews-hero h1 {
    font-size: 1.75rem;
  }

  /* KPIs: 1 ανά σειρά */
  .reviews-kpis {
    flex-direction: column;
    align-items: stretch;
  }

  .kpi {
    max-width: 100%;
    flex: 1 1 auto;
  }

  /* CTAs: stacked full-width */
  .reviews-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .reviews-ctas.small {
    flex-direction: column;
  }

  .reviews-ctas.small .btn {
    width: 100%;
  }

  .review-head {
    flex-wrap: wrap;
  }

  .review-rating {
    width: 100%;
    margin-top: 0.25rem;
  }

  .reviews-google-card {
    padding: 1.125rem;
  }

  .reviews-thanks img {
    max-height: 200px;
  }
}











/* ========================================
   VR SIMULATOR PAGE
   
   ======================================== */

/* ── WRAPPER & CONTAINER ── */
.vr-page-wrapper {
  background: var(--bg-white);
  padding: 5rem 0 0;
  min-height: 70vh;
}

.vr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.vr-hero {
  text-align: center;
  padding-bottom: 3.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.vr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: var(--primary-color);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.vr-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: vr-pulse 2s ease-in-out infinite;
}

@keyframes vr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.vr-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.vr-hero-accent {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

/* Underline decoration on accent */
.vr-hero-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
  border-radius: 2px;
  opacity: 0.35;
}

.vr-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

/* ── Hero CTAs ── */
.vr-hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ── BUTTONS (VR-scoped, non-conflicting with reviews .btn) ── */
.vr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.vr-btn-primary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(221, 20, 43, 0.2);
}

.vr-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(221, 20, 43, 0.3);
}

.vr-btn-secondary {
  background: var(--bg-white);
  border-color: var(--border-color);
  color: var(--text-dark);
}

.vr-btn-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.vr-btn-white {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  backdrop-filter: blur(4px);
}

.vr-btn-white:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  transform: translateY(-2px);
}

.vr-btn-lg {
  padding: 1.05rem 2rem;
  font-size: 1rem;
}

/* ── KPIs ── */
.vr-kpis {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.vr-kpi {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.125rem 1.5rem;
  min-width: 140px;
  flex: 1 1 140px;
  max-width: 200px;
  text-align: center;
  transition: var(--transition);
}

.vr-kpi:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.vr-kpi-value {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.vr-kpi-unit {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: lowercase;
}

.vr-kpi-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.35;
}

/* ══════════════════════════════════════
   PHOTO SHOWCASE
══════════════════════════════════════ */
.vr-showcase {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}

.vr-showcase-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vr-figure {
  margin: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.vr-figure:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.vr-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.vr-figure:hover img {
  transform: scale(1.025);
}

.vr-figure-main {
  height: 440px;
}

.vr-figure-side {
  flex: 1;
  min-height: 0;
}

.vr-figure-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 1.5rem 1rem 0.75rem;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   MAIN LAYOUT — 2 columns
══════════════════════════════════════ */
.vr-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 0;
}

/* ══════════════════════════════════════
   SECTIONS — LEFT COLUMN
══════════════════════════════════════ */
.vr-section {
  margin-bottom: 3.5rem;
}

.vr-section:last-child {
  margin-bottom: 0;
}

.vr-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.75rem;
}

.vr-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.vr-section p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.vr-section p:last-child {
  margin-bottom: 0;
}

/* ── Steps ── */
.vr-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin-top: 1.5rem;
  position: relative;
}

/* Vertical connector line */
.vr-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 44px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--border-color) 100%);
  z-index: 0;
}

.vr-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--border-radius-lg);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.vr-step:hover {
  background: var(--bg-light);
}

.vr-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.vr-step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.vr-step-body p {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0;
}

/* ── Benefits Grid ── */
.vr-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.vr-benefit-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.375rem;
  transition: var(--transition);
}

.vr-benefit-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.vr-benefit-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  display: block;
}

.vr-benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.vr-benefit-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ── Audience List ── */
.vr-audience-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vr-audience-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-light);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.vr-audience-list li:hover {
  border-color: var(--primary-color);
  background: #eff6ff;
}

.vr-list-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
}

.vr-audience-list li strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.vr-audience-list li div {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.55;
}

/* ══════════════════════════════════════
   SIDEBAR — RIGHT COLUMN
══════════════════════════════════════ */
.vr-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vr-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.625rem;
  box-shadow: var(--shadow-sm);
}

/* ── CTA Card ── */
.vr-cta-card {
  background: linear-gradient(160deg, #1e3a8a 0%, #1e40af 60%, #2563eb 100%);
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.25);
}

.vr-cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.02em;
}

.vr-cta-card h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.vr-cta-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.vr-sidebar-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.vr-sidebar-ctas .vr-btn {
  width: 100%;
  justify-content: center;
}

.vr-cta-card .vr-btn-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}

.vr-cta-card .vr-btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

/* ── Specs Card ── */
.vr-specs-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.vr-specs-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vr-specs-list li {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border-color);
}

.vr-specs-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vr-spec-icon {
  font-size: 1.2rem;
  margin-top: 1px;
  min-width: 24px;
  text-align: center;
}

.vr-specs-list strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1px;
}

.vr-specs-list span {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* ── Location Card ── */
.vr-location-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.vr-location-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.vr-location-address svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.vr-location-map {
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.vr-location-map iframe {
  display: block;
}

/* ══════════════════════════════════════
   BOTTOM CTA BANNER
══════════════════════════════════════ */
.vr-bottom-cta {
  margin-top: 5rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background shapes */
.vr-bottom-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vr-bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(221,20,43,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vr-bottom-cta-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.vr-bottom-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.vr-bottom-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.vr-bottom-cta p strong {
  color: #fff;
}

.vr-bottom-cta-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   VR PAGE — RESPONSIVE
══════════════════════════════════════ */

/* ── Tablet 1024px ── */
@media (max-width: 1024px) {
  .vr-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .vr-figure-main {
    height: 360px;
  }

  .vr-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vr-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  /* CTA card spans full width on tablet */
  .vr-cta-card {
    grid-column: 1 / -1;
  }

  .vr-sidebar-ctas {
    flex-direction: row;
  }

  .vr-sidebar-ctas .vr-btn {
    width: auto;
    flex: 1;
  }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  .vr-page-wrapper {
    padding: 3rem 0 0;
  }

  .vr-container {
    padding: 0 1rem;
  }

  .vr-hero {
    padding-bottom: 2.5rem;
  }

  .vr-hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .vr-btn {
    width: 100%;
    justify-content: center;
  }

  /* KPIs: 2 ανά σειρά */
  .vr-kpis {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .vr-kpi {
    max-width: 100%;
  }

  /* Showcase: single column */
  .vr-showcase {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 3rem;
  }

  .vr-showcase-side {
    flex-direction: row;
  }

  .vr-figure-main {
    height: 280px;
  }

  .vr-figure-side {
    height: 200px;
    flex: 1;
  }

  /* Sidebar: single column */
  .vr-sidebar {
    grid-template-columns: 1fr;
  }

  .vr-cta-card {
    grid-column: auto;
  }

  .vr-sidebar-ctas {
    flex-direction: column;
  }

  .vr-sidebar-ctas .vr-btn {
    width: 100%;
    flex: none;
  }

  /* Benefits: 1 column */
  .vr-benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Steps: remove line on mobile */
  .vr-steps::before {
    display: none;
  }

  .vr-section h2 {
    font-size: 1.5rem;
  }

  .vr-bottom-cta {
    padding: 3.5rem 1.25rem;
    margin-top: 3.5rem;
  }

  .vr-bottom-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .vr-bottom-cta-btns .vr-btn {
    width: 100%;
  }
}

/* ── Small Mobile 480px ── */
@media (max-width: 480px) {
  .vr-hero h1 {
    font-size: 2rem;
  }

  /* KPIs: 1 column */
  .vr-kpis {
    grid-template-columns: 1fr;
  }

  /* Showcase side images: column */
  .vr-showcase-side {
    flex-direction: column;
  }

  .vr-figure-side {
    height: 200px;
    flex: none;
  }

  .vr-info-card {
    padding: 1.25rem;
  }

  .vr-step {
    padding: 1rem 0.75rem;
  }
}





/* ========================================
   DIPLOMAS PAGE
   
   ======================================== */

/* ── Local accent colors per category ── */
.lic-page-wrapper {
  --lic-orange:      #ea580c;
  --lic-orange-light:#fff7ed;
  --lic-orange-border:#fed7aa;
  --lic-blue:        var(--primary-color);
  --lic-blue-light:  #eff6ff;
  --lic-blue-border: #bfdbfe;
  --lic-red:         var(--secondary-color);
  --lic-red-light:   #fff1f2;
  --lic-red-border:  #fecdd3;
}

/* ── WRAPPER & CONTAINER ── */
.lic-page-wrapper {
  background: var(--bg-white);
  padding: 5rem 0 0;
  min-height: 70vh;
}

.lic-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.lic-hero {
  text-align: center;
  padding-bottom: 4rem;
  max-width: 820px;
  margin: 0 auto;
}

.lic-hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.lic-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.lic-hero-accent {
  color: var(--secondary-color);
}

.lic-hero-subtitle {
  font-size: 1.075rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

/* ── Quick nav pills ── */
.lic-quick-nav {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}

.lic-nav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.lic-nav-pill--orange {
  background: var(--lic-orange-light);
  color: var(--lic-orange);
  border-color: var(--lic-orange-border);
}
.lic-nav-pill--orange:hover {
  background: var(--lic-orange);
  color: #fff;
  border-color: var(--lic-orange);
  transform: translateY(-2px);
}

.lic-nav-pill--blue {
  background: var(--lic-blue-light);
  color: var(--lic-blue);
  border-color: var(--lic-blue-border);
}
.lic-nav-pill--blue:hover {
  background: var(--lic-blue);
  color: #fff;
  border-color: var(--lic-blue);
  transform: translateY(-2px);
}

.lic-nav-pill--red {
  background: var(--lic-red-light);
  color: var(--lic-red);
  border-color: var(--lic-red-border);
}
.lic-nav-pill--red:hover {
  background: var(--lic-red);
  color: #fff;
  border-color: var(--lic-red);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   LICENSE CARDS — alternating layout
══════════════════════════════════════ */
.lic-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lic-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  transition: box-shadow 0.3s ease;
}

.lic-card:hover {
  box-shadow: var(--shadow-xl);
}

/* Reversed: content left, image right */
.lic-card--reversed {
  direction: rtl;
}
.lic-card--reversed > * {
  direction: ltr;
}

/* ── Image side ── */
.lic-card-visual {
  position: relative;
  overflow: hidden;
  background: #111;
}

.lic-card-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.lic-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.lic-card:hover .lic-card-img-wrap img {
  transform: scale(1.04);
}

/* Gradient overlay */
.lic-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Badge on image */
.lic-card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.lic-badge-icon {
  font-size: 1rem;
}

/* ── Content side ── */
.lic-card-content {
  padding: 3rem 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-white);
}

.lic-card--reversed .lic-card-content {
  padding: 3rem 3.5rem 3rem 3rem;
}

/* Per-color accent on left border */
.lic-card--orange .lic-card-content { border-left: 4px solid var(--lic-orange); }
.lic-card--blue   .lic-card-content { border-left: 4px solid var(--lic-blue); }
.lic-card--red    .lic-card-content { border-left: 4px solid var(--lic-red); }

.lic-card--reversed.lic-card--orange .lic-card-content { border-left: none; border-right: 4px solid var(--lic-orange); }
.lic-card--reversed.lic-card--blue   .lic-card-content { border-left: none; border-right: 4px solid var(--lic-blue); }
.lic-card--reversed.lic-card--red    .lic-card-content { border-left: none; border-right: 4px solid var(--lic-red); }

/* Category label pill */
.lic-card-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.28rem 0.85rem;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.lic-card--orange .lic-card-label { background: var(--lic-orange-light); color: var(--lic-orange); border: 1px solid var(--lic-orange-border); }
.lic-card--blue   .lic-card-label { background: var(--lic-blue-light);   color: var(--lic-blue);   border: 1px solid var(--lic-blue-border); }
.lic-card--red    .lic-card-label { background: var(--lic-red-light);    color: var(--lic-red);    border: 1px solid var(--lic-red-border); }

.lic-card-title {
  font-size: clamp(1.625rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.lic-card-subtitle {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.875rem;
  font-weight: 500;
}

.lic-card-desc {
  font-size: 0.92rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* ── Requirements table ── */
.lic-requirements {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.lic-req-header {
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.lic-req-list {
  display: flex;
  flex-direction: column;
}

.lic-req-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--border-color);
  transition: background 0.15s ease;
}

.lic-req-row:last-child {
  border-bottom: none;
}

.lic-req-row:hover {
  background: var(--bg-light);
}

.lic-req-row dt {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  min-width: 170px;
  flex-shrink: 0;
}

.lic-req-row dd {
  font-size: 0.88rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

/* Accent dot per color */
.lic-req-row dt::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
  flex-shrink: 0;
}

.lic-card--orange .lic-req-row dt::before { background: var(--lic-orange); }
.lic-card--blue   .lic-req-row dt::before { background: var(--lic-blue); }
.lic-card--red    .lic-req-row dt::before { background: var(--lic-red); }

/* ── CTA Button ── */
.lic-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 1.375rem;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  width: fit-content;
}

.lic-card--orange .lic-cta-btn { background: var(--lic-orange); color: #fff; box-shadow: 0 4px 14px rgba(234,88,12,0.22); }
.lic-card--orange .lic-cta-btn:hover { background: #c2410c; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(234,88,12,0.3); }

.lic-card--blue .lic-cta-btn { background: var(--lic-blue); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.22); }
.lic-card--blue .lic-cta-btn:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,99,235,0.3); }

.lic-card--red .lic-cta-btn { background: var(--lic-red); color: #fff; box-shadow: 0 4px 14px rgba(221,20,43,0.22); }
.lic-card--red .lic-cta-btn:hover { background: var(--secondary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(221,20,43,0.3); }

/* ══════════════════════════════════════
   BOTTOM CTA BANNER
══════════════════════════════════════ */
.lic-bottom-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1e40af 100%);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.lic-bottom-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lic-bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(221,20,43,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.lic-bottom-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.lic-bottom-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.lic-bottom-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.lic-bottom-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.lic-bottom-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Bottom buttons ── */
.lic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.lic-btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(221,20,43,0.25);
}
.lic-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(221,20,43,0.35);
}

.lic-btn-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(4px);
}
.lic-btn-secondary:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   DIPLOMAS PAGE — RESPONSIVE
══════════════════════════════════════ */

/* ── Tablet 1024px ── */
@media (max-width: 1024px) {
  .lic-card {
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
  }

  .lic-card-content,
  .lic-card--reversed .lic-card-content {
    padding: 2.25rem;
  }

  .lic-req-row dt {
    min-width: 140px;
  }
}

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  .lic-page-wrapper {
    padding: 3rem 0 0;
  }

  .lic-container {
    padding: 0 1rem;
  }

  /* Cards: stack vertically, image on top */
  .lic-card {
    grid-template-columns: 1fr;
    min-height: unset;
    direction: ltr; /* reset reversed */
  }

  .lic-card--reversed {
    direction: ltr;
  }

  /* Image goes on top always */
  .lic-card-visual {
    height: 260px;
    order: -1;
  }

  .lic-card-content,
  .lic-card--reversed .lic-card-content {
    padding: 1.75rem;
    border-left: none !important;
    border-right: none !important;
    border-top: 4px solid;
  }

  .lic-card--orange .lic-card-content { border-top-color: var(--lic-orange); }
  .lic-card--blue   .lic-card-content { border-top-color: var(--lic-blue); }
  .lic-card--red    .lic-card-content { border-top-color: var(--lic-red); }

  .lic-req-row {
    flex-direction: column;
    gap: 0.2rem;
  }

  .lic-req-row dt {
    min-width: unset;
  }

  .lic-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .lic-bottom-cta {
    padding: 3.5rem 1.25rem;
  }

  .lic-bottom-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .lic-btn {
    width: 100%;
  }
}

/* ── Small Mobile 480px ── */
@media (max-width: 480px) {
  .lic-hero h1 {
    font-size: 2rem;
  }

  .lic-quick-nav {
    gap: 0.5rem;
  }

  .lic-nav-pill {
    font-size: 0.82rem;
    padding: 0.45rem 0.9rem;
  }

  .lic-card-visual {
    height: 220px;
  }

  .lic-card-content,
  .lic-card--reversed .lic-card-content {
    padding: 1.375rem;
  }

  .lic-card-title {
    font-size: 1.5rem;
  }
}






/* ========================================
   HOMEPAGE
   
   ======================================== */

.home-page-wrapper {
  background: var(--bg-white);
  overflow-x: hidden;
}

/* ── Shared container ── */
.home-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Shared section spacing ── */
.home-section {
  padding: 6rem 0;
}

/* ── Shared section header ── */
.home-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.home-section-header h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.home-section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* ── Shared section label pill ── */
.home-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 0.9rem;
}

.home-section-label--light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* ── Shared buttons ── */
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.625rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.home-btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(221,20,43,0.22);
}
.home-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(221,20,43,0.32);
}

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

.home-btn-outline {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.home-btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px);
}

.home-btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  backdrop-filter: blur(4px);
}
.home-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.home-hero {
  background: var(--bg-white);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

/* Subtle background texture */
.home-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0edff 100%);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}

.home-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 620px;
}

/* ── Hero badge ── */
.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: var(--primary-color);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.home-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: home-pulse 2s ease-in-out infinite;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

/* ── Hero title ── */
.home-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.home-hero-accent {
  color: var(--secondary-color);
  position: relative;
  display: inline-block;
}

.home-hero-accent::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--secondary-color), var(--secondary-dark));
  border-radius: 2px;
  opacity: 0.3;
}

.home-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.home-hero-subtitle strong {
  color: var(--text-dark);
}

/* ── Hero CTAs ── */
.home-hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* ── Social proof strip ── */
.home-hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-proof-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-light);
}

.home-proof-item strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.home-proof-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.home-proof-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ── Photo collage ── */
.home-hero-visual {
  position: relative;
  padding-bottom: 2rem;
}

.home-collage {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 440px;
  gap: 0.875rem;
  border-radius: var(--border-radius-lg);
  overflow: visible;
}

.home-collage-main,
.home-collage-side {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.home-collage-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-collage-main:hover img { transform: scale(1.03); }

.home-collage-side {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: visible;
}

.home-collage-top,
.home-collage-bottom {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-collage-top img,
.home-collage-bottom img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-collage-top:hover img,
.home-collage-bottom:hover img { transform: scale(1.04); }

/* Floating badge */
.home-collage-float {
  position: absolute;
  bottom: 0.5rem;
  left: -1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  z-index: 2;
}

.home-float-icon { font-size: 1.75rem; }

.home-collage-float strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.home-collage-float span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.home-stats-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #2563eb 100%);
  padding: 2.5rem 0;
}

.home-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.home-stat {
  text-align: center;
  padding: 0.75rem 3rem;
  flex: 1 1 auto;
  min-width: 140px;
}

.home-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.home-stat-unit {
  font-size: 1.1rem;
  color: #f59e0b;
}

.home-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.home-stat-sep {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   ABOUT / DIPLWMATA SECTION
══════════════════════════════════════ */
.home-about {
  background: var(--bg-light);
}

.home-about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Photo grid */
.home-about-photos {
  position: relative;
  height: 520px;
}

.home-aphoto {
  position: absolute;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition-slow);
}

.home-aphoto:hover { transform: translateY(-4px); box-shadow: 0 28px 50px rgba(0,0,0,0.12); }

.home-aphoto img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.home-aphoto:hover img { transform: scale(1.04); }

.home-aphoto-1 {
  width: 68%; height: 360px;
  top: 0; left: 0;
  z-index: 2;
}

.home-aphoto-2 {
  width: 52%; height: 240px;
  bottom: 0; right: 0;
  z-index: 3;
  border: 4px solid var(--bg-light);
}

.home-aphoto-3 {
  width: 40%; height: 200px;
  top: 160px; right: 0;
  z-index: 1;
  border: 4px solid var(--bg-light);
  opacity: 0.9;
}

.home-year-badge {
  position: absolute;
  top: 50%; right: -1.5rem;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #fff;
  border-radius: var(--border-radius);
  padding: 1rem 1.375rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  z-index: 4;
  white-space: nowrap;
}

.home-year-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.home-year-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

/* About text */
.home-about-text h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.home-about-text p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.home-about-text p strong { color: var(--text-dark); }

.home-cat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.home-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid;
}

.home-cat-pill--orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.home-cat-pill--blue   { background: #eff6ff; color: var(--primary-color); border-color: #bfdbfe; }
.home-cat-pill--red    { background: #fff1f2; color: var(--secondary-color); border-color: #fecdd3; }

/* ══════════════════════════════════════
   METHOD SECTION
══════════════════════════════════════ */
.home-method {
  background: var(--bg-white);
}

.home-method-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.home-method-text h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.home-method-quote {
  background: #eff6ff;
  border-left: 3px solid var(--primary-color);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 1.125rem 1.375rem;
  margin-bottom: 1.75rem;
}

.home-method-quote p {
  font-size: 0.97rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin: 0;
}

.home-method-quote p strong { color: var(--primary-dark); }

.home-method-compare {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.home-compare-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.25rem;
  border-radius: var(--border-radius);
  border: 1px solid;
}

.home-compare-bad {
  background: #fef2f2;
  border-color: #fecaca;
}

.home-compare-good {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.home-compare-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 1px; }

.home-compare-block strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.home-compare-block p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
}

.home-compare-block p strong { color: var(--text-dark); }

/* Method visual */
.home-method-visual {
  position: relative;
  height: 520px;
}

.home-method-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.home-method-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  padding: 1.125rem 1.375rem;
  border: 1px solid var(--border-color);
  z-index: 2;
  max-width: 200px;
}

.home-method-card-1 { top: 1.5rem; left: -1.75rem; }
.home-method-card-2 { bottom: 5rem; left: -1.75rem; max-width: 220px; }
.home-method-card-3 { top: 1.5rem; right: -1rem; }

.home-mcard-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.home-method-card-2 .home-mcard-num {
  font-size: 2rem;
  color: var(--text-light);
}

.home-mcard-text {
  font-size: 0.82rem;
  color: var(--text-medium);
  line-height: 1.5;
  font-weight: 500;
}

/* ══════════════════════════════════════
   VIDEOS SECTION
══════════════════════════════════════ */
.home-videos {
  background: var(--bg-light);
}

.home-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.home-video-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.home-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.home-video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #0f172a;
}

.home-video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.home-video-card:hover .home-video-thumb img {
  transform: scale(1.05);
  opacity: 0.85;
}

.home-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.home-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 60px; height: 60px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(221,20,43,0.4);
  z-index: 2;
}

.home-video-play svg { width: 26px; height: 26px; margin-left: 3px; }

.home-video-card:hover .home-video-play {
  transform: translate(-50%, -50%) scale(1);
  box-shadow: 0 8px 32px rgba(221,20,43,0.55);
}

.home-video-info {
  padding: 1.25rem 1.375rem;
}

.home-video-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
}

.home-video-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.4rem;
}

.home-video-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0;
}

/* ── Video modal ── */
.home-video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.home-video-modal[hidden] { display: none; }

.home-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
}

.home-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.home-modal-close {
  position: absolute;
  top: -3rem; right: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.home-modal-close svg { width: 20px; height: 20px; }
.home-modal-close:hover { background: rgba(255,255,255,0.3); }

.home-modal-embed {
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}

.home-modal-embed iframe {
  width: 100%; height: 100%; display: block;
}

/* ══════════════════════════════════════
   SOCIAL CAROUSEL
══════════════════════════════════════ */
.home-carousel-section {
  background: var(--bg-white);
  padding-bottom: 4rem;
}

.home-carousel-track-wrap {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0 1rem;
}

.home-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 2rem;
  /* Prevent wrap */
  width: max-content;
}

.home-carousel-item {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.home-carousel-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
  z-index: 1;
}

.home-carousel-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}

.home-carousel-item:hover img { transform: scale(1.06); }

/* Nav arrows */
.home-carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 2;
}

.home-carousel-btn svg { width: 20px; height: 20px; stroke: var(--text-dark); }

.home-carousel-btn--prev { left: 0.75rem; }
.home-carousel-btn--next { right: 0.75rem; }

.home-carousel-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.home-carousel-btn:hover svg { stroke: #fff; }
.home-carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.home-carousel-btn:disabled:hover { background: var(--bg-white); border-color: var(--border-color); }
.home-carousel-btn:disabled:hover svg { stroke: var(--text-dark); }

/* ══════════════════════════════════════
   CLOSING SECTION — B&W photo
══════════════════════════════════════ */
.home-closing {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-closing-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-closing-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: transform 8s ease;
}

.home-closing:hover .home-closing-photo img {
  transform: scale(1.04);
}

.home-closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(15,23,42,0.88) 100%);
}

.home-closing-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 6rem 2rem;
}

.home-closing-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.home-closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.home-closing p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.home-closing-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   HOMEPAGE — RESPONSIVE
══════════════════════════════════════ */

/* ── 1200px ── */
@media (max-width: 1200px) {
  .home-hero-title { font-size: 3rem; }
  .home-collage { grid-template-rows: 380px; }
  .home-year-badge { right: 0; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: unset;
    padding-bottom: 3rem;
  }

  .home-hero::before { display: none; }

  .home-collage { grid-template-rows: 340px; }
  .home-collage-float { left: 1rem; bottom: -1.5rem; }

  .home-stats-inner { gap: 0; }
  .home-stat { padding: 0.75rem 1.5rem; }
  .home-stat-sep { display: none; }

  .home-about-layout,
  .home-method-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home-about-photos { height: 340px; order: -1; }

  .home-aphoto-1 { width: 62%; height: 260px; }
  .home-aphoto-2 { width: 50%; height: 200px; }
  .home-aphoto-3 { top: 120px; width: 36%; height: 180px; }
  .home-year-badge { right: 4rem; }

  .home-method-visual { height: 400px; }
  .home-method-card-1 { left: 0.5rem; }
  .home-method-card-2 { left: 0.5rem; }
  .home-method-card-3 { right: 0.5rem; }

  .home-video-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .home-carousel-item { width: 220px; height: 220px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .home-section { padding: 4rem 0; }
  .home-container { padding: 0 1rem; }

  .home-hero { padding: 3rem 0 0; }

  .home-hero-title { font-size: 2.25rem; }

  .home-hero-ctas { flex-direction: column; align-items: stretch; }
  .home-btn { width: 100%; justify-content: center; }

  .home-hero-proof { gap: 1rem; font-size: 0.82rem; }
  .home-proof-divider { display: none; }

  .home-collage { grid-template-columns: 1fr; grid-template-rows: auto; gap: 0.875rem; }
  .home-collage-side { flex-direction: row; }
  .home-collage-main { height: 280px; }
  .home-collage-top, .home-collage-bottom { height: 175px; }
  .home-collage-float { left: 0; }

  .home-stats-bar { padding: 2rem 0; }
  .home-stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .home-stat { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .home-stat-value { font-size: 1.625rem; }
  .home-stat-sep { display: none; }

  .home-about-photos { height: 280px; }
  .home-aphoto-1 { width: 65%; height: 220px; }
  .home-aphoto-2 { width: 55%; height: 175px; }
  .home-aphoto-3 { display: none; }
  .home-year-badge { right: 0; }

  .home-method-visual { height: 300px; }
  .home-method-card { padding: 0.875rem; max-width: 160px; }
  .home-method-card-2 { max-width: 175px; }
  .home-mcard-num { font-size: 1.375rem; }

  .home-video-grid { grid-template-columns: 1fr; }

  .home-carousel-item { width: 200px; height: 200px; }

  .home-closing { min-height: 420px; }
  .home-closing-content { padding: 4rem 1rem; }
  .home-closing h2 { font-size: 2rem; }

  .home-closing-btns { flex-direction: column; align-items: stretch; }
  .home-closing-btns .home-btn { width: 100%; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .home-hero-title { font-size: 1.875rem; }

  .home-stats-inner { grid-template-columns: 1fr; }
  .home-stat { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .home-stat:last-child { border-bottom: none; }

  .home-about-photos { height: 240px; }
  .home-aphoto-1 { width: 70%; height: 200px; }
  .home-aphoto-2 { width: 52%; height: 155px; }

  .home-collage-side { flex-direction: column; }
  .home-collage-top, .home-collage-bottom { height: 140px; }

  .home-method-card-1, .home-method-card-3 { display: none; }
  .home-method-card-2 { left: 50%; transform: translateX(-50%); bottom: 1.5rem; }
  .home-method-visual { height: 260px; }

  .home-carousel-item { width: 180px; height: 180px; }

  .home-section-header h2 { font-size: 1.625rem; }
}



/* ========================================
   404 PAGE
   
   ======================================== */

.err404-wrapper {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: var(--bg-white);
  text-align: center;
}

.err404-inner {
  max-width: 520px;
  width: 100%;
  position: relative;
}

/* Big decorative 404 behind everything */
.err404-number {
  font-size: clamp(8rem, 22vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bg-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Icon */
.err404-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 50%;
  margin: 0 auto 1.75rem;
  color: var(--secondary-color);
}

.err404-title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 0.875rem;
  line-height: 1.2;
}

.err404-subtitle {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

/* Buttons */
.err404-btns {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.err404-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1.375rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.err404-btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(221,20,43,0.2);
}
.err404-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(221,20,43,0.3);
}

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

/* Footer note */
.err404-note {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  color: var(--text-light);
}

.err404-note a {
  color: var(--primary-color);
  font-weight: 600;
}

.err404-note a:hover {
  color: var(--secondary-color);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .err404-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .err404-btn {
    width: 100%;
    justify-content: center;
  }

  .err404-number {
    font-size: 8rem;
  }
}













/* ========================================
   ADR PAGE
   Πρόσθεσε αυτό το block στο τέλος του site.css
   ======================================== */

.adr-page-wrapper {
  background: var(--bg-white);
  padding: 5rem 0 0;
  min-height: 70vh;
}

.adr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Shared buttons ── */
.adr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 0.92rem;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.adr-btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
  color: #fff;
  box-shadow: 0 4px 14px rgba(221,20,43,0.2);
}
.adr-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 8px 22px rgba(221,20,43,0.3);
}

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

.adr-btn-white {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.adr-btn-white:hover {
  background: rgba(255,255,255,0.24);
  color: #fff;
  transform: translateY(-2px);
}

.adr-btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.adr-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Section label pill ── */
.adr-section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary-color);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 999px;
  padding: 0.28rem 0.9rem;
  margin-bottom: 0.85rem;
}

.adr-section-label--light {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.adr-hero {
  text-align: center;
  padding-bottom: 4rem;
  max-width: 860px;
  margin: 0 auto;
}

.adr-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: var(--primary-color);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.adr-badge-dot {
  width: 7px; height: 7px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: adr-pulse 2s ease-in-out infinite;
}

@keyframes adr-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.5); }
}

.adr-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.125rem;
}

.adr-hero-accent {
  color: var(--secondary-color);
}

.adr-hero-subtitle {
  font-size: 1.075rem;
  color: var(--text-medium);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.adr-hero-subtitle strong { color: var(--text-dark); }

.adr-hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Trust bar */
.adr-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  background: var(--bg-light);
  overflow: hidden;
}

.adr-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  flex: 1 1 auto;
  min-width: 120px;
}

.adr-trust-item strong {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.adr-trust-item span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  text-align: center;
}

.adr-trust-sep {
  width: 1px; height: 44px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   MAIN LAYOUT
══════════════════════════════════════ */
.adr-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: start;
}

/* ══════════════════════════════════════
   SECTIONS
══════════════════════════════════════ */
.adr-section {
  margin-bottom: 3.5rem;
}

.adr-section:last-child { margin-bottom: 0; }

.adr-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-dark);
  margin-bottom: 1.125rem;
  line-height: 1.2;
}

.adr-section p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.adr-section p:last-child { margin-bottom: 0; }

/* Image block */
.adr-image-block {
  margin: 0 0 1.5rem;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.adr-image-block img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.adr-image-block:hover img { transform: scale(1.02); }

/* Info grid (4 cards) */
.adr-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.adr-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.adr-info-card:hover {
  border-color: var(--primary-color);
  background: #eff6ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.adr-info-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.adr-info-card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.adr-info-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* List */
.adr-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.adr-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-medium);
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  transition: background 0.15s ease;
}

.adr-list li:hover { background: var(--bg-light); }

.adr-list-dot {
  width: 8px; height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Curriculum */
.adr-curriculum {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
}

.adr-curriculum-header {
  padding: 0.75rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.adr-curriculum-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.adr-curr-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  transition: background 0.15s ease;
}

.adr-curr-item:nth-child(even) { border-right: none; }
.adr-curr-item:nth-last-child(-n+2) { border-bottom: none; }
.adr-curr-item:hover { background: var(--bg-light); }

.adr-curr-num {
  width: 36px; height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.adr-curr-item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.adr-curr-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* Steps */
.adr-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
  position: relative;
}

.adr-steps::before {
  content: '';
  position: absolute;
  left: 20px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary-color), var(--border-color));
  z-index: 0;
}

.adr-step {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.125rem;
  border-radius: var(--border-radius);
  transition: background 0.15s ease;
  position: relative; z-index: 1;
}

.adr-step:hover { background: var(--bg-light); }

.adr-step-num {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

.adr-step-body strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.adr-step-body p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
}

/* ADR Classes grid */
.adr-classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.adr-class-badge {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.875rem;
  text-align: center;
  transition: var(--transition);
}

.adr-class-badge:hover {
  border-color: var(--primary-color);
  background: #eff6ff;
  transform: translateY(-2px);
}

.adr-class-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.adr-class-badge p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.35;
}

/* Why grid */
.adr-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.adr-why-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.375rem;
  transition: var(--transition);
}

.adr-why-card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.adr-why-icon {
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
  display: block;
}

.adr-why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.adr-why-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

/* ══════════════════════════════════════
   SIDEBAR
══════════════════════════════════════ */
.adr-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.adr-sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.adr-sidebar-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* CTA card */
.adr-cta-card {
  background: linear-gradient(155deg, #1e3a8a 0%, #1e40af 60%, #2563eb 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(30,58,138,0.22);
}

.adr-cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.875rem;
  letter-spacing: 0.02em;
}

.adr-cta-card h3 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.6rem;
}

.adr-cta-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.adr-sidebar-btns {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.adr-sidebar-btns .adr-btn { width: 100%; justify-content: center; }

/* Quick list */
.adr-quick-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.adr-quick-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.87rem;
  color: var(--text-medium);
  line-height: 1.45;
}

.adr-quick-list li:last-child { border-bottom: none; }

.adr-quick-list svg {
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

/* NAP card */
.adr-nap-card {
  background: var(--bg-light);
}

.adr-nap-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.adr-nap-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.87rem;
  color: var(--text-medium);
}

.adr-nap-list svg { color: var(--secondary-color); flex-shrink: 0; }

.adr-nap-list a {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-fast);
}

.adr-nap-list a:hover { color: var(--secondary-color); }

/* Related links */
.adr-related-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-fast);
  text-decoration: none;
}

.adr-related-link:last-child { border-bottom: none; }

.adr-related-link:hover {
  color: var(--secondary-color);
  padding-left: 0.375rem;
}

.adr-related-link svg { flex-shrink: 0; }

/* ══════════════════════════════════════
   BOTTOM CTA
══════════════════════════════════════ */
.adr-bottom-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1e40af 100%);
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  padding: 5rem 2rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.adr-bottom-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.adr-bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(221,20,43,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.adr-bottom-cta-inner {
  position: relative; z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.adr-bottom-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.adr-bottom-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.adr-bottom-cta p strong { color: #fff; }

.adr-bottom-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
   ADR PAGE — RESPONSIVE
══════════════════════════════════════ */

@media (max-width: 1024px) {
  .adr-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .adr-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .adr-cta-card { grid-column: 1 / -1; }

  .adr-sidebar-btns { flex-direction: row; }
  .adr-sidebar-btns .adr-btn { width: auto; flex: 1; }
}

@media (max-width: 768px) {
  .adr-page-wrapper { padding: 3rem 0 0; }
  .adr-container { padding: 0 1rem; }

  .adr-hero-title { font-size: 2rem; }

  .adr-hero-ctas { flex-direction: column; align-items: stretch; }
  .adr-btn { width: 100%; justify-content: center; }

  .adr-trust-sep { display: none; }
  .adr-trust-bar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .adr-trust-item { padding: 0.75rem 1rem; border-bottom: 1px solid var(--border-color); }

  .adr-info-grid { grid-template-columns: 1fr; }

  .adr-curriculum-grid { grid-template-columns: 1fr; }
  .adr-curr-item { border-right: none !important; }
  .adr-curr-item:last-child { border-bottom: none; }

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

  .adr-why-grid { grid-template-columns: 1fr; }

  .adr-sidebar { grid-template-columns: 1fr; }
  .adr-cta-card { grid-column: auto; }
  .adr-sidebar-btns { flex-direction: column; }
  .adr-sidebar-btns .adr-btn { width: 100%; flex: none; }

  .adr-steps::before { display: none; }

  .adr-section h2 { font-size: 1.5rem; }

  .adr-bottom-cta { padding: 3.5rem 1.25rem; margin-top: 3rem; }
  .adr-bottom-btns { flex-direction: column; align-items: stretch; }
  .adr-bottom-btns .adr-btn { width: 100%; }
}

@media (max-width: 480px) {
  .adr-hero-title { font-size: 1.75rem; }
  .adr-trust-bar { grid-template-columns: 1fr; }
  .adr-classes-grid { grid-template-columns: repeat(2, 1fr); }
  .adr-curriculum-grid { grid-template-columns: 1fr; }
}

/* ========================================
   ADR PAGE — FLOATING TOC
   
   ======================================== */

/* ── Trigger button (κύκλος κάτω αριστερά) ── */
#adrTocBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  transition: var(--transition);
  z-index: 9998;
}

#adrTocBtn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

#adrTocBtn svg {
  color: white;
}

/* ── Overlay (click έξω για κλείσιμο) ── */
#adrTocOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9998;
}

#adrTocOverlay.active {
  opacity: 1;
  visibility: visible;
}

/* ── Panel ── */
#adrTocPanel {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translate(0, -50%) scale(0.9);
  width: 260px;
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  border: 2px solid var(--primary-color);
  overflow: hidden;
}

#adrTocPanel.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%) scale(1);
}

/* ── Panel header ── */
.adr-toc-header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.adr-toc-header-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.adr-toc-header-title svg {
  color: var(--primary-color);
}

.adr-toc-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.adr-toc-close:hover {
  color: var(--primary-color);
}

/* ── Links ── */
.adr-toc-links {
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  counter-reset: toc-counter;
}

.adr-toc-links li {
  counter-increment: toc-counter;
}

.adr-toc-links a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1.2rem;
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 2px solid transparent;
}

.adr-toc-links a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.55;
  flex-shrink: 0;
  min-width: 22px;
}

.adr-toc-links a:hover {
  background: #eff6ff;
  border-left-color: var(--primary-color);
  padding-left: 1.5rem;
  color: var(--primary-color);
}

.adr-toc-links a.active {
  color: var(--primary-color);
  border-left-color: var(--primary-color);
  font-weight: 700;
}

.adr-toc-links a.active::before {
  opacity: 1;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  #adrTocBtn {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
  }

  #adrTocPanel {
    left: 15px;
    width: calc(100vw - 30px);
    max-width: 280px;
  }
}