/* --- Typography Imports --- */
        @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:wght@400;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
        :root {
            --primary-color: #d4a373;
            --secondary-color: #faedcd;
            --accent-color: #ccd5ae;
            --text-dark: #2c2c2c;
            --text-light: #6b5b4e;
            --white: #ffffff;
            --font-heading:'Cormorant Garamond',serif;
            --font-nav:'Inter',sans-serif;
            --font-body:'Lato',sans-serif;
            --border-radius: 4px;
            --shadow: 0 4px 20px rgba(0,0,0,0.06);
            --shadow-hover: 0 12px 30px rgba(0,0,0,0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            padding-top: 70px;
        }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        section { padding: 5rem 0; }

        /* ==========================
           TOP MENU (με Hamburger)
        ========================== */
        .top-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            padding: 22px 24px;
            transition: .35s ease;
            background: #1a1a1a;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .top-menu.scrolled {
            background: rgba(255,255,255,.97);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 1px 0 rgba(0,0,0,.06);
            border-bottom-color: transparent;
            padding: 16px 24px;
        }

        /* Desktop menu */
        .menu-container {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex: 1;
        }

        .menu-container a {
            font-family: var(--font-nav);
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 12.5px;
            text-transform: uppercase;
            letter-spacing: 1.8px;
            transition: .3s;
            position: relative;
            padding: 6px 0;
        }

        .top-menu.scrolled .menu-container a {
            color: #2c2c2c;
        }

        .menu-container a:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 1px;
            background: currentColor;
            transition: .3s;
        }

        .menu-container a:hover:after {
            width: 100%;
        }

        /* HAMBURGER - κρυφό σε desktop */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            z-index: 100;
            background: transparent;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: white;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .top-menu.scrolled .hamburger span {
            background: #2c2c2c;
        }

        /* Mobile menu (κρυφό αρχικά) */
        .mobile-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.99);
            backdrop-filter: blur(10px);
            padding: 8px 24px 20px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            gap: 0;
            border-radius: 0;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            font-family: var(--font-nav);
            color: #2c2c2c;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 14px 16px;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: background 0.3s;
        }

        .mobile-menu a:hover {
            background: rgba(212,163,115,0.08);
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .menu-container {
                display: none;
            }
            .hamburger {
                display: flex;
            }
            .top-menu {
                padding: 14px 20px;
            }
            .top-menu.scrolled {
                padding: 10px 20px;
            }
        }

        /* =============================================
           TRUST BAR
           ============================================= */
        .trust-bar {
            background: var(--text-dark);
            padding: 22px 0;
        }
        .trust-bar .container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.9);
        }
        .trust-item svg {
            width: 18px; height: 18px;
            stroke: var(--primary-color);
            flex-shrink: 0;
        }
        .trust-item span {
            font-family: var(--font-nav);
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            white-space: nowrap;
        }
        @media (max-width: 768px) {
            .trust-bar .container { gap: 22px 28px; }
            .trust-item span { font-size: 11px; }
        }

        /* =============================================
           COLLECTION GRID (δείγματα σχεδίων)
           ============================================= */
        .collection-section { background: var(--white); }
        .collection-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .collection-card {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: var(--border-radius);
            cursor: pointer;
        }
        .collection-card img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        .collection-card:hover img { transform: scale(1.06); }
        .collection-card::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 45%, transparent 70%);
        }
        .collection-card-label {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            padding: 26px 22px;
            z-index: 2;
        }
        .collection-card-eyebrow {
            font-family: var(--font-nav);
            font-size: 10.5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
            display: block;
            margin-bottom: 6px;
        }
        .collection-card h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 10px;
        }
        .collection-card-link {
            font-family: var(--font-nav);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #fff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-bottom: 1px solid rgba(255,255,255,0.5);
            padding-bottom: 3px;
            transition: border-color 0.3s;
        }
        .collection-card-link:hover { border-color: #fff; }
        @media (max-width: 900px) {
            .collection-grid { grid-template-columns: 1fr 1fr; }
            .collection-card:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
        }
        @media (max-width: 560px) {
            .collection-grid { grid-template-columns: 1fr; }
            .collection-card:first-child { aspect-ratio: 3/4; }
        }

        /* --- Header --- */
        header {
            background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)),
                        url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1920&auto=format&fit=crop');
            background-size: cover;
            background-position: center 30%;
            height: 89vh;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 24px;
            position: relative;
        }
        header::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 120px;
            background: linear-gradient(to top, #faedcd4a, transparent);
            pointer-events: none;
        }
        header .flourish {
            font-family: var(--font-nav);
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 1.1rem;
            letter-spacing: 4px;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
            animation: fadeInDown 1s ease-out;
        }
        header h1 {
            font-family: var(--font-heading);
            font-size: 2.6rem; font-weight: 500;
            letter-spacing: 0.3px;
            line-height: 1.3;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
            animation: fadeInDown 1s ease-out;
        }
        header h1::after {
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            background: rgba(255,255,255,0.6);
            margin: 1.4rem auto 0;
        }
        header p.subtitle {
            font-size: 1.4rem;
            max-width: 750px;
            margin-top: 0.5rem;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out 0.2s backwards;
        }
        .hero-decoration {
            margin-top: 2rem;
            font-size: 1.1rem;
            opacity: 0.85;
            animation: fadeInUp 1s ease-out 0.4s backwards;
        }

        /* =============================================
           HERO CARDS — 350×350 δίπλα-δίπλα με link
           ============================================= */
        .hero-cards-wrapper {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 32px;
            padding: 50px 24px 40px;
            flex-wrap: wrap;
            position: relative;
            z-index: 20;
        }

        .hero-card {
            width: 650px;
            height: 450px;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 12px 35px rgba(0,0,0,0.18);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            isolation: isolate;
            flex-shrink: 0;
        }

        .hero-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 22px 45px rgba(0,0,0,0.25);
        }

        .hero-card::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -2;
            background-image: var(--card-bg-image, none);
            background-size: cover;
            background-position: center;
            transition: transform 0.6s ease;
        }
        .hero-card:hover::before {
            transform: scale(1.07);
        }

        .hero-card::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(
                to bottom,
                rgba(0,0,0,0.20) 0%,
                rgba(0,0,0,0.45) 55%,
                rgba(0,0,0,0.70) 100%
            );
        }

        .hero-card-content {
            padding: 28px 24px 0;
            flex: 1;
        }

        .hero-card .card-icon {
            width: 30px; height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: #fff;
        }
        .hero-card .card-icon svg { width: 26px; height: 26px; stroke: #fff; stroke-width: 1.5; }

        .hero-card h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            color: #fff;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
            margin-bottom: 10px;
        }
        .hero-card p {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.88);
            text-shadow: 0 1px 4px rgba(0,0,0,0.5);
            line-height: 1.55;
        }

        .hero-card-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 16px 20px 20px;
            padding: 12px 20px;
            background: rgba(255,255,255,0.18);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.45);
            border-radius: 2px;
            color: #fff;
            font-family: var(--font-nav);
            font-size: 0.78rem;
            font-weight: 600;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1.5px;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        .hero-card-link:hover {
            background: rgba(255,255,255,0.32);
            transform: scale(1.03);
        }
        .hero-card-link svg { flex-shrink: 0; }

        /* --- Intro --- */
        .intro-text {
            background: var(--white);
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 20;
            padding: 3rem 3.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-bottom: 4px solid var(--primary-color);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards 0.5s;
        }
        .intro-text p {
            font-size: 1.15rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* --- Section Headers --- */
        .section-title-wrapper { text-align: center; margin-bottom: 3.5rem; }
        .section-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        .section-eyebrow {
            display: block;
            font-family: var(--font-nav);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--primary-color);
            margin-bottom: 0.8rem;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px; left: 50%;
            transform: translateX(-50%);
            width: 70px; height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
        }
        .section-subtitle { color: var(--text-light); font-size: 1.1rem; margin-top: 1.2rem; }

        /* --- Features Grid --- */
        .features-section {
            padding-top: 3rem; padding-bottom: 5rem;
            background: linear-gradient(180deg, var(--secondary-color) 0%, #fdf8f0 100%);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        /* FEATURES SLIDER */
        .features-slider {
            position: relative;
            width: 100%;
            aspect-ratio: 16/8;
            overflow: hidden;
            border-radius: var(--border-radius);
        }
        .features-slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.7s cubic-bezier(0.65,0,0.35,1);
        }
        .feature-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }
        .feature-slide img {
            width: 100%; height: 100%;
            object-fit: cover;
        }
        .feature-slide::after {
            content: '';
            position: absolute; inset: 0;
            background: linear-gradient(90deg, rgba(20,20,20,0.78) 0%, rgba(20,20,20,0.35) 45%, rgba(20,20,20,0.05) 70%);
        }
        .feature-slide-content {
            position: absolute;
            left: 0; top: 0; bottom: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 3rem 4rem;
            max-width: 480px;
            z-index: 2;
        }
        .feature-slide-number {
            font-family: var(--font-nav);
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .feature-slide-content h3 {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 500;
            color: #fff;
            margin-bottom: 1rem;
        }
        .feature-slide-content p {
            color: rgba(255,255,255,0.85);
            font-size: 0.98rem;
            line-height: 1.7;
        }
        .slider-nav {
            position: absolute;
            top: 0; bottom: 0;
            width: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 3;
            color: #fff;
            opacity: 0.55;
            transition: opacity 0.25s;
        }
        .slider-nav:hover { opacity: 1; }
        .slider-nav svg { width: 26px; height: 26px; stroke-width: 1.3; }
        .slider-nav.prev { left: 0; }
        .slider-nav.next { right: 0; }
        .slider-dots {
            position: absolute;
            left: 4rem; bottom: 1.8rem;
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        .slider-dots button {
            width: 26px; height: 2px;
            background: rgba(255,255,255,0.4);
            border: none;
            padding: 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .slider-dots button.active { background: var(--primary-color); }
        @media (max-width: 768px) {
            .features-slider { aspect-ratio: 4/5; }
            .feature-slide-content { padding: 2rem 1.8rem; max-width: 100%; }
            .feature-slide-content h3 { font-size: 1.5rem; }
            .slider-nav { width: 46px; }
            .slider-dots { left: 1.8rem; }
        }

        /* PROCESS STEPS */
        .process-section { background: linear-gradient(180deg, #fdf8f0 0%, var(--white) 100%); }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }
        .process-step { text-align: center; position: relative; }
        .process-number {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            font-weight: 500;
            color: var(--primary-color);
            opacity: 0.35;
            line-height: 1;
            margin-bottom: 0.8rem;
        }
        .process-step h3 {
            font-family: var(--font-nav);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-dark);
            margin-bottom: 0.8rem;
        }
        .process-step p { color: var(--text-light); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }
        @media (max-width: 768px) {
            .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
        }

        /* CARD */
        .card {
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1),
                        transform 0.8s cubic-bezier(0.4,0,0.2,1);
        }
        .card > * { position: relative; z-index: 1; }
        .card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .card:hover {
            transform: translateY(-4px) !important;
        }
        .card-icon {
            width: 40px; height: 40px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            transition: transform 0.3s;
            position: relative; z-index: 1;
        }
        .card:hover .card-icon { transform: translateY(-3px); }
        .card-icon svg { width: 32px; height: 32px; stroke-width: 1.5; }
        .card h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem; font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
            position: relative; z-index: 1;
            text-shadow: 0 1px 4px rgba(255,255,255,0.8);
        }
        .card p {
            font-size: 0.95rem;
            color: var(--text-light);
            line-height: 1.65;
            position: relative; z-index: 1;
            text-shadow: 0 1px 3px rgba(255,255,255,0.7);
        }

        /* TIMELINE */
        .timeline-section {
            background: linear-gradient(135deg, #ffffff 0%, #fef9f0 100%);
            position: relative; overflow: hidden;
        }
        .timeline-section::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(212,163,115,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%; transform: translateX(-50%);
            width: 4px; height: 100%;
            background: linear-gradient(180deg, var(--primary-color), var(--accent-color), var(--primary-color));
            border-radius: 4px;
            box-shadow: 0 0 8px rgba(212,163,115,0.5);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            width: 100%;
            display: flex;
            justify-content: flex-end;
        }
        .timeline-item:nth-child(even) { justify-content: flex-start; }
        .timeline-dot {
            position: absolute;
            left: 50%; transform: translateX(-50%);
            width: 24px; height: 24px;
            background: var(--primary-color);
            border-radius: 50%;
            z-index: 10;
            box-shadow: 0 0 0 4px rgba(212,163,115,0.3), 0 0 0 8px rgba(212,163,115,0.1);
            transition: all 0.3s ease;
        }
        .timeline-item:hover .timeline-dot {
            transform: translateX(-50%) scale(1.2);
            background: #c48a4b;
            box-shadow: 0 0 0 6px rgba(212,163,115,0.4), 0 0 0 12px rgba(212,163,115,0.15);
        }
        .timeline-content {
            width: 45%;
            background: var(--white);
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: var(--shadow);
            position: relative;
            border: 1px solid rgba(212,163,115,0.15);
            opacity: 0;
            transform: translateY(30px) scale(0.95);
            transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.4s ease;
        }
        .timeline-content.revealed { opacity: 1; transform: translateY(0) scale(1); }
        .timeline-item:nth-child(odd) .timeline-content { margin-right: 55%; }
        .timeline-item:nth-child(even) .timeline-content { margin-left: 55%; }
        .timeline-content:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }
        .timeline-content::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 0; height: 0;
            border-style: solid;
        }
        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -12px;
            border-width: 8px 0 8px 12px;
            border-color: transparent transparent transparent var(--white);
        }
        .timeline-item:nth-child(even) .timeline-content::before {
            left: -12px;
            border-width: 8px 12px 8px 0;
            border-color: transparent var(--white) transparent transparent;
        }
        .timeline-icon {
            width: 50px; height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1rem;
            color: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .timeline-icon svg { width: 24px; height: 24px; stroke: white; }
        .timeline-content h3 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }
        .timeline-content ul { margin-top: 0.8rem; padding-left: 1.2rem; }
        .timeline-content li { margin: 0.5rem 0; color: var(--text-light); }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, #e8d5b5, #d4a373);
            text-align: center;
            padding: 4rem 2rem;
            border-radius: var(--border-radius);
            margin: 2rem auto 4rem;
            max-width: 900px;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            box-shadow: 0 8px 30px rgba(212,163,115,0.3);
        }
        .cta-section.visible { opacity: 1; transform: translateY(0); }

        /* CTA με φωτογραφία (flat-lay) — για "Διαθέσιμα δείγματα" */
        .cta-photo {
            background:
                linear-gradient(135deg, rgba(44,44,44,0.55), rgba(44,44,44,0.72)),
                url('https://images.unsplash.com/photo-1742581659446-6260fc707e7d?q=80&w=1600&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            min-height: 340px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .cta-photo p {
            max-width: 560px;
            font-size: 1.15rem;
        }
        .cta-photo .cta-button {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255,255,255,0.85);
            box-shadow: none;
        }
        .cta-photo .cta-button:hover {
            background: #fff;
            color: #b87a4a;
        }
        .cta-section h3 {
            font-family: var(--font-heading);
            font-size: 2.1rem;
            font-weight: 500;
            letter-spacing: 0.3px;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            margin-bottom: 1rem;
        }
        .cta-section p { color: rgba(255,255,255,0.95); font-size: 1.1rem; margin-bottom: 1.8rem; }
        .cta-button {
            display: inline-block;
            background: white;
            color: #b87a4a;
            padding: 0.9rem 2.5rem;
            border-radius: 2px;
            text-decoration: none;
            font-family: var(--font-nav);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            background: #fffaf5;
        }

        .divider-line {
            width: 60px;
            height: 1px;
            background: var(--primary-color);
            opacity: 0.5;
            margin: 2.5rem auto;
        }

        footer {
            background: #1a1a1a;
            color: var(--white);
        }
        .footer-main {
            padding: 4.5rem 24px 3rem;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-brand h2 {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 0.9rem;
            color: var(--primary-color);
        }
        .footer-brand p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            max-width: 320px;
        }
        .footer-col h4 {
            font-family: var(--font-nav);
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: #fff;
            margin-bottom: 1.2rem;
        }
        .footer-col a {
            display: block;
            font-family: var(--font-nav);
            font-size: 13.5px;
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            margin-bottom: 0.85rem;
            transition: color 0.25s;
        }
        .footer-col a:hover { color: var(--primary-color); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 1.6rem 24px;
            text-align: center;
        }
        .footer-bottom .copyright {
            font-family: var(--font-nav);
            font-size: 11.5px;
            letter-spacing: 0.5px;
            color: rgba(255,255,255,0.4);
        }
        @media (max-width: 900px) {
            .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
        }
        @media (max-width: 560px) {
            .footer-main { grid-template-columns: 1fr; padding: 3rem 20px 2rem; }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @media (max-width: 768px) {
            .hero-cards-wrapper { gap: 20px; padding: 30px 16px; }
            .hero-card { width: 100%; max-width: 350px; height: 350px; }
            .timeline-container::before { left: 20px; }
            .timeline-item { justify-content: flex-start !important; margin-left: 20px; }
            .timeline-dot { left: 20px !important; transform: translateX(0) !important; }
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                width: calc(100% - 50px);
                margin-left: 50px !important;
                margin-right: 0 !important;
            }
            .timeline-content::before {
                left: -12px !important; right: auto !important;
                border-width: 8px 12px 8px 0 !important;
                border-color: transparent var(--white) transparent transparent !important;
            }
            header h1 { font-size: 1.8rem; }
            header .flourish { font-size: 0.65rem; letter-spacing: 2.5px; }
            header p.subtitle { font-size: 1.1rem; }
            .intro-text { padding: 2rem 1.5rem; margin-top: -40px; }
            .section-title { font-size: 2rem; }
            .cta-section { margin: 1.5rem 1rem; padding: 2.5rem 1.5rem; }
        }
        @media (max-width: 480px) {
            header h1 { font-size: 1.6rem; }
            header .flourish { font-size: 0.6rem; letter-spacing: 2px; }
            .container { padding: 0 16px; }
            section { padding: 3rem 0; }
            .timeline-content { padding: 1.2rem; }
            .timeline-content h3 { font-size: 1.2rem; }
            .cta-section h3 { font-size: 1.5rem; }
        }
        .trust-item svg {
         width: 24px;
        height: 24px;
        flex-shrink: 0;
        margin-right: 10px;
        }

        /* Εξαιρετικά σημαντικό για το flash of huge icons */
        .trust-bar svg {
         width: 24px !important;
        height: 24px !important;
        }
       
        .trust-icon {
         color: #dfaa77; /* Το καφέ σου χρώμα */
        }
