/* =========================================
   1. ΒΑΣΙΚΕΣ ΡΥΘΜΙΣΕΙΣ & ΤΥΠΟΓΡΑΦΙΑ
========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }
body { background-color: #fff; color: #000; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }

/* =========================================
   2. HEADER & ΚΕΝΤΡΙΚΟ ΜΕΝΟΥ
========================================= */
.header { display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; background-color: #fff; border-bottom: 1px solid #eaeaea; position: sticky; top: 0; z-index: 1000; }
@media (min-width: 768px) { .header { padding: 15px 30px; } }
.logo-container .logo { color: #0056B3; font-weight: 900; font-size: 24px; font-style: italic; line-height: 1; }
@media (min-width: 768px) { .logo-container .logo { font-size: 28px; } }
.logo-container .sub-logo { font-size: 9px; font-weight: 700; color: #666; letter-spacing: 1px; }

.main-nav { display: none; }
.nav-list { display: flex; list-style: none; align-items: center; }
.nav-list > li > a { text-decoration: none; color: #000; font-weight: 800; font-size: 14px; font-style: italic; text-transform: uppercase; transition: color 0.3s; display: flex; align-items: center; }
.nav-list > li > a:hover { color: #0056B3; }
.arrow { font-size: 10px; margin-left: 5px; color: #999; }

.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background-color: #fff; min-width: 200px; list-style: none; box-shadow: 0 8px 16px rgba(0,0,0,0.1); border-top: 3px solid #0056B3; padding: 10px 0; z-index: 200; }
.dropdown-menu li a { display: block; padding: 12px 20px; text-decoration: none; color: #333; font-weight: 700; font-size: 12px; text-transform: uppercase; font-style: italic; }
.dropdown-menu li a:hover { background-color: #f8f9fa; color: #0056B3; }

.nav-list a.nav-btn { background-color: #000; color: #fff; padding: 10px 20px; border: 2px solid #000; }
.nav-list a.nav-btn:hover { background-color: #fff; color: #000; }

/* MOBILE MENU & ICONS */
.nav-icons { display: flex; align-items: center; gap: 15px; font-size: 24px; cursor: pointer; }
.mobile-menu-btn { user-select: none; }

@media (max-width: 991px) {
    .main-nav.active { display: block; position: absolute; top: 100%; left: 0; width: 100%; background-color: #fff; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 20px; }
    .dropdown-menu { position: static; box-shadow: none; border-top: none; border-left: 2px solid #0056B3; padding-left: 10px; display: none; }
    .dropdown.mobile-open .dropdown-menu { display: block; }
}
@media (min-width: 992px) {
    .main-nav { display: block; }
    .nav-list { gap: 30px; }
    .dropdown:hover .dropdown-menu { display: block; } 
    .mobile-menu-btn { display: none; }
}

/* SEARCH */
.search-container { position: relative; display: flex; align-items: center; }
.search-input { padding: 8px 15px; border: 1px solid #ccc; border-radius: 25px; outline: none; font-size: 13px; font-style: italic; font-weight: 700; width: 130px; background-color: #f9f9f9; transition: all 0.3s; }
@media (min-width: 768px) { .search-input { width: 180px; } }
.search-input:focus { border-color: #0056B3; background-color: #fff; width: 160px; }
@media (min-width: 768px) { .search-input:focus { width: 220px; } }

.search-results { display: none; position: absolute; top: 120%; right: 0; width: 100vw; background: #fff; border: 1px solid #eaeaea; box-shadow: 0 8px 16px rgba(0,0,0,0.1); z-index: 1000; max-height: 350px; overflow-y: auto; position: fixed; top: 60px; left: 0; }
@media (min-width: 768px) { .search-results { width: 280px; position: absolute; top: 120%; left: auto; right: 0; border-radius: 8px; } }
.search-result-item { padding: 12px 15px; display: flex; align-items: center; gap: 12px; cursor: pointer; border-bottom: 1px solid #f1f1f1; }
.search-result-item:hover { background: #f4f6f8; }
.result-info h5 { font-size: 13px; font-weight: 800; color: #000; text-transform: uppercase; }
.result-info p { font-size: 11px; font-weight: 700; color: #0056B3; }

/* HERO SECTION & ΑΡΧΙΚΗ */
.hero-modern { background-color: #F8F8F8; border-bottom: 8px solid #000; padding: 50px 20px; }
@media (min-width: 768px) { .hero-modern { padding: 80px 20px; } }
.hero-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero-container { grid-template-columns: 1fr 1fr; } }
.hero-title { font-size: 42px; font-weight: 900; font-style: italic; text-transform: uppercase; line-height: 0.9; margin-bottom: 20px; }
@media (min-width: 768px) { .hero-title { font-size: 80px; letter-spacing: -2px; margin-bottom: 24px; } }
.text-blue { color: #0056B3; }
.hero-subtitle { font-size: 14px; color: #4a5568; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; border-left: 4px solid #000; padding-left: 15px; }
@media (min-width: 768px) { .hero-subtitle { font-size: 18px; letter-spacing: 2px; margin-bottom: 40px; } }
.hero-buttons { display: flex; flex-direction: column; gap: 15px; }
@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }
.btn-dark, .btn-outline { text-decoration: none; padding: 15px 30px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; text-align: center; transition: all 0.3s; }
@media (min-width: 768px) { .btn-dark, .btn-outline { font-size: 14px; letter-spacing: 2px; } }
.btn-dark { background-color: #000; color: #fff; }
.btn-dark:hover { background-color: #0056B3; }
.btn-outline { background-color: #fff; color: #000; border: 2px solid #000; }
.btn-outline:hover { background-color: #f1f1f1; }
.hero-image-placeholder { display: none; background-color: #e2e8f0; aspect-ratio: 1 / 1; align-items: center; justify-content: center; font-weight: 900; color: #a0aec0; font-style: italic; border-radius: 8px; }
@media (min-width: 1024px) { .hero-image-placeholder { display: flex; } }

.categories-section { padding: 60px 20px; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 28px; font-weight: 900; text-transform: uppercase; font-style: italic; margin-bottom: 30px; }
.categories-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
.category-card { position: relative; height: 300px; background-color: #f3f4f6; display: flex; align-items: center; justify-content: center; text-decoration: none; border: 1px solid #e5e7eb; overflow: hidden; }
.category-card .overlay { position: absolute; inset: 0; background-color: rgba(0,0,0,0.05); }
.category-card h3 { position: relative; z-index: 2; font-size: 36px; font-weight: 900; color: #000; font-style: italic; }

.sports-section { padding: 60px 20px; max-width: 1400px; margin: 0 auto; }
.sports-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 500px) { .sports-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sports-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; } }
.sport-card { display: flex; flex-direction: column; text-decoration: none; color: #000; }

/* ----------------------------------------------------
   ΣΩΣΤΗ ΔΙΑΜΟΡΦΩΣΗ ΕΙΚΟΝΩΝ ΑΘΛΗΜΑΤΩΝ (ΚΑΘΕΤΗ ΑΝΑΛΟΓΙΑ)
   ---------------------------------------------------- */
.sport-img {
    background-size: cover;
    background-position: top center; /* Κρατάει τα πρόσωπα/κεφάλια μέσα στο κάδρο */
    background-repeat: no-repeat;
    border-radius: 8px 8px 0 0;
    width: 100%;
    aspect-ratio: 4 / 5; /* Ιδανικό για κάθετες φωτογραφίες στο κινητό */
    min-height: auto; /* Ακυρώνει τα παλιά σταθερά ύψη που παραμόρφωναν την εικόνα */
}

@media (min-width: 768px) { 
    .sport-img { 
        aspect-ratio: 3 / 4; /* Στα desktop την κάνουμε λίγο πιο "κοντή" για ισορροπία */
    } 
}

.sport-card:hover .sport-img { transform: scale(1.05); }
.sport-info { padding: 15px 0; }
.sport-info h3 { font-size: 20px; font-weight: 900; font-style: italic; margin-bottom: 5px; }
.sport-link { font-size: 11px; font-weight: 800; color: #0056B3; }

.b2b-section { background-color: #000; color: #fff; padding: 60px 20px; }
.b2b-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 40px; text-align: center; }
@media (min-width: 768px) { .b2b-grid { grid-template-columns: repeat(3, 1fr); } }
.b2b-item h4 { font-size: 18px; font-weight: 900; font-style: italic; margin-bottom: 10px; }


.sport-subnav { width: 100%; background-color: #fff; border-bottom: 1px solid #eaeaea; overflow-x: auto; white-space: nowrap; }
.sport-subnav-list { display: flex; justify-content: center; list-style: none; padding: 15px 20px; gap: 30px; max-width: 1400px; margin: 0 auto; }
@media (max-width: 768px) { .sport-subnav-list { justify-content: flex-start; gap: 20px; } }
.sport-subnav-list li a { text-decoration: none; color: #444; font-size: 12px; font-weight: 800; text-transform: uppercase; transition: color 0.3s; }
.sport-subnav-list li a:hover, .sport-subnav-list li a.active { color: #0056B3; }

.equipment-hub-main { max-width: 1400px; margin: 0 auto; padding: 40px 20px 80px 20px; }
.equipment-header { margin-bottom: 40px; text-align: left; }
.equipment-title { font-size: 28px; font-weight: 400; font-style: italic; color: #000; }
@media (min-width: 768px) { .equipment-title { font-size: 38px; } }
.equipment-title span { font-weight: 900; }

.equipment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
@media (min-width: 640px) { .equipment-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .equipment-grid { grid-template-columns: repeat(5, 1fr); gap: 20px; } }

.eq-card { display: flex; flex-direction: column; text-decoration: none; color: #000; transition: transform 0.3s ease; }
.eq-card:hover { transform: translateY(-5px); }
.eq-img-box { background-color: #f8f9fa; border: 1px solid #eaeaea; padding: 20px; aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; }
.eq-img-box img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.eq-name { font-size: 13px; font-weight: 800; text-align: center; text-transform: uppercase; font-style: italic; letter-spacing: 1px; }
@media (min-width: 768px) { .eq-name { font-size: 14px; } }

.category-main { max-width: 1400px; margin: 0 auto; padding: 30px 20px; }
@media (min-width: 768px) { .category-main { padding: 50px 20px; } }
.breadcrumbs { font-size: 11px; font-weight: 600; color: #666; margin-bottom: 20px; text-transform: uppercase; }
.breadcrumbs a { color: #0056B3; text-decoration: none; }
.category-header { border-bottom: 2px solid #eaeaea; padding-bottom: 20px; margin-bottom: 30px; }
.category-title { font-size: 26px; font-weight: 900; font-style: italic; color: #000; margin-bottom: 5px; text-transform: uppercase; }
@media (min-width: 768px) { .category-title { font-size: 36px; } }
.category-count { font-size: 13px; color: #666; font-weight: 600; }
.category-layout { display: flex; flex-direction: column; gap: 30px; }
@media (min-width: 992px) { .category-layout { flex-direction: row; gap: 50px; } }
.sidebar-filters { width: 100%; }
@media (min-width: 992px) { .sidebar-filters { width: 250px; flex-shrink: 0; } }
.filter-group { margin-bottom: 30px; }
.filter-group h4 { font-size: 15px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; border-bottom: 2px solid #f1f1f1; padding-bottom: 10px; }
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 12px; }
.filter-list a { text-decoration: none; color: #555; font-size: 13px; font-weight: 600; transition: color 0.2s; }
.filter-list a:hover, .filter-list a.active { color: #0056B3; font-weight: 800; }
.color-options { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch { width: 25px; height: 25px; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 4px rgba(0,0,0,0.1); transition: transform 0.2s; border: 2px solid transparent; }
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border: 2px solid #000; transform: scale(1.1); }
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-swatch { border: 1px solid #ccc; padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; background: #fff; text-transform: uppercase; }
.size-swatch:hover, .size-swatch.active { background-color: #000; color: #fff; border-color: #000; }

.products-container { flex-grow: 1; }

.products-grid-4 { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
}
@media (min-width: 768px) { 
    .products-grid-4 { 
        grid-template-columns: repeat(4, 1fr); 
        gap: 25px; 
    } 
}

.product-card { text-decoration: none; display: flex; flex-direction: column; background: #fff; border: 1px solid #eaeaea; border-radius: 6px; overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); transform: translateY(-5px); }
.product-img { height: 180px; background-size: cover; background-position: center; background-color: #f9f9f9; position: relative; }
@media (min-width: 768px) { .product-img { height: 260px; } }
.product-info { padding: 15px; text-align: center; display: flex; flex-direction: column; flex-grow: 1; }
.product-name { font-size: 13px; font-weight: 800; color: #000; margin-bottom: 5px; text-transform: uppercase; }
@media (min-width: 768px) { .product-name { font-size: 14px; } }
.product-cat { font-size: 11px; color: #666; font-weight: 600; margin-bottom: 15px; flex-grow: 1; text-transform: uppercase; }
.btn-product { display: inline-block; background-color: #f1f1f1; color: #000; font-size: 11px; font-weight: 800; padding: 10px; transition: background-color 0.3s; width: 100%; text-decoration: none;}
.product-card:hover .btn-product { background-color: #0056B3; color: #fff; }

/* PRODUCT DETAILS */
.product-page-main { max-width: 1400px; margin: 0 auto; padding: 30px 20px; }
@media (min-width: 768px) { .product-page-main { padding: 50px 20px; } }

.product-details-container { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 992px) { .product-details-container { flex-direction: row; gap: 60px; } }

.product-gallery { width: 100%; max-width: 500px; margin: 0 auto; }
@media (min-width: 992px) { .product-gallery { width: 40%; } }

.main-image { 
    width: 100%; 
    aspect-ratio: 4 / 5; 
    background-size: contain; 
    background-position: center; 
    background-repeat: no-repeat;
    background-color: #f9f9f9; 
    border-radius: 8px; 
    margin-bottom: 15px; 
    border: 1px solid #eaeaea; 
}

.thumbnails { display: flex; gap: 15px; }
.thumb { 
    width: 70px; 
    height: 70px; 
    background-size: contain; 
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f9f9f9; 
    border-radius: 6px; 
    cursor: pointer; 
    border: 2px solid transparent; 
    transition: border-color 0.2s; 
}
.thumb:hover, .thumb.active { border-color: #0056B3; }

.product-info-block { width: 100%; display: flex; flex-direction: column; }
@media (min-width: 992px) { .product-info-block { width: 60%; padding-top: 20px; } }

.product-category-label { font-size: 12px; color: #0056B3; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; letter-spacing: 1px; }
.product-title { font-size: 32px; font-weight: 900; font-style: italic; color: #000; margin-bottom: 10px; line-height: 1.1; text-transform: uppercase; }
@media (min-width: 768px) { .product-title { font-size: 42px; } }
.product-sku { font-size: 12px; color: #666; font-weight: 600; margin-bottom: 25px; }
.product-sku span { font-weight: 800; color: #000; }
.product-description { font-size: 14px; line-height: 1.6; color: #444; margin-bottom: 30px; border-bottom: 1px solid #eaeaea; padding-bottom: 30px; }

.options-group { margin-bottom: 30px; }
.options-title { font-size: 14px; font-weight: 800; margin-bottom: 15px; text-transform: uppercase; }
.options-title span { color: #666; font-weight: 600; text-transform: none; }
.size-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.size-guide-link { font-size: 12px; color: #0056B3; font-weight: 700; text-decoration: underline; }

.color-options { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch { width: 25px; height: 25px; border-radius: 50%; cursor: pointer; box-shadow: 0 2px 4px rgba(0,0,0,0.1); transition: transform 0.2s; border: 2px solid transparent; }
.color-swatch:hover { transform: scale(1.1); }
.color-swatch.active { border: 2px solid #000; transform: scale(1.1); }

.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-swatch { border: 1px solid #ccc; padding: 6px 12px; font-size: 12px; font-weight: 700; cursor: pointer; transition: all 0.2s; background: #fff; text-transform: uppercase; }
.size-swatch:hover, .size-swatch.active { background-color: #000; color: #fff; border-color: #000; }

.action-group { display: flex; flex-direction: column; gap: 15px; margin-top: 10px; margin-bottom: 15px; }
@media (min-width: 640px) { .action-group { flex-direction: row; } }

.quantity-selector { display: flex; align-items: center; border: 2px solid #eaeaea; border-radius: 4px; height: 50px; width: 140px; }
.qty-btn { width: 40px; height: 100%; background: transparent; border: none; font-size: 20px; cursor: pointer; font-weight: 600; color: #000; transition: background-color 0.2s; }
.qty-btn:hover { background-color: #f1f1f1; }
.qty-input { width: 60px; height: 100%; border: none; text-align: center; font-size: 16px; font-weight: 800; outline: none; }

.add-to-quote-btn { flex-grow: 1; background-color: #000; color: #fff; border: none; height: 50px; border-radius: 4px; font-size: 14px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background-color 0.3s; width: 100%; }
.add-to-quote-btn:hover { background-color: #0056B3; }
.b2b-notice { font-size: 13px; color: #008000; font-weight: 700; font-style: italic; }

/* ΔΙΟΡΘΩΣΗ ΕΙΚΟΝΩΝ ΣΤΙΣ ΚΑΡΤΕΣ ΠΡΟΪΟΝΤΩΝ */
.product-card .product-img {
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: #f4f5f7;
}

/* VARIATIONS - ΣΕΛΙΔΑ ΠΑΡΑΛΛΑΓΩΝ ΜΟΝΤΕΛΟΥ */
.variations-main { max-width: 1400px; margin: 0 auto; padding: 40px 20px; }
.back-link { font-size: 11px; font-weight: 800; color: #000; text-decoration: none; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.back-link:hover { color: #0056B3; }
.variations-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 2px solid #000; padding-bottom: 15px; margin-bottom: 30px; flex-wrap: wrap; gap: 15px; }
.variations-title { font-size: 48px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -2px; line-height: 1; }
@media (min-width: 768px) { .variations-title { font-size: 72px; } }
.variations-count { font-size: 14px; font-weight: 800; font-style: italic; color: #0056B3; text-transform: uppercase; }
.variations-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 640px) { .variations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .variations-grid { grid-template-columns: repeat(5, 1fr); gap: 30px; } }
.var-card { display: flex; flex-direction: column; text-decoration: none; color: #000; transition: transform 0.3s ease; }
.var-card:hover { transform: translateY(-5px); }
.var-img-box { background-color: #f4f5f7; padding: 20px; margin-bottom: 15px; aspect-ratio: 3 / 4; display: flex; align-items: center; justify-content: center; }
.var-img-box img { max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.var-info { display: flex; flex-direction: column; flex-grow: 1; text-align: center; }
.var-title { font-size: 11px; font-weight: 800; font-style: italic; text-transform: uppercase; margin-bottom: 10px; line-height: 1.4; min-height: 30px;}
.var-badge { background-color: #00a651; color: #fff; font-size: 9px; font-weight: 800; text-align: center; padding: 6px; margin-bottom: 10px; text-transform: uppercase; width: 80%; margin-left: auto; margin-right: auto; }
.retail-price-label { font-size: 10px; font-weight: 700; color: #666; text-transform: uppercase; margin-bottom: 2px; display: block; text-align: center; }
.var-price-center { font-size: 24px; font-weight: 900; margin-bottom: 15px; display: block; text-align: center; }
.var-b2b-note { 
    font-size: 11px; 
    color: #cc0000; 
    font-weight: 900; 
    background-color: #f9f9f9; 
    padding: 12px 8px; 
    text-align: center; 
    text-transform: uppercase; 
    margin-top: auto; 
    border: 1px solid #eaeaea; 
}

/* QUOTE */
.quote-main { max-width: 1400px; margin: 0 auto; padding: 40px 20px; }
.quote-page-header { margin-bottom: 40px; border-bottom: 2px solid #000; padding-bottom: 20px; text-align: center; }
@media (min-width: 768px) { .quote-page-header { text-align: left; } }
.quote-main-title { font-size: 42px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 5px; }
@media (min-width: 768px) { .quote-main-title { font-size: 64px; } }
.quote-page-subtitle { font-size: 13px; color: #666; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.quote-layout { display: flex; flex-direction: column; gap: 50px; }
@media (min-width: 1024px) { .quote-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; } }
.quote-info-col h2 { font-size: 24px; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 15px; }
.info-text-block p { font-size: 15px; line-height: 1.6; color: #444; font-weight: 500; margin-bottom: 30px; }
.advantages-stack { display: flex; flex-direction: column; gap: 15px; }
.adv-card { display: flex; align-items: start; gap: 15px; padding: 20px; background-color: #f9f9f9; border-left: 4px solid #000; }
.adv-icon { font-size: 28px; }
.adv-content h3 { font-size: 13px; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 4px; }
.adv-content p { font-size: 12px; color: #666; font-weight: 700; }
.quote-form-col { background-color: #F8F8F8; padding: 25px; border: 1px solid #eaeaea; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
@media (min-width: 768px) { .quote-form-col { padding: 45px; } }
.quote-form-col h2 { font-size: 22px; font-weight: 900; font-style: italic; text-transform: uppercase; margin-bottom: 25px; }
.b2b-form { display: flex; flex-direction: column; gap: 20px; }
.form-grid-inputs { display: grid; grid-template-columns: 1fr; gap: 15px; }
@media (min-width: 640px) { .form-grid-inputs { grid-template-columns: 1fr 1fr; } }
.form-input { width: 100%; padding: 15px; border: 1px solid #ccc; background-color: #fff; font-size: 14px; font-weight: 600; outline: none; transition: border-color 0.2s; }
.form-input:focus, .form-textarea:focus { border-color: #0056B3; }
.selector-heading { font-size: 13px; font-weight: 900; font-style: italic; text-transform: uppercase; color: #333; margin-bottom: 12px; }
.checkbox-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 480px) { .checkbox-grid { grid-template-columns: 1fr 1fr; } }
.checkbox-box { display: flex; align-items: center; gap: 10px; background-color: #fff; padding: 12px; border: 1px solid #ccc; cursor: pointer; transition: all 0.2s; }
.checkbox-box span { font-size: 12px; font-weight: 800; text-transform: uppercase; }
.form-checkbox { width: 16px; height: 16px; accent-color: #0056B3; }
.checkbox-box:hover { border-color: #0056B3; }
.form-textarea { width: 100%; padding: 15px; border: 1px solid #ccc; background-color: #fff; font-size: 14px; font-weight: 600; outline: none; resize: vertical; transition: border-color 0.2s; }
.btn-submit-quote { width: 100%; background-color: #000; color: #fff; border: none; padding: 18px; font-size: 14px; font-weight: 900; font-style: italic; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background-color 0.3s; }
.btn-submit-quote:hover { background-color: #0056B3; }

/* =========================================
   MODERN FOOTER - FIXED LAYOUT
   ========================================= */
.footer {
    background-color: #002244;
    color: #ffffff;
    padding: 60px 0 0 0;
    font-family: 'Montserrat', sans-serif;
    margin-top: 50px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
}

.footer-col {
    text-align: left !important; 
}

.footer-logo-box {
    margin-bottom: 20px;
    text-align: left !important;
}
.footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1;
    letter-spacing: 2px;
}
.footer-sub-logo {
    font-size: 13px;
    font-weight: 700;
    color: #00aaff; 
    letter-spacing: 1px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 25px;
    text-align: left !important;
}

.social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}
.social-links a:hover {
    background-color: #00aaff;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 1px;
    text-align: left !important;
}
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #00aaff;
    border-radius: 2px;
}

.contact-items p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left !important;
}
.contact-items span {
    font-size: 16px;
    flex-shrink: 0;
}

.contact-items a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-items a:hover {
    color: #00aaff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left !important;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links a:hover {
    color: #00aaff;
    transform: translateX(5px);
}

.footer-bottom {
    background-color: #00152b;
    text-align: center !important;
    padding: 20px 20px;
    font-size: 13px;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
    margin: 0;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
}
/* =========================================
   HERO SECTION ΜΕ ΘΟΛΟ BACKGROUND ΣΤΑ ΚΙΝΗΤΑ
   ========================================= */
@media (max-width: 992px) {
    .hero-modern {
        position: relative;
        background-color: transparent !important; /* Κάνουμε το κουτί διάφανο για να φανεί η εικόνα! */
        z-index: 1;
        overflow: hidden; 
    }

    /* 1. Η θολή εικόνα από πίσω */
    .hero-modern::before {
        content: "";
        position: absolute;
        top: -20px; left: -20px; right: -20px; bottom: -20px; 
        background-image: url('https://photos.teams360.gr/photos/joma-hero1.webp'); 
        background-size: cover;
        background-position: center;
        filter: blur(12px); /* Αρκετά θολό για να μην κουράζει */
        z-index: -2; 
    }

    /* 2. Ένα ημιδιάφανο λευκό/γκρι φίλτρο από πάνω για να διαβάζονται ΤΕΛΕΙΑ τα γράμματα */
    .hero-modern::after {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background-color: rgba(248, 248, 248, 0.80); /* 80% συμπαγές γκρι/λευκό */
        z-index: -1;
    }
}