/* ================= Βασικές Ρυθμίσεις & Χρώματα ================= */
:root {
    --navy-blue: #0A192F;
    --gold: #D4AF37;
    --light-bg: #F8F9FA;
    --text-dark: #333333;
    --text-light: #FFFFFF;
}

body.dark-mode {
    --light-bg: #0A192F;
    --text-dark: #E0E0E0;
    --navy-blue: #020C1B;
}

body {
    font-family: 'Work Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    margin-top: 0;
}

/* ================= Navigation Bar ================= */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: var(--navy-blue);
    color: var(--text-light);
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
    margin-left: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    border-radius: 5px;
}

.nav-links {
    margin-right: 50px;
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover { 
    color: var(--gold); 
}

#theme-toggle {
    background-color: var(--gold);
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    color: var(--navy-blue);
    margin-left: 20px;
    transition: background-color 0.3s;
}

#theme-toggle:hover {
    background-color: #b8972e;
}

/* ================= Hero Section (Αρχική με Βίντεο) ================= */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Κρύβει ό,τι περισσεύει από το βίντεο */
}

/* Ρυθμίσεις για να καλύπτει το βίντεο όλη την οθόνη */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 25, 47, 0.5); /* Σκούρο φίλτρο για να φαίνονται τα γράμματα */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2; /* Μπαίνει πάνω από το βίντεο και το φίλτρο */
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 5rem;
    font-style: italic;
    color: var(--gold);
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-top: 10px;
    letter-spacing: 2px;
}

/* ================= Στατιστικά ================= */
.stats-section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 60px 20px;
    background-color: var(--navy-blue);
    color: var(--text-light);
    text-align: center;
}

.stat-box {
    margin: 10px;
}

.stat-box h2 {
    font-size: 3rem;
    color: var(--gold);
    margin: 0;
}

/* ================= Ποιοι Είμαστε (About) ================= */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #bae6fd 100%);
    position: relative;
    overflow: hidden;
}

body.dark-mode .about-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    /* Glassmorphism Effect: Κάνει το πλαίσιο να μοιάζει με θολό γυαλί */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 32px rgba(0, 32, 96, 0.1);
    position: relative;
}

body.dark-mode .about-content {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Διακοσμητικό Τιμόνι Πλοίου πίσω από το κείμενο */
.about-content::before {
    content: "☸";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    color: rgba(2, 132, 199, 0.05); /* Πολύ αχνό θαλασσί */
    z-index: 0;
    pointer-events: none;
}

.about-section h2 {
    color: var(--navy-blue);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

body.dark-mode .about-section h2 {
    color: var(--gold);
}

.about-content p {
    font-size: 1.15rem;
    color: #334155;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    text-align: justify;
    margin-bottom: 20px;
}

body.dark-mode .about-content p {
    color: #cbd5e1;
}

/* ================= Το πλαίσιο του αντιπροσώπου (Kokkinos Sales) - Glassmorphism ================= */
.dealer-wrapper {
    position: relative;
    margin-top: 60px;
    z-index: 1;
}

/* Οι χρωματιστές "μπάλες" που κρύβονται ΠΙΣΩ από το γυαλί */
.dealer-wrapper::before,
.dealer-wrapper::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px); /* Θολώνει το χρώμα */
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

/* Χρυσή μπάλα πάνω δεξιά */
.dealer-wrapper::before {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: -20px;
    right: 50px;
    animation-delay: 0s;
}

/* Γαλάζια μπάλα κάτω αριστερά */
.dealer-wrapper::after {
    width: 200px;
    height: 200px;
    background: #0284c7; /* Φωτεινό μπλε/γαλάζιο */
    bottom: -30px;
    left: 20px;
    animation-delay: 3s; /* Αργεί λίγο για να κινούνται διαφορετικά */
}

/* Κίνηση (πάνω-κάτω) των χρωμάτων πίσω από το γυαλί */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}

/* Η Κάρτα του Γυαλιού */
.dealer-box {
    padding: 40px; 
    text-align: center;
    border-radius: 20px;
    
    /* Το εφέ του Παγωμένου Γυαλιού (Frosted Glass) */
    background: rgba(255, 255, 255, 0.15); /* Πολύ ημιδιάφανο λευκό */
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    
    /* Λεπτό λευκό περίγραμμα και χρυσή πινελιά */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 6px solid var(--gold);
    
    /* Βαθιά, απαλή σκιά για να ξεχωρίζει */
    box-shadow: 0 8px 32px rgba(0, 32, 96, 0.15);
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden; /* Για να μην βγαίνουν τα περιθώρια έξω */
}

.dealer-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 32, 96, 0.25);
    background: rgba(255, 255, 255, 0.25); /* Φωτίζεται λίγο όταν πας το ποντίκι */
}

body.dark-mode .dealer-box {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 6px solid var(--gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Το κουμπί (Link) μέσα στο πλαίσιο - Παραμένει το ίδιο εντυπωσιακό */
.dealer-btn {
    display: inline-block; 
    background-color: var(--navy-blue); 
    color: var(--gold); 
    padding: 15px 35px; 
    text-decoration: none; 
    font-size: 1.1rem;
    font-weight: 700; 
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
    position: relative;
    z-index: 2; /* Πάνω από όλα τα άλλα */
}

.dealer-btn:hover {
    background-color: var(--gold);
    color: var(--navy-blue);
    border: 2px solid var(--navy-blue);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: scale(1.05); 
}
/* ================= INTERACTIVE EXPANDING SHOWCASE ================= */
.cinematic-showcase {
    width: 100%;
    margin: 80px 0;
    background-color: var(--light-bg);
}

body.dark-mode .cinematic-showcase {
    background-color: var(--navy-blue);
}

.c-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    /* Βάζουμε cursor pointer για να ξέρει ο χρήστης ότι υπάρχει interaction */
    cursor: e-resize; 
}

/* --- ΔΕΞΙΑ ΠΛΕΥΡΑ (ΕΓΧΡΩΜΗ - ΒΑΣΗ) --- */
.c-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.c-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- ΑΡΙΣΤΕΡΗ ΠΛΕΥΡΑ (ΑΣΠΡΟΜΑΥΡΗ - ΤΟ ΚΟΨΙΜΟ) --- */
.c-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Η αρχική (default) θέση στη μέση */
    clip-path: polygon(0 0, 52% 0, 42% 100%, 0 100%);
    transition: clip-path 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.c-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s ease;
}

/* --- ΤΑ ΜΑΓΙΚΑ HOVER EFFECTS (EXPANDING) --- */

/* 1. Όταν κάνεις Hover πάνω στο αριστερό (ασπρόμαυρο) μέρος */
.c-left:hover {
    /* Το κόψιμο πάει τέρμα δεξιά, αποκαλύπτοντας όλη την αριστερή εικόνα */
    clip-path: polygon(0 0, 95% 0, 85% 100%, 0 100%);
    z-index: 10;
}

.c-left:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.1) brightness(1); /* Παίρνει χρώμα */
}

/* 2. Όταν κάνεις Hover πάνω στο δεξί (έγχρωμο) μέρος. 
   Για να το πετύχουμε με CSS, δίνουμε την εντολή στο container και αφαιρούμε την περίπτωση 1 */
.c-container:hover .c-left:not(:hover) {
    /* Το κόψιμο πάει τέρμα αριστερά, κρύβοντας την αριστερή εικόνα */
    clip-path: polygon(0 0, 15% 0, 5% 100%, 0 100%);
}

.c-container:hover .c-right img {
    transform: scale(1.05);
}


/* --- ΣΚΟΥΡΟ ΣΒΗΣΙΜΟ ΚΑΤΩ (ΓΙΑ ΤΑ ΓΡΑΜΜΑΤΑ) --- */
.c-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 40%, transparent 100%);
    z-index: 5;
    pointer-events: none; /* ΠΟΛΥ ΣΗΜΑΝΤΙΚΟ: Αφήνει το ποντίκι να "διαβάζει" τις εικόνες από κάτω */
}

/* --- ΠΕΡΙΕΧΟΜΕΝΟ (ΚΕΙΜΕΝΟ & ΚΟΥΜΠΙ) --- */
.c-content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none; /* Το κείμενο δεν μπλοκάρει το hover στις εικόνες */
}

.c-action {
    pointer-events: auto; /* ΑΛΛΑ το κουμπί πρέπει να πατιέται! */
}

.c-badge {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.c-cyan { color: #00e5ff; }

.c-text h2 {
    font-size: 5rem;
    margin: 0;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 2px;
    font-style: italic;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9);
}

.c-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin: 10px 0 0 0;
    font-weight: 600;
    letter-spacing: 3px;
}

/* --- ΚΟΥΜΠΙ --- */
.c-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid #00e5ff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0,229,255,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.c-btn:hover {
    background: #00e5ff;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 229, 255, 0.6);
}

/* Responsive (Κινητά) */
@media (max-width: 900px) {
    /* Στα κινητά απενεργοποιούμε το hover effect, γιατί δεν υπάρχει "ποντίκι" για να συρθεί */
    .c-left:hover { clip-path: polygon(0 0, 100% 0, 100% 45%, 0 35%); }
    .c-container:hover .c-left:not(:hover) { clip-path: polygon(0 0, 100% 0, 100% 45%, 0 35%); }
    .c-left { clip-path: polygon(0 0, 100% 0, 100% 45%, 0 35%); }
    
    .c-content {
        flex-direction: column;
        align-items: flex-start;
        left: 30px; right: 30px; bottom: 30px;
    }
    .c-text h2 { font-size: 3.5rem; }
    .c-action { margin-top: 25px; width: 100%; }
    .c-btn { width: 100%; justify-content: center; }
}
/* ================= Σκάφη & Cards ================= */
.boats-section {
    padding: 100px 20px;
    text-align: center;
    /* Αυτό δημιουργεί ένα απαλό μοτίβο με θαλασσινά κύματα / νερά στο φόντο! */
    background-color: #e0f2fe; 
    background-image: radial-gradient(circle at 100% 150%, #e0f2fe 24%, white 24%, white 28%, #e0f2fe 28%, #e0f2fe 36%, white 36%, white 40%, transparent 40%, transparent),
                      radial-gradient(circle at 0 150%, #e0f2fe 24%, white 24%, white 28%, #e0f2fe 28%, #e0f2fe 36%, white 36%, white 40%, transparent 40%, transparent),
                      radial-gradient(circle at 50% 100%, white 10%, #e0f2fe 10%, #e0f2fe 23%, white 23%, white 30%, #e0f2fe 30%, #e0f2fe 43%, white 43%, white 50%, #e0f2fe 50%, #e0f2fe 63%, white 63%, white 71%, transparent 71%, transparent),
                      radial-gradient(circle at 100% 50%, white 5%, #e0f2fe 5%, #e0f2fe 15%, white 15%, white 20%, #e0f2fe 20%, #e0f2fe 29%, white 29%, white 34%, #e0f2fe 34%, #e0f2fe 44%, white 44%, white 49%, transparent 49%, transparent),
                      radial-gradient(circle at 0 50%, white 5%, #e0f2fe 5%, #e0f2fe 15%, white 15%, white 20%, #e0f2fe 20%, #e0f2fe 29%, white 29%, white 34%, #e0f2fe 34%, #e0f2fe 44%, white 44%, white 49%, transparent 49%, transparent);
    background-size: 100px 50px;
}

body.dark-mode .boats-section {
    background-color: #0b1a30;
    background-image: none; /* Στο dark mode το αφήνουμε σκούρο για να διαβάζεται */
}

.boats-section h2 {
    color: var(--navy-blue);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    position: relative;
    display: inline-block;
}

/* Προσθέτει μια μικρή άγκυρα ή καραβάκι πάνω από τον τίτλο */
.boats-section h2::before {
    content: "⚓";
    font-size: 2rem;
    color: #0284c7; /* Θαλασσί χρώμα */
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.boats-section p {
    font-size: 1.2rem;
    color: #0369a1;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 40px;
}

/* ... ο υπόλοιπος κώδικας για τις κάρτες (.boats-grid, .boat-card κτλ) παραμένει ίδιος! ... */
.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

/* ================= Σκάφη & Έξυπνες Κάρτες (Hover Effects) ================= */
.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 50px auto;
}

/* Η Έξυπνη Κάρτα */
.boat-card {
    position: relative;
    background-color: white;
    border-radius: 20px;
    overflow: hidden; /* Κρατάει το zoom της φωτογραφίας μέσα στα όρια */
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 32, 96, 0.08);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    height: 350px;
}

body.dark-mode .boat-card {
    background-color: #112240;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Ανύψωση ολόκληρης της κάρτας όταν περνάει το ποντίκι */
.boat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 32, 96, 0.2);
}

/* Η φωτογραφία του σκάφους */
.boat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Το εφέ Zoom στη φωτογραφία στο hover */
.boat-card:hover img {
    transform: scale(1.15);
}

/* Το σκοτεινό φίλτρο που εμφανίζεται πάνω από τη φωτογραφία */
.boat-card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.2) 50%, transparent 100%);
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.boat-card:hover::after {
    opacity: 0.9; /* Σκοτεινιάζει περισσότερο στο hover για να διαβάζονται τα γράμματα */
}

/* Το περιεχόμενο της κάρτας (Τίτλος και κείμενο) */
.boat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(30px); /* Το σπρώχνει λίγο προς τα κάτω αρχικά */
    transition: transform 0.4s ease;
}

.boat-card:hover .boat-content {
    transform: translateY(0); /* Ανεβαίνει προς τα πάνω στο hover */
}

.boat-card h3 { 
    color: white; 
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: color 0.3s ease;
}

.boat-card:hover h3 {
    color: var(--gold); /* Ο τίτλος γίνεται χρυσός! */
}

.boat-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

/* Το έξυπνο μήνυμα "ΔΕΙΤΕ ΠΕΡΙΣΣΟΤΕΡΑ" που εμφανίζεται στο hover */
.boat-more {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 2px;
    opacity: 0; /* Κρυφό αρχικά */
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.1s; /* Καθυστερεί λίγο για ωραίο εφέ */
}

.boat-card:hover .boat-more {
    opacity: 1; /* Εμφανίζεται */
    transform: translateY(0);
}

/* ================= Modals (Παράθυρα Σκαφών) ================= */
.modal {
    display: none; 
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
}

body.dark-mode .modal-content {
    background-color: #112240;
    color: var(--text-dark);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--navy-blue);
}

body.dark-mode .close-btn:hover {
    color: var(--gold);
}

.modal-content h2 {
    color: var(--navy-blue);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

body.dark-mode .modal-content h2 {
    color: var(--gold);
}

.video-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
}

/* ================= ΦΟΡΜΑ ΕΠΙΚΟΙΝΩΝΙΑΣ ================= */
.contact-form {
    width: min(1120px, calc(100% - 40px));
    margin: 42px auto 0;
    padding: 34px;
    background: rgba(5, 19, 45, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: #e8f4ff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    color: #ffffff;
    font: inherit;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease,
                box-shadow 0.25s ease, transform 0.25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(232, 244, 255, 0.65);
}

.form-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, #42c7ff 50%),
        linear-gradient(135deg, #42c7ff 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 52%,
        calc(100% - 13px) 52%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.form-field select option {
    color: #ffffff;
    background: #0b1c3b;
}

.form-field textarea {
    min-height: 132px;
    resize: vertical;
    line-height: 1.5;
}

.form-message {
    grid-column: 1 / -1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    background: rgba(255, 255, 255, 0.16);
    border-color: #35c6ff;
    box-shadow: 0 0 0 4px rgba(53, 198, 255, 0.16),
                0 0 20px rgba(53, 198, 255, 0.12);
}

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    margin-top: 24px;
    padding: 16px 24px;
    border: 1px solid #3acbff;
    border-radius: 8px;
    color: #04142e;
    background: linear-gradient(135deg, #63d9ff, #22a8e8);
    box-shadow: 0 10px 24px rgba(34, 168, 232, 0.28);
    cursor: pointer;
    font: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease,
                filter 0.25s ease;
}

.contact-submit span {
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.contact-submit:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(34, 168, 232, 0.45);
}

.contact-submit:hover span {
    transform: translateX(5px);
}

.contact-submit:active {
    transform: translateY(0);
}

/* Κινητό */
@media (max-width: 700px) {
    .contact-form {
        width: min(100% - 28px, 520px);
        margin-top: 30px;
        padding: 22px 16px;
        border-radius: 12px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-message {
        grid-column: auto;
    }
}
/* ================= FOOTER & MAP ================= */
.site-footer {
    color: #eaf7ff;
    background:
        radial-gradient(circle at 80% 10%, rgba(35, 172, 233, 0.20), transparent 30%),
        #06142d;
    border-top: 1px solid rgba(91, 212, 255, 0.22);
}

.footer-inner {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0 45px;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.15fr);
    gap: 70px;
    align-items: center;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-decoration: none;
}

.footer-info > p {
    max-width: 380px;
    margin: 0 0 24px;
    color: #b6cae2;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    color: #72d9ff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-map-wrap h3 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: 0.6px;
}

.footer-map {
    height: 260px;
    overflow: hidden;
    border: 1px solid rgba(97, 212, 255, 0.35);
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.32);
}

.footer-map iframe {
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

.maps-link {
    display: inline-block;
    margin-top: 16px;
    color: #65d8ff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
}

.maps-link:hover {
    color: #ffffff;
}

.footer-bottom {
    width: min(1200px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #91a9c5;
    font-size: 0.85rem;
}

.cookie-settings-btn {
    padding: 0;
    color: #7ce1ff;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 0.85rem;
}

.cookie-settings-btn:hover {
    color: #ffffff;
}

@media (max-width: 800px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 48px 0 36px;
    }

    .footer-map {
        height: 230px;
    }

    .footer-bottom {
        padding: 20px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}
/* ================= COOKIE BANNER ================= */
.cookie-banner {
    position: fixed;
    z-index: 9999;
    right: 24px;
    bottom: 24px;
    width: min(540px, calc(100% - 32px));
    padding: 24px;
    display: none;
    gap: 24px;
    align-items: center;
    color: #effaff;
    background: rgba(5, 20, 45, 0.96);
    border: 1px solid rgba(86, 210, 255, 0.35);
    border-radius: 14px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.cookie-banner.show {
    display: flex;
    animation: cookieIn 0.35s ease both;
}

@keyframes cookieIn {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-text h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    color: #c2d4e6;
    font-size: 0.88rem;
    line-height: 1.55;
}

.cookie-text a {
    color: #62d7ff;
}

.cookie-actions {
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 9px;
}

.cookie-actions button {
    min-width: 160px;
    padding: 11px 14px;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.7px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-reject {
    color: #cceafa;
    border: 1px solid rgba(134, 210, 245, 0.45);
    background: transparent;
}

.cookie-accept {
    color: #04162d;
    border: 1px solid #51d5ff;
    background: #51d5ff;
}

.cookie-actions button:hover {
    transform: translateY(-2px);
}

.cookie-reject:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.cookie-accept:hover {
    background: #8ae6ff;
}

@media (max-width: 600px) {
    .cookie-banner {
        right: 16px;
        bottom: 16px;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .cookie-actions {
        flex-direction: row;
    }

    .cookie-actions button {
        min-width: 0;
        flex: 1;
    }
}
/* ================= ΒΙΝΤΕΟ ΠΑΡΟΥΣΙΑΣ ΣΚΑΦΩΝ ================= */
.modal-content .video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin-top: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 80% 15%, rgba(42, 194, 255, 0.18), transparent 34%),
        #06142d;
    border: 1px solid rgba(64, 198, 255, 0.35);
    border-radius: 14px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.modal-content .video-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Placeholder για μοντέλα χωρίς διαθέσιμο video */
.modal-content .video-container:has(p) {
    min-height: 190px;
    aspect-ratio: auto;
    padding: 25px;
    box-sizing: border-box;
}

.modal-content .video-container p {
    margin: 0;
    color: #d7ecf8;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.modal-content .video-container p::before {
    content: "▶";
    display: block;
    width: 54px;
    height: 54px;
    margin: 0 auto 16px;
    line-height: 54px;
    color: #0b1b35;
    background: #4dd2ff;
    border-radius: 50%;
    font-style: normal;
    font-size: 1.35rem;
    box-shadow: 0 0 22px rgba(77, 210, 255, 0.35);
}

@media (max-width: 650px) {
    .modal-content .video-container {
        margin-top: 22px;
        border-radius: 10px;
    }

    .modal-content .video-container:has(p) {
        min-height: 160px;
    }
}